mirror of https://github.com/AMT-Cheif/drift.git
35 lines
982 B
Dart
35 lines
982 B
Dart
import 'package:test/test.dart';
|
|
import 'package:tests/database/database.dart';
|
|
import 'package:tests/suite/suite.dart';
|
|
|
|
void crudTests(TestExecutor executor) {
|
|
test('inserting updates a select stream', () async {
|
|
final db = Database(executor.createExecutor());
|
|
final friends = db.watchFriendsOf(1).asBroadcastStream();
|
|
|
|
final a = await db.getUserById(1);
|
|
final b = await db.getUserById(2);
|
|
|
|
expect(await friends.first, isEmpty);
|
|
|
|
// after we called makeFriends(a,b)
|
|
final expectation = expectLater(friends, emits(equals(<User>[b])));
|
|
|
|
await db.makeFriends(a, b);
|
|
await expectation;
|
|
|
|
await db.close();
|
|
});
|
|
|
|
test('IN ? expressions can be expanded', () async {
|
|
// regression test for https://github.com/simolus3/moor/issues/156
|
|
final db = Database(executor.createExecutor());
|
|
|
|
final result = await db.usersById([1, 2, 3]);
|
|
|
|
expect(result.map((u) => u.name), ['Dash', 'Duke', 'Go Gopher']);
|
|
|
|
await db.close();
|
|
});
|
|
}
|