-
-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathMySqlExecutionTest.cs
269 lines (214 loc) · 7.64 KB
/
MySqlExecutionTest.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
using SqlKata.Compilers;
using Xunit;
using SqlKata.Execution;
using MySql.Data.MySqlClient;
using System;
using System.Linq;
using static SqlKata.Expressions;
using System.Collections.Generic;
namespace SqlKata.Tests
{
public class MySqlExecutionTest
{
[Fact]
public void EmptySelect()
{
var db = DB().Create("Cars", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Brand TEXT NOT NULL",
"Year INT NOT NULL",
"Color TEXT NULL",
});
var rows = db.Query("Cars").Get();
Assert.Empty(rows);
db.Drop("Cars");
}
[Fact]
public void SelectWithLimit()
{
var db = DB().Create("Cars", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Brand TEXT NOT NULL",
"Year INT NOT NULL",
"Color TEXT NULL",
});
db.Statement("INSERT INTO `Cars`(Brand, Year) VALUES ('Honda', 2020)");
var rows = db.Query("Cars").Get().ToList();
Assert.Single(rows);
db.Drop("Cars");
}
[Fact]
public void Count()
{
var db = DB().Create("Cars", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Brand TEXT NOT NULL",
"Year INT NOT NULL",
"Color TEXT NULL",
});
db.Statement("INSERT INTO `Cars`(Brand, Year) VALUES ('Honda', 2020)");
var count = db.Query("Cars").Count<int>();
Assert.Equal(1, count);
db.Statement("INSERT INTO `Cars`(Brand, Year) VALUES ('Toyota', 2021)");
count = db.Query("Cars").Count<int>();
Assert.Equal(2, count);
int affected = db.Query("Cars").Delete();
Assert.Equal(2, affected);
count = db.Query("Cars").Count<int>();
Assert.Equal(0, count);
db.Drop("Cars");
}
[Fact]
public void CloneThenCount()
{
var db = DB().Create("Cars", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Brand TEXT NOT NULL",
"Year INT NOT NULL",
"Color TEXT NULL",
});
for (int i = 0; i < 10; i++)
{
db.Query("Cars").Insert(new
{
Brand = "Brand " + i,
Year = "2020",
});
}
var query = db.Query("Cars").Where("Id", "<", 5);
var count = query.Count<int>();
var cloneCount = query.Clone().Count<int>();
Assert.Equal(4, count);
Assert.Equal(4, cloneCount);
db.Drop("Cars");
}
[Fact]
public void QueryWithVariable()
{
var db = DB().Create("Cars", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Brand TEXT NOT NULL",
"Year INT NOT NULL",
"Color TEXT NULL",
});
for (int i = 0; i < 10; i++)
{
db.Query("Cars").Insert(new
{
Brand = "Brand " + i,
Year = "2020",
});
}
var count = db.Query("Cars")
.Define("Threshold", 5)
.Where("Id", "<", SqlKata.Expressions.Variable("Threshold"))
.Count<int>();
Assert.Equal(4, count);
db.Drop("Cars");
}
[Fact]
public void InlineTable()
{
var db = DB().Create("Transaction", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Amount int NOT NULL",
"Date DATE NOT NULL",
});
db.Query("Transaction").Insert(new
{
Date = "2022-01-01",
Amount = 10
});
var rows = db.Query("Transaction")
.With("Rates", new[] { "Date", "Rate" }, new object[][] {
new object[] {"2022-01-01", 0.5},
})
.Join("Rates", "Rates.Date", "Transaction.Date")
.SelectRaw("Transaction.Amount * Rates.Rate as AmountConverted")
.Get();
Assert.Single(rows);
Assert.Equal(5, rows.First().AmountConverted);
db.Drop("Transaction");
}
[Fact]
public void ExistsShouldReturnFalseForEmptyTable()
{
var db = DB().Create("Transaction", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Amount int NOT NULL",
"Date DATE NOT NULL",
});
var exists = db.Query("Transaction").Exists();
Assert.False(exists);
db.Drop("Transaction");
}
[Fact]
public void ExistsShouldReturnTrueForNonEmptyTable()
{
var db = DB().Create("Transaction", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Amount int NOT NULL",
"Date DATE NOT NULL",
});
db.Query("Transaction").Insert(new
{
Date = "2022-01-01",
Amount = 10
});
var exists = db.Query("Transaction").Exists();
Assert.True(exists);
db.Drop("Transaction");
}
[Fact]
public void BasicSelectFilter()
{
var db = DB().Create("Transaction", new[] {
"Id INT PRIMARY KEY AUTO_INCREMENT",
"Date DATE NOT NULL",
"Amount int NOT NULL",
});
var data = new Dictionary<string, int> {
// 2020
{"2020-01-01", 10},
{"2020-05-01", 20},
// 2021
{"2021-01-01", 40},
{"2021-02-01", 10},
{"2021-04-01", -10},
// 2022
{"2022-01-01", 80},
{"2022-02-01", -30},
{"2022-05-01", 50},
};
foreach (var row in data)
{
db.Query("Transaction").Insert(new
{
Date = row.Key,
Amount = row.Value
});
}
var query = db.Query("Transaction")
.SelectSum("Amount as Total_2020", q => q.WhereDatePart("year", "date", 2020))
.SelectSum("Amount as Total_2021", q => q.WhereDatePart("year", "date", 2021))
.SelectSum("Amount as Total_2022", q => q.WhereDatePart("year", "date", 2022))
;
var results = query.Get().ToList();
Assert.Single(results);
Assert.Equal(30, results[0].Total_2020);
Assert.Equal(40, results[0].Total_2021);
Assert.Equal(100, results[0].Total_2022);
db.Drop("Transaction");
}
QueryFactory DB()
{
var host = System.Environment.GetEnvironmentVariable("SQLKATA_MYSQL_HOST");
var user = System.Environment.GetEnvironmentVariable("SQLKATA_MYSQL_USER");
var dbName = System.Environment.GetEnvironmentVariable("SQLKATA_MYSQL_DB");
var cs = $"server={host};user={user};database={dbName}";
var connection = new MySqlConnection(cs);
var db = new QueryFactory(connection, new MySqlCompiler());
return db;
}
}
}