-
-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathUpdateTests.cs
319 lines (257 loc) · 10 KB
/
UpdateTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Dynamic;
using System.Linq;
using SqlKata.Compilers;
using SqlKata.Tests.Infrastructure;
using Xunit;
namespace SqlKata.Tests
{
public class UpdateTests : TestSupport
{
private class Book
{
public Book(string name, string author, decimal price = 1.0m, string color = null)
{
this.Name = name ?? throw new ArgumentNullException(nameof(name));
this.BookPrice = price;
this.color = color;
this.BookAuthor = author;
}
public string Name { get; set; }
[Column("Author")]
public string BookAuthor { get; set; }
[Column("Price")]
public decimal BookPrice { get; set; }
[Ignore]
public string color { get; set; }
}
private class OrderProductComposite
{
public OrderProductComposite(string orderid, string productid, int quantity)
{
OrderId = orderid;
ProductId = productid;
Quantity = quantity;
Foo = "baz";
}
[Key("OrdId")]
public string OrderId { get; set; }
[Key]
public string ProductId { get; set; }
public int Quantity { get; set; }
[Column("Faa")]
public string Foo { get; set; }
}
[Fact]
public void UpdateObject()
{
var query = new Query("Table").AsUpdate(new
{
Name = "The User",
Age = new DateTime(2018, 1, 1, 0, 0, 0, DateTimeKind.Utc),
});
var c = Compile(query);
Assert.Equal(
"UPDATE [Table] SET [Name] = 'The User', [Age] = '2018-01-01'",
c[EngineCodes.SqlServer]);
Assert.Equal(
"UPDATE \"TABLE\" SET \"NAME\" = 'The User', \"AGE\" = '2018-01-01'",
c[EngineCodes.Firebird]);
}
[Fact]
public void UpdateWithNullValues()
{
var query = new Query("Books").Where("Id", 1).AsUpdate(
new[] { "Author", "Date", "Version" },
new object[] { "Author 1", null, null }
);
var c = Compile(query);
Assert.Equal(
"UPDATE [Books] SET [Author] = 'Author 1', [Date] = NULL, [Version] = NULL WHERE [Id] = 1",
c[EngineCodes.SqlServer]);
Assert.Equal(
"UPDATE \"BOOKS\" SET \"AUTHOR\" = 'Author 1', \"DATE\" = NULL, \"VERSION\" = NULL WHERE \"ID\" = 1",
c[EngineCodes.Firebird]);
}
[Fact]
public void UpdateWithEmptyString()
{
var query = new Query("Books").Where("Id", 1).AsUpdate(
new[] { "Author", "Description" },
new object[] { "Author 1", "" }
);
var c = Compile(query);
Assert.Equal("UPDATE [Books] SET [Author] = 'Author 1', [Description] = '' WHERE [Id] = 1", c[EngineCodes.SqlServer]);
Assert.Equal("UPDATE \"BOOKS\" SET \"AUTHOR\" = 'Author 1', \"DESCRIPTION\" = '' WHERE \"ID\" = 1", c[EngineCodes.Firebird]);
}
[Fact]
public void UpdateWithCte()
{
var now = DateTime.UtcNow.ToString("yyyy-MM-dd");
var query = new Query("Books")
.With("OldBooks", q => q.From("Books").Where("Date", "<", now))
.Where("Price", ">", 100)
.AsUpdate(new Dictionary<string, object>
{
{"Price", "150"}
});
var c = Compile(query);
Assert.Equal(
$"WITH [OldBooks] AS (SELECT * FROM [Books] WHERE [Date] < '{now}')\nUPDATE [Books] SET [Price] = '150' WHERE [Price] > 100",
c[EngineCodes.SqlServer]);
}
[Fact]
public void UpdateWithIgnoreAndColumnProperties()
{
var book = new Book(name: $"SqlKataBook", author: "Kata", color: $"red", price: 100m);
var query = new Query("Book").AsUpdate(book);
var c = Compile(query);
Assert.Equal(
"UPDATE [Book] SET [Name] = 'SqlKataBook', [Author] = 'Kata', [Price] = 100",
c[EngineCodes.SqlServer]);
Assert.Equal(
"UPDATE \"BOOK\" SET \"NAME\" = 'SqlKataBook', \"AUTHOR\" = 'Kata', \"PRICE\" = 100",
c[EngineCodes.Firebird]);
}
[Fact]
public void UpdateWithKeyAttribute()
{
var order = new OrderProductComposite("ORD01", "PROD02", 20);
var query = new Query("OrderProductComposite").AsUpdate(order);
var c = Compile(query);
Assert.Equal(
"UPDATE [OrderProductComposite] SET [OrdId] = 'ORD01', [ProductId] = 'PROD02', [Quantity] = 20, [Faa] = 'baz' WHERE [OrdId] = 'ORD01' AND [ProductId] = 'PROD02'",
c[EngineCodes.SqlServer]);
Assert.Equal(
"UPDATE \"ORDERPRODUCTCOMPOSITE\" SET \"ORDID\" = 'ORD01', \"PRODUCTID\" = 'PROD02', \"QUANTITY\" = 20, \"FAA\" = 'baz' WHERE \"ORDID\" = 'ORD01' AND \"PRODUCTID\" = 'PROD02'",
c[EngineCodes.Firebird]);
}
[Fact]
public void UpdateFromRaw()
{
var query = new Query().FromRaw("Table.With.Dots").AsUpdate(new
{
Name = "The User",
});
var c = Compile(query);
Assert.Equal(
"UPDATE Table.With.Dots SET [Name] = 'The User'",
c[EngineCodes.SqlServer]);
}
[Fact]
public void UpdateFromQueryShouldFail()
{
var query = new Query().From(new Query("InnerTable")).AsUpdate(new
{
Name = "The User",
});
Assert.Throws<InvalidOperationException>(() =>
{
Compile(query);
});
}
[Fact]
public void update_should_compile_literal_without_parameters_holders()
{
var query = new Query("MyTable").AsUpdate(new
{
Name = "The User",
Address = new UnsafeLiteral("@address")
});
var compiler = new SqlServerCompiler();
var result = compiler.Compile(query);
Assert.Equal(
"UPDATE [MyTable] SET [Name] = ?, [Address] = @address",
result.RawSql);
}
[Fact]
public void UpdateUsingKeyValuePairs()
{
var dictionaryUser = new Dictionary<string, object>
{
{ "Name", "The User" },
{ "Age", new DateTime(2018, 1, 1, 0, 0, 0, DateTimeKind.Utc) },
}
.ToArray();
var query = new Query("Table")
.AsUpdate(dictionaryUser);
var c = Compile(query);
Assert.Equal(
"UPDATE [Table] SET [Name] = 'The User', [Age] = '2018-01-01'",
c[EngineCodes.SqlServer]);
}
[Fact]
public void UpdateUsingDictionary()
{
var dictionaryUser = new Dictionary<string, object> {
{ "Name", "The User" },
{ "Age", new DateTime(2018, 1, 1, 0, 0, 0, DateTimeKind.Utc) },
};
var query = new Query("Table")
.AsUpdate(dictionaryUser);
var c = Compile(query);
Assert.Equal(
"UPDATE [Table] SET [Name] = 'The User', [Age] = '2018-01-01'",
c[EngineCodes.SqlServer]);
}
[Fact]
public void UpdateUsingReadOnlyDictionary()
{
var dictionaryUser = new ReadOnlyDictionary<string, object>(
new Dictionary<string, object>
{
{ "Name", "The User" },
{ "Age", new DateTime(2018, 1, 1, 0, 0, 0, DateTimeKind.Utc) },
});
var query = new Query("Table")
.AsUpdate(dictionaryUser);
var c = Compile(query);
Assert.Equal(
"UPDATE [Table] SET [Name] = 'The User', [Age] = '2018-01-01'",
c[EngineCodes.SqlServer]);
}
[Fact]
public void UpdateUsingExpandoObject()
{
dynamic expandoUser = new ExpandoObject();
expandoUser.Name = "The User";
expandoUser.Age = new DateTime(2018, 1, 1, 0, 0, 0, DateTimeKind.Utc);
var query = new Query("Table")
.AsUpdate(expandoUser);
var c = Compile(query);
Assert.Equal(
"UPDATE [Table] SET [Name] = 'The User', [Age] = '2018-01-01'",
c[EngineCodes.SqlServer]);
}
[Fact]
public void IncrementUpdate()
{
var query = new Query("Table").AsIncrement("Total");
var c = Compile(query);
Assert.Equal("UPDATE [Table] SET [Total] = [Total] + 1", c[EngineCodes.SqlServer]);
}
[Fact]
public void IncrementUpdateWithValue()
{
var query = new Query("Table").AsIncrement("Total", 2);
var c = Compile(query);
Assert.Equal("UPDATE [Table] SET [Total] = [Total] + 2", c[EngineCodes.SqlServer]);
}
[Fact]
public void IncrementUpdateWithWheres()
{
var query = new Query("Table").Where("Name", "A").AsIncrement("Total", 2);
var c = Compile(query);
Assert.Equal("UPDATE [Table] SET [Total] = [Total] + 2 WHERE [Name] = 'A'", c[EngineCodes.SqlServer]);
}
[Fact]
public void DecrementUpdate()
{
var query = new Query("Table").Where("Name", "A").AsDecrement("Total", 2);
var c = Compile(query);
Assert.Equal("UPDATE [Table] SET [Total] = [Total] - 2 WHERE [Name] = 'A'", c[EngineCodes.SqlServer]);
}
}
}