-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathmod.rs
More file actions
516 lines (445 loc) · 15.3 KB
/
mod.rs
File metadata and controls
516 lines (445 loc) · 15.3 KB
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
use std::future::Future;
use std::time::Duration;
use base64::{engine::general_purpose::URL_SAFE, Engine as _};
pub use fixtures::FixtureSnapshot;
use sha2::{Digest, Sha512};
use crate::connection::{ConnectOptions, Connection};
use crate::database::Database;
use crate::error::Error;
use crate::executor::Executor;
use crate::migrate::{Migrate, Migrator};
use crate::pool::{Pool, PoolConnection, PoolOptions};
mod fixtures;
pub trait TestSupport: Database {
/// Get parameters to construct a `Pool` suitable for testing.
///
/// This `Pool` instance will behave somewhat specially:
/// * all handles share a single global semaphore to avoid exceeding the connection limit
/// on the database server.
/// * each invocation results in a different temporary database.
///
/// The implementation may require `DATABASE_URL` to be set in order to manage databases.
/// The user credentials it contains must have the privilege to create and drop databases.
fn test_context(
args: &TestArgs,
) -> impl Future<Output = Result<TestContext<Self>, Error>> + Send + '_;
fn cleanup_test(args: &TestArgs) -> impl Future<Output = Result<(), Error>> + Send + '_;
/// Cleanup any test databases that are no longer in-use.
///
/// Returns a count of the databases deleted, if possible.
///
/// The implementation may require `DATABASE_URL` to be set in order to manage databases.
/// The user credentials it contains must have the privilege to create and drop databases.
fn cleanup_test_dbs() -> impl Future<Output = Result<Option<usize>, Error>> + Send + 'static;
/// Cleanup any test databases that are no longer in-use.
///
/// Returns a count of the databases deleted, if possible.
fn cleanup_test_dbs_by_url(
url: &str,
) -> impl Future<Output = Result<Option<usize>, Error>> + Send + '_;
/// Take a snapshot of the current state of the database (data only).
///
/// This snapshot can then be used to generate test fixtures.
fn snapshot(
conn: &mut Self::Connection,
) -> impl Future<Output = Result<FixtureSnapshot<Self>, Error>> + Send + '_;
/// Generate a unique database name for the given test path.
fn db_name(args: &TestArgs) -> String {
let mut hasher = Sha512::new();
hasher.update(args.test_path.as_bytes());
let hash = hasher.finalize();
let hash = URL_SAFE.encode(&hash[..39]);
let db_name = format!("_sqlx_test_{}", hash).replace('-', "_");
debug_assert!(db_name.len() == 63);
db_name
}
}
pub struct TestFixture {
pub path: &'static str,
pub contents: &'static str,
}
pub struct TestArgs {
pub test_path: &'static str,
pub migrator: Option<&'static Migrator>,
pub fixtures: &'static [TestFixture],
pub database_url_var: &'static str,
}
pub trait TestFn {
type Output;
fn run_test(self, args: TestArgs) -> Self::Output;
}
pub trait TestTermination {
fn is_success(&self) -> bool;
}
pub struct TestContext<DB: Database> {
pub pool_opts: PoolOptions<DB>,
pub connect_opts: <DB::Connection as Connection>::Options,
pub db_name: String,
}
impl<DB, Fut> TestFn for fn(Pool<DB>) -> Fut
where
DB: TestSupport + Database,
DB::Connection: Migrate,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, args: TestArgs) -> Self::Output {
run_test_with_pool(args, self)
}
}
impl<DB, Fut> TestFn for fn(PoolConnection<DB>) -> Fut
where
DB: TestSupport + Database,
DB::Connection: Migrate,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, args: TestArgs) -> Self::Output {
run_test_with_pool(args, |pool| async move {
let conn = pool
.acquire()
.await
.expect("failed to acquire test pool connection");
let res = (self)(conn).await;
pool.close().await;
res
})
}
}
impl<DB, Fut> TestFn for fn(PoolOptions<DB>, <DB::Connection as Connection>::Options) -> Fut
where
DB: Database + TestSupport,
DB::Connection: Migrate,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, args: TestArgs) -> Self::Output {
run_test(args, self)
}
}
impl<Fut> TestFn for fn() -> Fut
where
Fut: Future,
{
type Output = Fut::Output;
fn run_test(self, args: TestArgs) -> Self::Output {
assert!(
args.fixtures.is_empty(),
"fixtures cannot be applied for a bare function"
);
crate::rt::test_block_on(self())
}
}
impl TestArgs {
pub fn new(test_path: &'static str) -> Self {
TestArgs {
test_path,
migrator: None,
fixtures: &[],
database_url_var: "DATABASE_URL",
}
}
pub fn migrator(&mut self, migrator: &'static Migrator) {
self.migrator = Some(migrator);
}
pub fn no_migrator(&mut self) {
self.migrator = None;
}
pub fn fixtures(&mut self, fixtures: &'static [TestFixture]) {
self.fixtures = fixtures;
}
pub fn database_url_var(&mut self, database_url_var: &'static str) {
self.database_url_var = database_url_var;
}
}
impl TestTermination for () {
fn is_success(&self) -> bool {
true
}
}
impl<T, E> TestTermination for Result<T, E> {
fn is_success(&self) -> bool {
self.is_ok()
}
}
fn run_test_with_pool<DB, F, Fut>(args: TestArgs, test_fn: F) -> Fut::Output
where
DB: TestSupport,
DB::Connection: Migrate,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
F: FnOnce(Pool<DB>) -> Fut,
Fut: Future,
Fut::Output: TestTermination,
{
let test_path = args.test_path;
run_test::<DB, _, _>(args, |pool_opts, connect_opts| async move {
let pool = pool_opts
.connect_with(connect_opts)
.await
.expect("failed to connect test pool");
let res = test_fn(pool.clone()).await;
let close_timed_out = crate::rt::timeout(Duration::from_secs(10), pool.close())
.await
.is_err();
if close_timed_out {
eprintln!("test {test_path} held onto Pool after exiting");
}
res
})
}
fn run_test<DB, F, Fut>(args: TestArgs, test_fn: F) -> Fut::Output
where
DB: TestSupport,
DB::Connection: Migrate,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
F: FnOnce(PoolOptions<DB>, <DB::Connection as Connection>::Options) -> Fut,
Fut: Future,
Fut::Output: TestTermination,
{
crate::rt::test_block_on(async move {
let test_context = DB::test_context(&args)
.await
.expect("failed to connect to setup test database");
setup_test_db::<DB>(&test_context.connect_opts, &args).await;
let res = test_fn(test_context.pool_opts, test_context.connect_opts).await;
if res.is_success() {
if let Err(e) = DB::cleanup_test(&args).await {
eprintln!(
"failed to delete database {:?}: {}",
test_context.db_name, e
);
}
}
res
})
}
async fn setup_test_db<DB: Database>(
copts: &<DB::Connection as Connection>::Options,
args: &TestArgs,
) where
DB::Connection: Migrate + Sized,
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
{
let mut conn = copts
.connect()
.await
.expect("failed to connect to test database");
if let Some(migrator) = args.migrator {
migrator
.run_direct(None, &mut conn)
.await
.expect("failed to apply migrations");
}
for fixture in args.fixtures {
(&mut conn)
.execute(fixture.contents)
.await
.unwrap_or_else(|e| panic!("failed to apply test fixture {:?}: {:?}", fixture.path, e));
}
conn.close()
.await
.expect("failed to close setup connection");
}
macro_rules! impl_test_fn {
(
$name:ident;
$run_fn:ident;
$run_with_pool_fn:ident;
$(
(
$lt:lifetime $db:ident,
$args:ident, $testctx:ident, $testpath:ident,
$poolopts:ident, $connopts:ident,
$pool:ident, $conn:ident
),
)*;
) => {
pub trait $name {
type Output;
fn run_test(self, $($args: TestArgs,)*) -> Self::Output;
}
impl<$($db,)* Fut> $name for fn($(Pool<$db>,)*) -> Fut
where
$(
$db: TestSupport + Database,
$db::Connection: Migrate,
for<$lt> &$lt mut $db::Connection: Executor<$lt, Database = $db>,
)*
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, $($args: TestArgs,)*) -> Self::Output {
$run_with_pool_fn($($args,)* self)
}
}
impl<$($db,)* Fut> $name for fn($(PoolConnection<$db>,)*) -> Fut
where
$(
$db: TestSupport + Database,
$db::Connection: Migrate,
for<$lt> &$lt mut $db::Connection: Executor<$lt, Database = $db>,
)*
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, $($args: TestArgs,)*) -> Self::Output {
$run_with_pool_fn($($args,)* |$($pool,)*| async move {
$(
let $conn = $pool
.acquire()
.await
.expect("failed to acquire test pool connection");
)*
let res = (self)($($conn,)*).await;
$(
$pool.close().await;
)*
res
})
}
}
impl<$($db,)* Fut> $name
for fn(
$(
(PoolOptions<$db>, <$db::Connection as Connection>::Options),
)*
) -> Fut
where
$(
$db: TestSupport + Database,
$db::Connection: Migrate,
for<$lt> &$lt mut $db::Connection: Executor<$lt, Database = $db>,
)*
Fut: Future,
Fut::Output: TestTermination,
{
type Output = Fut::Output;
fn run_test(self, $($args: TestArgs,)*) -> Self::Output {
$run_fn($($args,)* self)
}
}
impl<Fut> $name for fn() -> Fut
where
Fut: Future,
{
type Output = Fut::Output;
fn run_test(self, $($args: TestArgs,)*) -> Self::Output {
$(
assert!(
$args.fixtures.is_empty(),
"fixtures cannot be applied for a bare function",
);
)*
crate::rt::test_block_on(self())
}
}
fn $run_with_pool_fn<$($db,)* F, Fut>($($args: TestArgs,)* test_fn: F) -> Fut::Output
where
$(
$db: TestSupport,
$db::Connection: Migrate,
for<$lt> &$lt mut $db::Connection: Executor<$lt, Database = $db>,
)*
F: FnOnce($(Pool<$db>,)*) -> Fut,
Fut: Future,
Fut::Output: TestTermination,
{
$(
let $testpath: &'static str = $args.test_path;
)*
$run_fn::<$($db,)* _, _>(
$($args,)*
|$(($poolopts, $connopts),)*| async move {
$(
let $pool = $poolopts
.connect_with($connopts)
.await
.expect("failed to connect test pool");
)*
let res = test_fn($($pool.clone(),)*).await;
$(
let close_timed_out = crate::rt::timeout(Duration::from_secs(10), $pool.close())
.await
.is_err();
if close_timed_out {
eprintln!("test {} held onto Pool after exiting", $testpath);
}
)*
res
},
)
}
fn $run_fn<$($db,)* F, Fut>($($args: TestArgs,)* test_fn: F) -> Fut::Output
where
$(
$db: TestSupport,
$db::Connection: Migrate,
for<$lt> &$lt mut $db::Connection: Executor<$lt, Database = $db>,
)*
F: FnOnce(
$((PoolOptions<$db>, <$db::Connection as Connection>::Options),)*
) -> Fut,
Fut: Future,
Fut::Output: TestTermination,
{
crate::rt::test_block_on(async move {
$(
let $testctx = $db::test_context(&$args)
.await
.expect("failed to connect to setup test database");
setup_test_db::<$db>(&$testctx.connect_opts, &$args).await;
)*
let res = test_fn(
$(($testctx.pool_opts, $testctx.connect_opts),)*
)
.await;
if res.is_success() {
$(
if let Err(e) = $db::cleanup_test(&$args).await {
eprintln!(
"failed to delete database {:?}: {}",
$testctx.db_name, e
);
}
)*
}
res
})
}
};
}
impl_test_fn!(
TestFn2;
run_test2;
run_test_with_pool2;
('c DB1, args1, tc1, tp1, po1, co1, p1, c1),
('d DB2, args2, tc2, tp2, po2, co2, p2, c2),
;
);
impl_test_fn!(
TestFn3;
run_test3;
run_test_with_pool3;
('c DB1, args1, tc1, tp1, po1, co1, p1, c1),
('d DB2, args2, tc2, tp2, po2, co2, p2, c2),
('e DB3, args3, tc3, tp3, po3, co3, p3, c3),
;
);
impl_test_fn!(
TestFn4;
run_test4;
run_test_with_pool4;
('c DB1, args1, tc1, tp1, po1, co1, p1, c1),
('d DB2, args2, tc2, tp2, po2, co2, p2, c2),
('e DB3, args3, tc3, tp3, po3, co3, p3, c3),
('f DB4, args4, tc4, tp4, po4, co4, p4, c4),
;
);