GenericRepositoryTest.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.Extensions.Configuration;
  6. using SqlKata;
  7. using Tede.Data.Tests.Mocks;
  8. using Tede.Data.Tests.Utils;
  9. using Tede.Data.Utils;
  10. using Xunit;
  11. using Xunit.Abstractions;
  12. namespace Tede.Data.Tests.Core
  13. {
  14. public class GenericRepositoryTest : IClassFixture<UnitTestsFixture>, IDisposable
  15. {
  16. private readonly ITestOutputHelper _output;
  17. private readonly Repository<TestTableInfo> _repository;
  18. public GenericRepositoryTest(UnitTestsFixture fixture, ITestOutputHelper output)
  19. {
  20. _output = output;
  21. var db = new Database(DatabaseType.SQLite, fixture.Config.GetConnectionString("ConnectionString"));
  22. _repository = new Repository<TestTableInfo>(db);
  23. if (!TestEnv.IsTestMachine) return;
  24. var isExists = db.IsTableExistsAsync(_repository.TableName).GetAwaiter().GetResult();
  25. if (isExists)
  26. {
  27. db.DropTableAsync(_repository.TableName).GetAwaiter().GetResult();
  28. }
  29. db.CreateTableAsync(_repository.TableName, _repository.TableColumns).GetAwaiter().GetResult();
  30. }
  31. public void Dispose()
  32. {
  33. if (!TestEnv.IsTestMachine) return;
  34. //_fixture.Db.DropTable(_repository.TableName);
  35. }
  36. [SkippableFact]
  37. public void Start()
  38. {
  39. Skip.IfNot(TestEnv.IsTestMachine);
  40. var tableName = _repository.TableName;
  41. var tableColumns = _repository.TableColumns;
  42. Assert.Equal("TestTable", tableName);
  43. Assert.NotNull(tableColumns);
  44. Assert.Equal(12, tableColumns.Count);
  45. var varChar100Column = tableColumns.FirstOrDefault(x => x.AttributeName == nameof(TestTableInfo.TypeVarChar100));
  46. Assert.NotNull(varChar100Column);
  47. Assert.Equal(DataType.VarChar, varChar100Column.DataType);
  48. Assert.Equal(100, varChar100Column.DataLength);
  49. var varCharDefaultColumn = tableColumns.FirstOrDefault(x => x.AttributeName == nameof(TestTableInfo.TypeVarCharDefault));
  50. Assert.NotNull(varCharDefaultColumn);
  51. Assert.Equal(DataType.VarChar, varCharDefaultColumn.DataType);
  52. Assert.Equal(DbUtils.VarCharDefaultLength, varCharDefaultColumn.DataLength);
  53. var boolColumn = tableColumns.FirstOrDefault(x => x.AttributeName == nameof(TestTableInfo.TypeBool));
  54. Assert.NotNull(boolColumn);
  55. Assert.Equal(DataType.Boolean, boolColumn.DataType);
  56. var contentColumn = tableColumns.FirstOrDefault(x => x.AttributeName == nameof(TestTableInfo.Content));
  57. Assert.NotNull(contentColumn);
  58. Assert.Equal(DataType.Text, contentColumn.DataType);
  59. var isLockedOutColumn = tableColumns.FirstOrDefault(x => x.AttributeName == "IsLockedOut");
  60. Assert.NotNull(isLockedOutColumn);
  61. var lockedColumn = tableColumns.FirstOrDefault(x => x.AttributeName == nameof(TestTableInfo.Locked));
  62. Assert.Null(lockedColumn);
  63. }
  64. [SkippableFact]
  65. public async Task InsertTest()
  66. {
  67. Skip.IfNot(TestEnv.IsTestMachine);
  68. var id = await _repository.InsertAsync(null);
  69. Assert.Equal(0, id);
  70. id = await _repository.InsertAsync(null);
  71. Assert.Equal(0, id);
  72. var dataInfo = new TestTableInfo();
  73. await _repository.InsertAsync(dataInfo);
  74. Assert.Equal(1, dataInfo.Id);
  75. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  76. Assert.True(dataInfo.LastModifiedDate.HasValue);
  77. Assert.Null(dataInfo.TypeVarChar100);
  78. Assert.Null(dataInfo.TypeVarCharDefault);
  79. Assert.Null(dataInfo.Content);
  80. Assert.Equal(0, dataInfo.Num);
  81. Assert.Equal(0, dataInfo.Currency);
  82. Assert.False(dataInfo.Date.HasValue);
  83. Assert.True(dataInfo.Date == null);
  84. Assert.False(dataInfo.Locked);
  85. dataInfo = new TestTableInfo();
  86. await _repository.InsertAsync(dataInfo);
  87. Assert.Equal(2, dataInfo.Id);
  88. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  89. dataInfo = new TestTableInfo
  90. {
  91. Guid = "wrong guid",
  92. TypeVarChar100 = "string",
  93. Num = -100,
  94. Date = DateTime.Now,
  95. Locked = true
  96. };
  97. await _repository.InsertAsync(dataInfo);
  98. Assert.Equal(3, dataInfo.Id);
  99. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  100. Assert.True(dataInfo.LastModifiedDate.HasValue);
  101. Assert.Equal("string", dataInfo.TypeVarChar100);
  102. Assert.Null(dataInfo.TypeVarCharDefault);
  103. Assert.Null(dataInfo.Content);
  104. Assert.Equal(-100, dataInfo.Num);
  105. Assert.Equal(0, dataInfo.Currency);
  106. Assert.True(dataInfo.Date.HasValue);
  107. Assert.True(dataInfo.Locked);
  108. _output.WriteLine(dataInfo.Guid);
  109. _output.WriteLine(dataInfo.LastModifiedDate.ToString());
  110. dataInfo = await _repository.GetAsync(1);
  111. Assert.NotNull(dataInfo);
  112. Assert.Equal(1, dataInfo.Id);
  113. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  114. Assert.True(dataInfo.LastModifiedDate.HasValue);
  115. Assert.Null(dataInfo.TypeVarChar100);
  116. Assert.Null(dataInfo.TypeVarCharDefault);
  117. Assert.Null(dataInfo.Content);
  118. Assert.Equal(0, dataInfo.Num);
  119. Assert.Equal(0, dataInfo.Currency);
  120. Assert.False(dataInfo.Date.HasValue);
  121. Assert.True(dataInfo.Date == null);
  122. _output.WriteLine(dataInfo.Guid);
  123. _output.WriteLine(dataInfo.LastModifiedDate.ToString());
  124. dataInfo = await _repository.GetAsync(3);
  125. Assert.NotNull(dataInfo);
  126. Assert.Equal(3, dataInfo.Id);
  127. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  128. Assert.True(dataInfo.LastModifiedDate.HasValue);
  129. Assert.Equal("string", dataInfo.TypeVarChar100);
  130. Assert.Null(dataInfo.TypeVarCharDefault);
  131. Assert.Null(dataInfo.Content);
  132. Assert.Equal(-100, dataInfo.Num);
  133. Assert.Equal(0, dataInfo.Currency);
  134. Assert.True(dataInfo.Date.HasValue);
  135. dataInfo = await _repository.GetAsync(new Query().Where(Attr.TypeVarChar100, "string"));
  136. Assert.NotNull(dataInfo);
  137. Assert.Equal(3, dataInfo.Id);
  138. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  139. Assert.True(dataInfo.LastModifiedDate.HasValue);
  140. Assert.Equal("string", dataInfo.TypeVarChar100);
  141. Assert.Null(dataInfo.TypeVarCharDefault);
  142. Assert.Null(dataInfo.Content);
  143. Assert.Equal(-100, dataInfo.Num);
  144. Assert.Equal(0, dataInfo.Currency);
  145. Assert.True(dataInfo.Date.HasValue);
  146. dataInfo = await _repository.GetAsync(dataInfo.Guid);
  147. Assert.NotNull(dataInfo);
  148. Assert.Equal(3, dataInfo.Id);
  149. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  150. Assert.True(dataInfo.LastModifiedDate.HasValue);
  151. Assert.Equal("string", dataInfo.TypeVarChar100);
  152. Assert.Null(dataInfo.TypeVarCharDefault);
  153. Assert.Null(dataInfo.Content);
  154. Assert.Equal(-100, dataInfo.Num);
  155. Assert.Equal(0, dataInfo.Currency);
  156. Assert.True(dataInfo.Date.HasValue);
  157. dataInfo = await _repository.GetAsync(dataInfo.Guid);
  158. Assert.NotNull(dataInfo);
  159. Assert.Equal(3, dataInfo.Id);
  160. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  161. Assert.True(dataInfo.LastModifiedDate.HasValue);
  162. Assert.Equal("string", dataInfo.TypeVarChar100);
  163. Assert.Null(dataInfo.TypeVarCharDefault);
  164. Assert.Null(dataInfo.Content);
  165. Assert.Equal(-100, dataInfo.Num);
  166. Assert.Equal(0, dataInfo.Currency);
  167. Assert.True(dataInfo.Date.HasValue);
  168. dataInfo = await _repository.GetAsync(new Query().Where(Attr.TypeVarChar100, "not exists"));
  169. Assert.Null(dataInfo);
  170. var exists = await _repository.ExistsAsync(new Query()
  171. .Where(nameof(TestTableInfo.TypeVarChar100), "string"));
  172. Assert.True(exists);
  173. exists = await _repository.ExistsAsync(new Query().Where(nameof(TestTableInfo.TypeVarChar100), "not exists"));
  174. Assert.False(exists);
  175. exists = await _repository.ExistsAsync(new Query());
  176. Assert.True(exists);
  177. await _repository.DeleteAsync();
  178. }
  179. [SkippableFact]
  180. public async Task TestCount()
  181. {
  182. Skip.IfNot(TestEnv.IsTestMachine);
  183. await _repository.InsertAsync(new TestTableInfo
  184. {
  185. TypeVarChar100 = "string",
  186. Num = -100,
  187. Date = DateTime.Now,
  188. Locked = true
  189. });
  190. await _repository.InsertAsync(new TestTableInfo
  191. {
  192. TypeVarChar100 = "test",
  193. Num = -100,
  194. Date = DateTime.Now,
  195. Locked = true
  196. });
  197. var count = await _repository.CountAsync();
  198. Assert.Equal(2, count);
  199. count = await _repository.CountAsync(new Query().Where("TypeVarChar100", "test"));
  200. Assert.Equal(1, count);
  201. await _repository.DeleteAsync();
  202. }
  203. [SkippableFact]
  204. public async Task TestGetValue()
  205. {
  206. Skip.IfNot(TestEnv.IsTestMachine);
  207. await _repository.InsertAsync(new TestTableInfo
  208. {
  209. Guid = "wrong guid",
  210. TypeVarChar100 = "string"
  211. });
  212. var guid = await _repository.GetAsync<string>(new Query()
  213. .Select(nameof(Entity.Guid)).Where("TypeVarChar100", "string"));
  214. Assert.True(Utilities.IsGuid(guid));
  215. var date = await _repository.GetAsync<DateTime?>(new Query()
  216. .Select(nameof(TestTableInfo.Date)).Where("Guid", guid));
  217. Assert.False(date.HasValue);
  218. var lastModifiedDate = await _repository.GetAsync<DateTime?>(new Query()
  219. .Select(nameof(TestTableInfo.LastModifiedDate))
  220. .Where("Guid", guid));
  221. Assert.True(lastModifiedDate.HasValue);
  222. _output.WriteLine(lastModifiedDate.Value.ToString(CultureInfo.InvariantCulture));
  223. await _repository.DeleteAsync();
  224. }
  225. [SkippableFact]
  226. public async Task TestGetValues()
  227. {
  228. Skip.IfNot(TestEnv.IsTestMachine);
  229. await _repository.InsertAsync(new TestTableInfo
  230. {
  231. TypeVarChar100 = "string"
  232. });
  233. var guidList = await _repository.GetAllAsync<string>(new Query()
  234. .Select(nameof(TestTableInfo.Guid))
  235. .Where("TypeVarChar100", "string"));
  236. Assert.NotNull(guidList);
  237. Assert.True(Utilities.IsGuid(guidList.First()));
  238. var dateList = await _repository.GetAllAsync<DateTime?>(new Query()
  239. .Select(nameof(TestTableInfo.Date))
  240. .Where("Guid", guidList.First()));
  241. Assert.False(dateList.First().HasValue);
  242. var lastModifiedDateList = await _repository.GetAllAsync<DateTime?>(new Query()
  243. .Select(nameof(TestTableInfo.LastModifiedDate)));
  244. lastModifiedDateList.ToList().ForEach(x => Assert.True(x.HasValue));
  245. await _repository.DeleteAsync();
  246. }
  247. [SkippableFact]
  248. public async Task TestGetAll()
  249. {
  250. Skip.IfNot(TestEnv.IsTestMachine);
  251. await _repository.InsertAsync(new TestTableInfo
  252. {
  253. TypeVarChar100 = "str1"
  254. });
  255. await _repository.InsertAsync(new TestTableInfo
  256. {
  257. TypeVarChar100 = "str2"
  258. });
  259. var allList = await _repository.GetAllAsync();
  260. Assert.Equal(2, allList.ToList().Count);
  261. var list = await _repository.GetAllAsync(new Query()
  262. .Where("Guid", allList.First().Guid));
  263. Assert.Single(list);
  264. }
  265. [SkippableFact]
  266. public async Task TestUpdate()
  267. {
  268. Skip.IfNot(TestEnv.IsTestMachine);
  269. await _repository.InsertAsync(new TestTableInfo
  270. {
  271. TypeVarChar100 = "str1"
  272. });
  273. await _repository.InsertAsync(new TestTableInfo
  274. {
  275. TypeVarChar100 = "str2"
  276. });
  277. var dataInfo = await _repository.GetAsync(Q.Where("TypeVarChar100", "str2"));
  278. Assert.True(dataInfo.LastModifiedDate.HasValue);
  279. var lastModified = dataInfo.LastModifiedDate.Value.Ticks;
  280. dataInfo.Content = "new content";
  281. dataInfo.LastModifiedDate = DateTime.Now.AddDays(-1);
  282. var updated = await _repository.UpdateAsync(dataInfo);
  283. Assert.True(updated);
  284. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  285. Assert.True(dataInfo.LastModifiedDate.HasValue);
  286. Assert.NotEmpty(dataInfo.TypeVarChar100);
  287. Assert.Null(dataInfo.TypeVarCharDefault);
  288. Assert.Equal("new content", dataInfo.Content);
  289. Assert.Equal(0, dataInfo.Num);
  290. Assert.Equal(0, dataInfo.Currency);
  291. Assert.False(dataInfo.Date.HasValue);
  292. Assert.True(dataInfo.Date == null);
  293. var lastModified2 = dataInfo.LastModifiedDate.Value.Ticks;
  294. _output.WriteLine(lastModified.ToString());
  295. _output.WriteLine(lastModified2.ToString());
  296. Assert.True(lastModified2 > lastModified);
  297. updated = await _repository.UpdateAsync((TestTableInfo)null);
  298. Assert.False(updated);
  299. await _repository.DeleteAsync();
  300. }
  301. [SkippableFact]
  302. public async Task TestUpdateWithParameters()
  303. {
  304. Skip.IfNot(TestEnv.IsTestMachine);
  305. await _repository.InsertAsync(new TestTableInfo
  306. {
  307. TypeVarChar100 = "str1"
  308. });
  309. await _repository.InsertAsync(new TestTableInfo
  310. {
  311. TypeVarChar100 = "str2"
  312. });
  313. var lastModified = await _repository.GetAsync<DateTime?>(new Query()
  314. .Select(nameof(Entity.LastModifiedDate)).Where("Id", 1));
  315. Assert.True(lastModified.HasValue);
  316. var updated = await _repository.UpdateAsync(new Query()
  317. .Set("Content", "new content2")
  318. .Set("LastModifiedDate", DateTime.Now.AddDays(-1))
  319. .Where(nameof(Attr.Id), 1));
  320. Assert.True(updated == 1);
  321. var dataInfo = await _repository.GetAsync(1);
  322. Assert.True(dataInfo.LastModifiedDate.HasValue);
  323. var lastModified2 = dataInfo.LastModifiedDate.Value.Ticks;
  324. Assert.Equal(1, dataInfo.Id);
  325. Assert.True(Utilities.IsGuid(dataInfo.Guid));
  326. Assert.True(dataInfo.LastModifiedDate.HasValue);
  327. Assert.NotNull(dataInfo.TypeVarChar100);
  328. Assert.Null(dataInfo.TypeVarCharDefault);
  329. Assert.Equal("new content2", dataInfo.Content);
  330. Assert.Equal(0, dataInfo.Num);
  331. Assert.Equal(0, dataInfo.Currency);
  332. Assert.False(dataInfo.Date.HasValue);
  333. Assert.True(dataInfo.Date == null);
  334. Assert.True(lastModified2 > lastModified.Value.Ticks);
  335. updated = await _repository.UpdateAsync(new Query());
  336. Assert.True(updated == 2);
  337. await _repository.DeleteAsync();
  338. }
  339. [SkippableFact]
  340. public async Task TestUpdateAll()
  341. {
  342. Skip.IfNot(TestEnv.IsTestMachine);
  343. await _repository.InsertAsync(new TestTableInfo
  344. {
  345. TypeVarChar100 = "str1"
  346. });
  347. await _repository.InsertAsync(new TestTableInfo
  348. {
  349. TypeVarChar100 = "str2"
  350. });
  351. var lastModified = await _repository.GetAsync<DateTime?>(new Query()
  352. .Select(nameof(Entity.LastModifiedDate))
  353. .Where("TypeVarChar100", "str1"));
  354. Assert.True(lastModified.HasValue);
  355. var updatedCount = await _repository.UpdateAsync(new Query()
  356. .Set("Content", "new content2")
  357. .Set("LastModifiedDate", DateTime.Now.AddDays(-1))
  358. .Where("TypeVarChar100", "str1"));
  359. Assert.True(updatedCount == 1);
  360. updatedCount = await _repository.UpdateAsync(new Query()
  361. .Set("Content", "new content3")
  362. .Where("Content", "new content2"));
  363. Assert.True(updatedCount == 1);
  364. var dataInfo = await _repository.GetAsync(Q.Where("TypeVarChar100", "str1"));
  365. Assert.True(dataInfo.LastModifiedDate.HasValue);
  366. var lastModified2 = dataInfo.LastModifiedDate.Value.Ticks;
  367. Assert.True(lastModified2 > lastModified.Value.Ticks);
  368. await _repository.DeleteAsync();
  369. }
  370. [SkippableFact]
  371. public async Task TestIncrementAll()
  372. {
  373. Skip.IfNot(TestEnv.IsTestMachine);
  374. await _repository.InsertAsync(new TestTableInfo
  375. {
  376. TypeVarChar100 = "str1"
  377. });
  378. var dataInfo = await _repository.GetAsync(Q.Where("TypeVarChar100", "str1"));
  379. Assert.Equal(0, dataInfo.Num);
  380. var affected = await _repository.IncrementAsync(Attr.Num, Q.Where("TypeVarChar100", "str1"));
  381. Assert.True(affected == 1);
  382. dataInfo = await _repository.GetAsync(Q.Where("TypeVarChar100", "str1"));
  383. Assert.Equal(1, dataInfo.Num);
  384. affected = await _repository.DecrementAsync(Attr.Num, Q.Where(Attr.Id, 1));
  385. Assert.True(affected == 1);
  386. dataInfo = await _repository.GetAsync(Q.Where("TypeVarChar100", "str1"));
  387. Assert.Equal(0, dataInfo.Num);
  388. await _repository.DeleteAsync();
  389. }
  390. [SkippableFact]
  391. public async Task TestDelete()
  392. {
  393. Skip.IfNot(TestEnv.IsTestMachine);
  394. await _repository.InsertAsync(new TestTableInfo
  395. {
  396. TypeVarChar100 = "str"
  397. });
  398. var deleted = await _repository.DeleteAsync(Q.Where("TypeVarChar100", "str"));
  399. Assert.Equal(1, deleted);
  400. Assert.False(await _repository.DeleteAsync(1));
  401. await _repository.DeleteAsync();
  402. }
  403. }
  404. }