|
8 | 8 |
|
9 | 9 | namespace SqlcGenCsharpTests
|
10 | 10 | {
|
11 |
| - public class SqliteDapperTests : IOneTester, IManyTester, IExecTester, IExecRowsTester |
| 11 | + public class SqliteDapperTests : IOneTester, IManyTester, IExecTester, IExecRowsTester, IExecLastIdTester |
12 | 12 | {
|
13 | 13 | private QuerySql QuerySql { get; } = new QuerySql(
|
14 | 14 | Environment.GetEnvironmentVariable(EndToEndCommon.SqliteConnectionStringEnv));
|
@@ -107,11 +107,40 @@ public async Task TestExecRows()
|
107 | 107 | ClassicAssert.AreEqual(2, affectedRows);
|
108 | 108 | }
|
109 | 109 |
|
| 110 | + [Test] |
| 111 | + public async Task TestExecLastId() |
| 112 | + { |
| 113 | + var bojackCreateAuthorArgs = new QuerySql.CreateAuthorReturnIdArgs |
| 114 | + { |
| 115 | + Name = DataGenerator.BojackAuthor, |
| 116 | + Bio = DataGenerator.BojackTheme |
| 117 | + }; |
| 118 | + var insertedId = await QuerySql.CreateAuthorReturnId(bojackCreateAuthorArgs); |
| 119 | + |
| 120 | + var expected = new QuerySql.GetAuthorByIdRow |
| 121 | + { |
| 122 | + Id = insertedId, |
| 123 | + Name = DataGenerator.BojackAuthor, |
| 124 | + Bio = DataGenerator.BojackTheme |
| 125 | + }; |
| 126 | + var actual = await QuerySql.GetAuthorById(new QuerySql.GetAuthorByIdArgs |
| 127 | + { |
| 128 | + Id = insertedId |
| 129 | + }); |
| 130 | + ClassicAssert.IsNotNull(actual); |
| 131 | + Assert.That(Equals(expected, actual)); |
| 132 | + } |
| 133 | + |
110 | 134 | private static bool Equals(QuerySql.GetAuthorRow x, QuerySql.GetAuthorRow y)
|
111 | 135 | {
|
112 | 136 | return x.Name.Equals(y.Name) && x.Bio.Equals(y.Bio);
|
113 | 137 | }
|
114 | 138 |
|
| 139 | + private static bool Equals(QuerySql.GetAuthorByIdRow x, QuerySql.GetAuthorByIdRow y) |
| 140 | + { |
| 141 | + return x.Id.Equals(y.Id) && x.Name.Equals(y.Name) && x.Bio.Equals(y.Bio); |
| 142 | + } |
| 143 | + |
115 | 144 | private static bool Equals(QuerySql.ListAuthorsRow x, QuerySql.ListAuthorsRow y)
|
116 | 145 | {
|
117 | 146 | return x.Name.Equals(y.Name) && x.Bio.Equals(y.Bio);
|
|
0 commit comments