mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Add unit test
This commit is contained in:
parent
a9a0f2eeb4
commit
25bdb39694
@ -31,6 +31,7 @@ namespace OrmTest
|
|||||||
}
|
}
|
||||||
public static void Init()
|
public static void Init()
|
||||||
{
|
{
|
||||||
|
Bulk();
|
||||||
CodeFirst();
|
CodeFirst();
|
||||||
Updateable();
|
Updateable();
|
||||||
Json();
|
Json();
|
||||||
|
117
Src/Asp.NetCore2/KdbndpTest/UnitTest/UBulkCopy.cs
Normal file
117
Src/Asp.NetCore2/KdbndpTest/UnitTest/UBulkCopy.cs
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace OrmTest
|
||||||
|
{
|
||||||
|
public partial class NewUnitTest
|
||||||
|
{
|
||||||
|
public static void Bulk()
|
||||||
|
{
|
||||||
|
Db.CodeFirst.InitTables<UnitIdentity1>();
|
||||||
|
Db.DbMaintenance.TruncateTable<UnitIdentity1>();
|
||||||
|
var data1 = new UnitIdentity1()
|
||||||
|
{
|
||||||
|
Name = "a",
|
||||||
|
Id=1
|
||||||
|
};
|
||||||
|
var data2 = new UnitIdentity1()
|
||||||
|
{
|
||||||
|
Name = "b",
|
||||||
|
Id = 2
|
||||||
|
};
|
||||||
|
var data3 = new UnitIdentity1()
|
||||||
|
{
|
||||||
|
Name = "c",
|
||||||
|
Id = 3
|
||||||
|
};
|
||||||
|
Db.Fastest<UnitIdentity1>().BulkCopy(new List<UnitIdentity1>() {
|
||||||
|
data1
|
||||||
|
});
|
||||||
|
var list=Db.Queryable<UnitIdentity1>().ToList();
|
||||||
|
if (list.Count != 1 || data1.Name != list.First().Name)
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
|
||||||
|
Db.Fastest<UnitIdentity1>().BulkCopy(new List<UnitIdentity1>() {
|
||||||
|
data2,
|
||||||
|
data3
|
||||||
|
});
|
||||||
|
list = Db.Queryable<UnitIdentity1>().ToList();
|
||||||
|
if (list.Count != 3 || !list.Any(it=>it.Name=="c"))
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
Db.Fastest<UnitIdentity1>().BulkUpdate(new List<UnitIdentity1>() {
|
||||||
|
new UnitIdentity1(){
|
||||||
|
Id=1,
|
||||||
|
Name="222"
|
||||||
|
},
|
||||||
|
new UnitIdentity1(){
|
||||||
|
Id=2,
|
||||||
|
Name="111"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
list = Db.Queryable<UnitIdentity1>().ToList();
|
||||||
|
if (list.First(it=>it.Id==1).Name!="222")
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
if (list.First(it => it.Id == 2).Name != "111")
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
if (list.First(it => it.Id == 3).Name != "c")
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
Db.CodeFirst.InitTables<UnitIdentity111>();
|
||||||
|
Db.DbMaintenance.TruncateTable<UnitIdentity111>();
|
||||||
|
var count = Db.Fastest<UnitIdentity111111111>().AS("UnitIdentity111").BulkCopy(new List<UnitIdentity111111111> {
|
||||||
|
new UnitIdentity111111111(){ Id=1, Name="jack" }
|
||||||
|
});
|
||||||
|
if (count == 0)
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
count = Db.Fastest<UnitIdentity111111111>().AS("UnitIdentity111").BulkUpdate(new List<UnitIdentity111111111> {
|
||||||
|
new UnitIdentity111111111(){ Id=1, Name="jack" }
|
||||||
|
});
|
||||||
|
if (count == 0)
|
||||||
|
{
|
||||||
|
throw new Exception("unit Bulk");
|
||||||
|
}
|
||||||
|
Db.CodeFirst.InitTables<UnitTable001>();
|
||||||
|
Db.Fastest<UnitTable001>().BulkUpdate(new List<UnitTable001> {
|
||||||
|
new UnitTable001(){ Id=1, table="a" }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class UnitTable001
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string table { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class UnitIdentity111
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
public class UnitIdentity111111111
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
public class UnitIdentity1
|
||||||
|
{
|
||||||
|
[SqlSugar.SugarColumn(IsPrimaryKey =true)]
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user