Skip to content

Commit

Permalink
test: improve ContentSerdes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Dec 31, 2023
1 parent 1bb198b commit 7b2a9d8
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions test/core/content_serdes_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Content _getTestContent(String input) {
}

void main() {
group('Content Serdes Tests', () {
test('Content Validation', () async {
group('ContentSerdes should', () {
test('validate Content', () async {
final contentSerdes = ContentSerdes();

final testContent1 = _getTestContent('42');
Expand Down Expand Up @@ -57,7 +57,7 @@ void main() {
null,
);
});
test('Codec Registration', () async {
test('support registration of new Codecs', () async {
final contentSerdes = ContentSerdes();

expect(
Expand Down Expand Up @@ -130,5 +130,40 @@ void main() {
throwsArgumentError,
);
});

test('return a Content object with an empty Stream for undefined values',
() async {
final contentSerdes = ContentSerdes();
final content = contentSerdes.valueToContent(null, null);

expect(await content.body.isEmpty, isTrue);
});

test('reject undefined DataSchemaValues if a DataSchema is given',
() async {
final contentSerdes = ContentSerdes();

expect(
() => contentSerdes.valueToContent(
null,
// FIXME(JKRhb): Should not be necessary to use fromJson here
DataSchema.fromJson({'type': 'object'}, PrefixMapping()),
),
throwsA(isA<ContentSerdesException>()),
);
});

test('convert DataSchemaValues to Content', () async {
final contentSerdes = ContentSerdes();
const inputValue = 'foo';

final content = contentSerdes.valueToContent(
DataSchemaValue.fromString(inputValue),
null,
);

expect(await content.toByteList(), [34, 102, 111, 111, 34]);
expect(content.type, 'application/json');
});
});
}

0 comments on commit 7b2a9d8

Please sign in to comment.