mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Add PgSql unit test
This commit is contained in:
parent
f3bb1c17f3
commit
f98b24f3c0
@ -109,6 +109,7 @@
|
|||||||
<Compile Include="UnitTest\UCustom014.cs" />
|
<Compile Include="UnitTest\UCustom014.cs" />
|
||||||
<Compile Include="UnitTest\UCustom015.cs" />
|
<Compile Include="UnitTest\UCustom015.cs" />
|
||||||
<Compile Include="UnitTest\UCustom016.cs" />
|
<Compile Include="UnitTest\UCustom016.cs" />
|
||||||
|
<Compile Include="UnitTest\UnitTestReturnPkList.cs" />
|
||||||
<Compile Include="UnitTest\USave.cs" />
|
<Compile Include="UnitTest\USave.cs" />
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
@ -31,6 +31,7 @@ namespace OrmTest
|
|||||||
}
|
}
|
||||||
public static void Init()
|
public static void Init()
|
||||||
{
|
{
|
||||||
|
UnitTestReturnPkList.Init();
|
||||||
UCustom07.Init();
|
UCustom07.Init();
|
||||||
UCustom016.Init();
|
UCustom016.Init();
|
||||||
UCustom08.Init();
|
UCustom08.Init();
|
||||||
|
75
Src/Asp.Net/PgSqlTest/UnitTest/UnitTestReturnPkList.cs
Normal file
75
Src/Asp.Net/PgSqlTest/UnitTest/UnitTestReturnPkList.cs
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace OrmTest
|
||||||
|
{
|
||||||
|
public class UnitTestReturnPkList
|
||||||
|
{
|
||||||
|
public static void Init()
|
||||||
|
{
|
||||||
|
TestIdentity();
|
||||||
|
TestLong();
|
||||||
|
TestGuid();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void TestGuid()
|
||||||
|
{
|
||||||
|
var db = NewUnitTest.Db;
|
||||||
|
db.CodeFirst.InitTables<UnitGuid123>();
|
||||||
|
var ids = db.Insertable(new UnitGuid123() { Name = "a" }).ExecuteReturnPkList<Guid>();
|
||||||
|
if (ids.Count() != 1) { throw new Exception("unit error"); }
|
||||||
|
if (db.Queryable<UnitGuid123>().In(ids).Count() !=1) { throw new Exception("unit error"); }
|
||||||
|
var ids2 = db.Insertable(new List<UnitGuid123>() { new UnitGuid123() { Name = "c" }, new UnitGuid123() { Name = "c" } }).ExecuteReturnPkList<Guid>();
|
||||||
|
if (ids2.Count() != 2) { throw new Exception("unit error"); }
|
||||||
|
if (db.Queryable<UnitGuid123>().In(ids2).Count() != 2) { throw new Exception("unit error"); }
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void TestLong()
|
||||||
|
{
|
||||||
|
var db = NewUnitTest.Db;
|
||||||
|
db.CodeFirst.InitTables<UnitLong1231>();
|
||||||
|
var ids = db.Insertable(new UnitLong1231() { Name = "a" }).ExecuteReturnPkList<long>();
|
||||||
|
if (ids.Count(z => z > 0) != 1) { throw new Exception("unit error"); }
|
||||||
|
var ids2 = db.Insertable(new List<UnitLong1231>() { new UnitLong1231() { Name = "c" }, new UnitLong1231() { Name = "c" } }).ExecuteReturnPkList<long>();
|
||||||
|
if (ids2.Count(z => z > 0) != 2) { throw new Exception("unit error"); }
|
||||||
|
if(db.Queryable<UnitLong1231>().In(ids2).Count()!=2) { throw new Exception("unit error"); }
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void TestIdentity()
|
||||||
|
{
|
||||||
|
var db = NewUnitTest.Db;
|
||||||
|
db.CodeFirst.InitTables<UnitIdentity01>();
|
||||||
|
var ids = db.Insertable(new UnitIdentity01() { Name = "a" }).ExecuteReturnPkList<int>();
|
||||||
|
if (ids.Count(z => z > 0) != 1) { throw new Exception("unit error"); }
|
||||||
|
var ids2 = db.Insertable(new List<UnitIdentity01>() { new UnitIdentity01() { Name = "c" }, new UnitIdentity01() { Name = "c" } }).ExecuteReturnPkList<int>();
|
||||||
|
if (ids2.Count(z => z > 0) != 2) { throw new Exception("unit error"); }
|
||||||
|
if (db.Queryable<UnitIdentity01>().In(ids2).Count() != 2) { throw new Exception("unit error"); }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class UnitGuid123
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public Guid id { get; set; }
|
||||||
|
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
public class UnitLong1231
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public long id { get; set; }
|
||||||
|
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class UnitIdentity01
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsIdentity =true,IsPrimaryKey =true)]
|
||||||
|
public int id { get; set; }
|
||||||
|
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user