mirror of https://github.com/AMT-Cheif/drift.git
Fix parsing Uint8Lists from json (#459)
This commit is contained in:
parent
2b9a85714f
commit
5ec5a4933c
|
@ -122,6 +122,13 @@ class _DefaultValueSerializer extends ValueSerializer {
|
|||
return json.toDouble() as T;
|
||||
}
|
||||
|
||||
// blobs are encoded as a regular json array, so we manually convert that to
|
||||
// a Uint8List
|
||||
if (T == Uint8List && json is! Uint8List) {
|
||||
final asList = (json as List).cast<int>();
|
||||
return Uint8List.fromList(asList) as T;
|
||||
}
|
||||
|
||||
return json as T;
|
||||
}
|
||||
|
||||
|
|
|
@ -52,6 +52,25 @@ void main() {
|
|||
|
||||
moorRuntimeOptions.defaultSerializer = old;
|
||||
});
|
||||
|
||||
test('can serialize and deserialize blob columns', () {
|
||||
final user = User(
|
||||
id: 3,
|
||||
name: 'Username',
|
||||
isAwesome: true,
|
||||
profilePicture: Uint8List.fromList([1, 2, 3, 4]),
|
||||
creationTime: DateTime.now(),
|
||||
);
|
||||
|
||||
final recovered = User.fromJsonString(user.toJsonString());
|
||||
|
||||
// Note: Some precision is lost when serializing DateTimes, so we're using
|
||||
// custom expects instead of expect(recovered, user)
|
||||
expect(recovered.id, user.id);
|
||||
expect(recovered.name, user.name);
|
||||
expect(recovered.isAwesome, user.isAwesome);
|
||||
expect(recovered.profilePicture, user.profilePicture);
|
||||
});
|
||||
}
|
||||
|
||||
class _MySerializer extends ValueSerializer {
|
||||
|
|
Loading…
Reference in New Issue