|
| 1 | +import 'dart:async'; |
| 2 | + |
| 3 | +import 'package:fake_async/fake_async.dart'; |
| 4 | +import 'package:sqlite_async/src/update_notification.dart'; |
| 5 | +import 'package:test/test.dart'; |
| 6 | + |
| 7 | +void main() { |
| 8 | + group('Update notifications', () { |
| 9 | + const timeout = Duration(seconds: 10); |
| 10 | + const halfTimeout = Duration(seconds: 5); |
| 11 | + |
| 12 | + group('throttle', () { |
| 13 | + test('can add initial', () { |
| 14 | + fakeAsync((control) { |
| 15 | + final source = StreamController<UpdateNotification>(sync: true); |
| 16 | + final events = <UpdateNotification>[]; |
| 17 | + |
| 18 | + UpdateNotification.throttleStream(source.stream, timeout, |
| 19 | + addOne: UpdateNotification({'a'})).listen(events.add); |
| 20 | + |
| 21 | + control.flushMicrotasks(); |
| 22 | + expect(events, hasLength(1)); |
| 23 | + control.elapse(halfTimeout); |
| 24 | + |
| 25 | + source.add(UpdateNotification({'b'})); |
| 26 | + expect(events, hasLength(1)); // Still a delay from the initial one |
| 27 | + |
| 28 | + control.elapse(halfTimeout); |
| 29 | + expect(events, hasLength(2)); |
| 30 | + }); |
| 31 | + }); |
| 32 | + |
| 33 | + test('sends events after initial throttle', () { |
| 34 | + fakeAsync((control) { |
| 35 | + final source = StreamController<UpdateNotification>(sync: true); |
| 36 | + final events = <UpdateNotification>[]; |
| 37 | + |
| 38 | + UpdateNotification.throttleStream(source.stream, timeout) |
| 39 | + .listen(events.add); |
| 40 | + |
| 41 | + source.add(UpdateNotification({'a'})); |
| 42 | + control.elapse(halfTimeout); |
| 43 | + expect(events, isEmpty); |
| 44 | + |
| 45 | + control.elapse(halfTimeout); |
| 46 | + expect(events, hasLength(1)); |
| 47 | + }); |
| 48 | + }); |
| 49 | + |
| 50 | + test('merges events', () { |
| 51 | + fakeAsync((control) { |
| 52 | + final source = StreamController<UpdateNotification>(sync: true); |
| 53 | + final events = <UpdateNotification>[]; |
| 54 | + |
| 55 | + UpdateNotification.throttleStream(source.stream, timeout) |
| 56 | + .listen(events.add); |
| 57 | + |
| 58 | + source.add(UpdateNotification({'a'})); |
| 59 | + control.elapse(halfTimeout); |
| 60 | + expect(events, isEmpty); |
| 61 | + |
| 62 | + source.add(UpdateNotification({'b'})); |
| 63 | + control.elapse(halfTimeout); |
| 64 | + expect(events, [ |
| 65 | + UpdateNotification({'a', 'b'}) |
| 66 | + ]); |
| 67 | + }); |
| 68 | + }); |
| 69 | + |
| 70 | + test('forwards cancellations', () { |
| 71 | + fakeAsync((control) { |
| 72 | + var cancelled = false; |
| 73 | + final source = StreamController<UpdateNotification>(sync: true) |
| 74 | + ..onCancel = () => cancelled = true; |
| 75 | + |
| 76 | + final sub = UpdateNotification.throttleStream(source.stream, timeout) |
| 77 | + .listen((_) => fail('unexpected event'), |
| 78 | + onDone: () => fail('unexpected done')); |
| 79 | + |
| 80 | + source.add(UpdateNotification({'a'})); |
| 81 | + control.elapse(halfTimeout); |
| 82 | + |
| 83 | + sub.cancel(); |
| 84 | + control.flushTimers(); |
| 85 | + |
| 86 | + expect(cancelled, isTrue); |
| 87 | + expect(control.pendingTimers, isEmpty); |
| 88 | + }); |
| 89 | + }); |
| 90 | + |
| 91 | + test('closes when source closes', () { |
| 92 | + fakeAsync((control) { |
| 93 | + final source = StreamController<UpdateNotification>(sync: true) |
| 94 | + ..onCancel = () => Future.value(); |
| 95 | + final events = <UpdateNotification>[]; |
| 96 | + var done = false; |
| 97 | + |
| 98 | + UpdateNotification.throttleStream(source.stream, timeout) |
| 99 | + .listen(events.add, onDone: () => done = true); |
| 100 | + |
| 101 | + source |
| 102 | + // These two are combined due to throttleFirst |
| 103 | + ..add(UpdateNotification({'a'})) |
| 104 | + ..add(UpdateNotification({'b'})) |
| 105 | + ..close(); |
| 106 | + |
| 107 | + control.flushTimers(); |
| 108 | + expect(events, [ |
| 109 | + UpdateNotification({'a', 'b'}) |
| 110 | + ]); |
| 111 | + expect(done, isTrue); |
| 112 | + expect(control.pendingTimers, isEmpty); |
| 113 | + }); |
| 114 | + }); |
| 115 | + |
| 116 | + test('closes when source closes after delay', () { |
| 117 | + fakeAsync((control) { |
| 118 | + final source = StreamController<UpdateNotification>(sync: true) |
| 119 | + ..onCancel = () => Future.value(); |
| 120 | + final events = <UpdateNotification>[]; |
| 121 | + var done = false; |
| 122 | + |
| 123 | + UpdateNotification.throttleStream(source.stream, timeout) |
| 124 | + .listen(events.add, onDone: () => done = true); |
| 125 | + |
| 126 | + control.elapse(const Duration(hours: 1)); |
| 127 | + source.close(); |
| 128 | + |
| 129 | + control.flushTimers(); |
| 130 | + expect(events, isEmpty); |
| 131 | + expect(done, isTrue); |
| 132 | + expect(control.pendingTimers, isEmpty); |
| 133 | + }); |
| 134 | + }); |
| 135 | + }); |
| 136 | + |
| 137 | + test('filter tables', () async { |
| 138 | + final source = StreamController<UpdateNotification>(sync: true); |
| 139 | + final events = <UpdateNotification>[]; |
| 140 | + final subscription = UpdateNotification.filterTablesTransformer(['a']) |
| 141 | + .bind(source.stream) |
| 142 | + .listen(events.add); |
| 143 | + |
| 144 | + source.add(UpdateNotification({'a', 'b'})); |
| 145 | + expect(events, hasLength(1)); |
| 146 | + |
| 147 | + source.add(UpdateNotification({'b'})); |
| 148 | + expect(events, hasLength(1)); |
| 149 | + |
| 150 | + await subscription.cancel(); |
| 151 | + expect(source.hasListener, isFalse); |
| 152 | + }); |
| 153 | + }); |
| 154 | +} |
0 commit comments