Fix parsing Uint8Lists from json (#459)

This commit is contained in:
Simon Binder 2020-03-27 11:52:00 +01:00
parent 2b9a85714f
commit 5ec5a4933c
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 26 additions and 0 deletions

View File

@ -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;
}

View File

@ -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 {