-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpending_feedback_item_storage_test.dart
460 lines (402 loc) Β· 14.1 KB
/
pending_feedback_item_storage_test.dart
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
import 'dart:convert';
import 'dart:ui';
import 'package:file/file.dart';
import 'package:file/memory.dart';
import 'package:flutter/foundation.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:test/fake.dart';
import 'package:test/test.dart';
import 'package:transparent_image/transparent_image.dart';
import 'package:wiredash/src/_feedback.dart';
import 'package:wiredash/src/feedback/data/pending_feedback_item_storage.dart';
import 'package:wiredash/src/metadata/build_info/app_info.dart';
import 'package:wiredash/src/metadata/build_info/build_info.dart';
import 'package:wiredash/src/metadata/device_info/device_info.dart';
import 'package:wiredash/src/utils/uuid.dart';
import '../../util/invocation_catcher.dart';
void main() {
group('PendingFeedbackItemStorage', () {
late FileSystem fileSystem;
late InMemorySharedPreferences prefs;
late IncrementalUuidV4Generator uuidGenerator;
late PendingFeedbackItemStorage storage;
setUp(() {
fileSystem = MemoryFileSystem.test();
prefs = InMemorySharedPreferences();
uuidGenerator = IncrementalUuidV4Generator();
storage = PendingFeedbackItemStorage(
fileSystem: fileSystem,
sharedPreferencesProvider: () async => prefs,
dirPathProvider: () async => '.',
uuidV4Generator: uuidGenerator,
);
});
List<String> filesOnDisk() =>
fileSystem.directory('').listSync().map((it) => it.path).toList()
..sort();
test('can persist one feedback item', () async {
await fileSystem.file('existing.png').writeAsBytes(kTransparentImage);
final item = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.uploaded(AttachmentId('453')),
deviceInfo: testDeviceInfo,
),
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.file('existing.png'),
deviceInfo: testDeviceInfo,
),
],
);
final pendingItem = await storage.addPendingItem(item);
expect(
pendingItem.feedbackItem.attachments[0].file,
FileDataEventuallyOnDisk.file('0.png'),
);
expect(
pendingItem.feedbackItem.attachments[1].file,
FileDataEventuallyOnDisk.uploaded(AttachmentId('453')),
);
expect(
pendingItem.feedbackItem.attachments[2].file,
FileDataEventuallyOnDisk.file('existing.png'),
);
expect(
await storage.retrieveAllPendingItems(),
[pendingItem],
);
// actually check prefs
expect(prefs.setStringListInvocations.count, 1);
final saved = prefs._store['io.wiredash.pending_feedback_items'];
expect(saved, [serializePendingFeedbackItem(pendingItem)]);
// 0.png because of incrementing uuid
expect(filesOnDisk(), [
'0.png',
'existing.png',
]);
});
test('store a second item without overriding the first one', () async {
final firstFeedback = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final firstItem = await storage.addPendingItem(firstFeedback);
final secondFeedback = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final secondItem = await storage.addPendingItem(secondFeedback);
expect(
await storage.retrieveAllPendingItems(),
[firstItem, secondItem],
);
final allAttachments = [
...firstItem.feedbackItem.attachments,
...secondItem.feedbackItem.attachments,
];
// all items must be distinct (different ids)
expect(allAttachments, allAttachments.toSet().toList());
// 3 saved files
expect(filesOnDisk(), [
'0.png',
'1.png',
'3.png', // uuidGenerator is also used to create the pending item id
]);
});
test('can clear one feedback item', () async {
final item = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final pendingItem = await storage.addPendingItem(item);
expect(await storage.retrieveAllPendingItems(), [pendingItem]);
expect(filesOnDisk(), ['0.png']);
await storage.clearPendingItem(pendingItem.id);
expect(await storage.retrieveAllPendingItems(), []);
expect(filesOnDisk(), []);
});
test('when has two items, preserves one while clearing the other one',
() async {
final first = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final firstPending = await storage.addPendingItem(first);
expect(firstPending.id, '1');
expect(filesOnDisk(), ['0.png']);
final second = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final secondPending = await storage.addPendingItem(second);
expect(secondPending.id, '3');
expect(filesOnDisk(), ['0.png', '2.png']);
expect(
await storage.retrieveAllPendingItems(),
[firstPending, secondPending],
);
await storage.clearPendingItem(firstPending.id);
expect(await storage.retrieveAllPendingItems(), [secondPending]);
expect(filesOnDisk(), ['2.png']);
});
test('removes items which can not be parsed', () async {
await fileSystem
.file('<screenshot for invalid item>')
.writeAsBytes(kTransparentImage);
final illegalSerializedItem = json.encode({
// item has some required properties missing
'id': '<screenshot for invalid item>',
'feedbackItem': {
'email': '<email for item to be preserved>',
'type': '<type for item to be preserved>',
},
'screenshotPath': '<screenshot for invalid item>',
});
await fileSystem
.file('<existing item screenshot>')
.writeAsBytes(kTransparentImage);
final pendingSerializedLegalItem = serializePendingFeedbackItem(
PendingFeedbackItem(
id: '123',
feedbackItem: createFeedback(
attachments: [
PersistedAttachment.screenshot(
file:
FileDataEventuallyOnDisk.file('<existing item screenshot>'),
deviceInfo: testDeviceInfo,
),
],
),
),
);
await prefs.setStringList(
'io.wiredash.pending_feedback_items',
[
illegalSerializedItem,
pendingSerializedLegalItem,
],
);
final oldOnErrorHandler = FlutterError.onError;
late FlutterErrorDetails caught;
FlutterError.onError = (FlutterErrorDetails details) {
caught = details;
};
addTearDown(() {
// reset error reporter after test
FlutterError.onError = oldOnErrorHandler;
});
final retrieved = await storage.retrieveAllPendingItems();
// method returns only valid items
expect(retrieved.length, 1);
// error was reported to Flutter.onError
expect(
caught.stack.toString(),
stringContainsInOrder([
'deserializePendingFeedbackItem',
'PendingFeedbackItemStorage.retrieveAllPendingItems',
]),
);
// reset error reporter after successful assertion
FlutterError.onError = oldOnErrorHandler;
// add pending item to remove the illegal one
final newFeedback = createFeedback();
final pendingItem = await storage.addPendingItem(newFeedback);
// verify the invalid item was removed, while the legal and new item
// where saved
final lastCall = prefs.setStringListInvocations.latest;
expect(lastCall[0], 'io.wiredash.pending_feedback_items');
expect(
lastCall[1],
[pendingSerializedLegalItem, serializePendingFeedbackItem(pendingItem)],
);
// screenshot was deleted as well, leave nothing behind!
expect(
fileSystem.file('<screenshot for invalid item>').existsSync(),
isFalse,
);
expect(
fileSystem.file('<existing item screenshot>').existsSync(),
isTrue,
);
});
test('updateItem removes file from disk', () async {
final first = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final firstPending = await storage.addPendingItem(first);
expect(firstPending.id, '1');
expect(filesOnDisk(), ['0.png']);
final second = createFeedback(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.inMemory(kTransparentImage),
deviceInfo: testDeviceInfo,
),
],
);
final secondPending = await storage.addPendingItem(second);
expect(secondPending.id, '3');
expect(filesOnDisk(), ['0.png', '2.png']);
expect(
await storage.retrieveAllPendingItems(),
[firstPending, secondPending],
);
// replace attachment with after upload
final update = firstPending.copyWith(
feedbackItem: firstPending.feedbackItem.copyWith(
attachments: [
PersistedAttachment.screenshot(
file: FileDataEventuallyOnDisk.uploaded(AttachmentId('1')),
deviceInfo: firstPending.feedbackItem.deviceInfo,
),
],
),
);
await storage.updatePendingItem(update);
expect(await storage.retrieveAllPendingItems(), [secondPending, update]);
expect(filesOnDisk(), ['2.png']);
});
});
}
class InMemorySharedPreferences extends Fake implements SharedPreferences {
final Map<String, Object?> _store = {};
final MethodInvocationCatcher setStringListInvocations =
MethodInvocationCatcher('setStringList');
@override
Future<bool> setStringList(String key, List<String> value) async {
final mockedReturnValue =
setStringListInvocations.addAsyncMethodCall<bool>(args: [key, value]);
if (mockedReturnValue != null) {
return mockedReturnValue.future;
}
_store[key] = value;
return true;
}
final MethodInvocationCatcher getStringListInvocations =
MethodInvocationCatcher('getStringList');
@override
List<String>? getStringList(String key) {
final mockedReturnValue =
getStringListInvocations.addMethodCall<List<String>?>(args: [key]);
if (mockedReturnValue != null) {
return mockedReturnValue.value;
}
return _store[key] as List<String>?;
}
final MethodInvocationCatcher setIntInvocations =
MethodInvocationCatcher('setInt');
@override
Future<bool> setInt(String key, int value) async {
final mockedReturnValue =
setIntInvocations.addAsyncMethodCall<bool>(args: [key, value]);
if (mockedReturnValue != null) {
return mockedReturnValue.future;
}
_store[key] = value;
return true;
}
final MethodInvocationCatcher getIntInvocations =
MethodInvocationCatcher('getInt');
@override
int? getInt(String key) {
final mockedReturnValue =
getIntInvocations.addMethodCall<int?>(args: [key]);
if (mockedReturnValue != null) {
return mockedReturnValue.value;
}
return _store[key] as int?;
}
final MethodInvocationCatcher setStringInvocations =
MethodInvocationCatcher('setString');
@override
Future<bool> setString(String key, String value) async {
final mockedReturnValue =
setStringInvocations.addAsyncMethodCall<bool>(args: [key, value]);
if (mockedReturnValue != null) {
return mockedReturnValue.future;
}
_store[key] = value;
return true;
}
final MethodInvocationCatcher getStringInvocations =
MethodInvocationCatcher('getString');
@override
String? getString(String key) {
final mockedReturnValue = getStringInvocations.addMethodCall(args: [key]);
if (mockedReturnValue != null) {
return mockedReturnValue.value as String?;
}
return _store[key] as String?;
}
}
/// Creates string IDs that increment
class IncrementalUuidV4Generator implements UuidV4Generator {
var _next = 0;
@override
String generate() {
final now = _next;
_next++;
return now.toString();
}
}
const testDeviceInfo = FlutterDeviceInfo(
pixelRatio: 1.0,
textScaleFactor: 1.0,
platformLocale: 'en_US',
platformSupportedLocales: ['en_US', 'de_DE'],
platformBrightness: Brightness.dark,
gestureInsets: WiredashWindowPadding(left: 0, top: 0, right: 0, bottom: 0),
padding: WiredashWindowPadding(left: 0, top: 0, right: 0, bottom: 0),
viewInsets: WiredashWindowPadding(left: 0, top: 0, right: 0, bottom: 0),
physicalGeometry: Rect.zero,
physicalSize: Size(800, 1200),
);
PersistedFeedbackItem createFeedback({
List<PersistedAttachment>? attachments,
String? message,
}) {
return PersistedFeedbackItem(
appInfo: const AppInfo(appLocale: 'de_DE'),
buildInfo: const BuildInfo(compilationMode: CompilationMode.release),
deviceId: '1234',
deviceInfo: testDeviceInfo,
email: 'email@example.com',
message: message ?? 'Hello world!',
labels: ['bug'],
userId: 'Testy McTestFace',
attachments: attachments ?? [],
);
}