48
48
import java .util .Arrays ;
49
49
import java .util .List ;
50
50
import java .util .Optional ;
51
+ import java .util .function .Supplier ;
52
+ import java .util .stream .Stream ;
51
53
import javax .annotation .Nullable ;
52
54
import javax .annotation .processing .Generated ;
53
55
import org .assertj .core .api .InstanceOfAssertFactories ;
54
56
import org .junit .jupiter .api .Test ;
55
57
import org .junit .jupiter .api .extension .ExtendWith ;
58
+ import org .junit .jupiter .api .extension .ExtensionContext ;
56
59
import org .junit .jupiter .params .ParameterizedTest ;
60
+ import org .junit .jupiter .params .provider .Arguments ;
61
+ import org .junit .jupiter .params .provider .ArgumentsProvider ;
62
+ import org .junit .jupiter .params .provider .ArgumentsSource ;
57
63
import org .junit .jupiter .params .provider .ValueSource ;
58
64
import org .mockito .junit .jupiter .MockitoExtension ;
59
65
@@ -78,6 +84,9 @@ private sealed interface EndpointReturnBaseType permits ExpectedReturnValue, Err
78
84
@ Generated ("by conjure-java" )
79
85
private sealed interface EndpointBinaryReturnBaseType permits BinaryReturnValue , ErrorReturnValue {}
80
86
87
+ @ Generated ("by conjure-java" )
88
+ private sealed interface EndpointOptionalBinaryReturnBaseType permits OptionalBinaryReturnValue , ErrorReturnValue {}
89
+
81
90
@ Generated ("by conjure-java" )
82
91
record ExpectedReturnValue (String value ) implements EndpointReturnBaseType {
83
92
@ JsonCreator
@@ -93,6 +102,13 @@ record BinaryReturnValue(@MustBeClosed InputStream value) implements EndpointBin
93
102
}
94
103
}
95
104
105
+ @ Generated ("by conjure-java" )
106
+ record OptionalBinaryReturnValue (Optional <InputStream > value ) implements EndpointOptionalBinaryReturnBaseType {
107
+ public OptionalBinaryReturnValue {
108
+ Preconditions .checkArgumentNotNull (value , "value cannot be null" );
109
+ }
110
+ }
111
+
96
112
@ Generated ("by conjure-java" )
97
113
record ComplexArg (int foo , String bar ) {}
98
114
@@ -106,7 +122,8 @@ record ErrorForEndpointArgs(
106
122
static final class ErrorReturnValue extends EndpointError <ErrorForEndpointArgs >
107
123
implements EndpointErrorsConjureBodySerDeTest .EndpointReturnBaseType ,
108
124
EndpointErrorsConjureBodySerDeTest .EmptyBodyEndpointReturnBaseType ,
109
- EndpointErrorsConjureBodySerDeTest .EndpointBinaryReturnBaseType {
125
+ EndpointErrorsConjureBodySerDeTest .EndpointBinaryReturnBaseType ,
126
+ EndpointErrorsConjureBodySerDeTest .EndpointOptionalBinaryReturnBaseType {
110
127
@ JsonCreator
111
128
ErrorReturnValue (
112
129
@ JsonProperty ("errorCode" ) String errorCode ,
@@ -235,12 +252,13 @@ public void testDeserializeExpectedValue() {
235
252
assertThat (value ).isEqualTo (new ExpectedReturnValue (expectedString ));
236
253
}
237
254
238
- @ Test
239
- public void testDeserializeBinaryValue () {
255
+ @ ParameterizedTest
256
+ @ ArgumentsSource (BinaryBodyArgumentsProvider .class )
257
+ public void testDeserializeBinaryValue (byte [] binaryBody ) {
240
258
// Given
241
- byte [] is = new byte [] { 1 , 2 , 3 };
242
- TestResponse response =
243
- new TestResponse ( is ). contentType ( "application/octet-stream" ) .code (200 );
259
+ TestResponse response = new TestResponse ( binaryBody )
260
+ . contentType ( "application/octet-stream" )
261
+ .code (200 );
244
262
// BodySerDe serializers = conjureBodySerDe("application/octet-stream", "text/plain");
245
263
246
264
BodySerDe serializers = new ConjureBodySerDe (
@@ -259,14 +277,84 @@ public void testDeserializeBinaryValue() {
259
277
serializers .inputStreamDeserializer (deserializerArgs ).deserialize (response );
260
278
// Then
261
279
assertThat (value ).isInstanceOfSatisfying (BinaryReturnValue .class , binaryReturnValue -> {
262
- try {
263
- assertThat (binaryReturnValue .value .readAllBytes ()).isEqualTo (is );
264
- } catch (IOException e ) {
265
- throw new RuntimeException (e );
266
- }
280
+ assertThat (EndpointErrorsConjureBodySerDeTest .readAllBytesUnchecked (binaryReturnValue ::value ))
281
+ .isEqualTo (binaryBody );
282
+ });
283
+ }
284
+
285
+ @ ParameterizedTest
286
+ @ ArgumentsSource (BinaryBodyArgumentsProvider .class )
287
+ public void testDeserializeOptionalBinaryValuePresent (byte [] binaryBody ) {
288
+ // Given
289
+ TestResponse response = new TestResponse (binaryBody )
290
+ .contentType ("application/octet-stream" )
291
+ .code (200 );
292
+ // BodySerDe serializers = conjureBodySerDe("application/octet-stream", "text/plain");
293
+
294
+ BodySerDe serializers = new ConjureBodySerDe (
295
+ ImmutableList .of (WeightedEncoding .of (BinaryEncoding .INSTANCE )),
296
+ Encodings .emptyContainerDeserializer (),
297
+ DefaultConjureRuntime .DEFAULT_SERDE_CACHE_SPEC );
298
+
299
+ DeserializerArgs <EndpointOptionalBinaryReturnBaseType > deserializerArgs =
300
+ DeserializerArgs .<EndpointOptionalBinaryReturnBaseType >builder ()
301
+ .baseType (new TypeMarker <>() {})
302
+ .success (new TypeMarker <OptionalBinaryReturnValue >() {})
303
+ .error ("Default:FailedPrecondition" , new TypeMarker <ErrorReturnValue >() {})
304
+ .build ();
305
+ // When
306
+ EndpointOptionalBinaryReturnBaseType value =
307
+ serializers .optionalInputStreamDeserializer (deserializerArgs ).deserialize (response );
308
+ // Then
309
+ assertThat (value ).isInstanceOfSatisfying (OptionalBinaryReturnValue .class , optionalBinaryReturnValue -> {
310
+ assertThat (optionalBinaryReturnValue .value ()).isPresent ();
311
+ assertThat (EndpointErrorsConjureBodySerDeTest .readAllBytesUnchecked (optionalBinaryReturnValue .value ()::get ))
312
+ .isEqualTo (binaryBody );
267
313
});
268
314
}
269
315
316
+ @ Test
317
+ public void testDeserializeOptionalBinaryValueError () throws JsonProcessingException {
318
+ // Given
319
+ TestEndpointError errorThrownByEndpoint =
320
+ new TestEndpointError ("value" , "unsafeValue" , new ComplexArg (1 , "bar" ), Optional .of (2 ), null );
321
+ String responseBody =
322
+ MAPPER .writeValueAsString (ConjureError .fromCheckedServiceException (errorThrownByEndpoint ));
323
+
324
+ TestResponse response = TestResponse .withBody (responseBody )
325
+ .contentType ("application/json" )
326
+ .code (500 );
327
+
328
+ BodySerDe serializers = new ConjureBodySerDe (
329
+ ImmutableList .of (WeightedEncoding .of (BinaryEncoding .INSTANCE )),
330
+ Encodings .emptyContainerDeserializer (),
331
+ DefaultConjureRuntime .DEFAULT_SERDE_CACHE_SPEC );
332
+
333
+ DeserializerArgs <EndpointOptionalBinaryReturnBaseType > deserializerArgs =
334
+ DeserializerArgs .<EndpointOptionalBinaryReturnBaseType >builder ()
335
+ .baseType (new TypeMarker <>() {})
336
+ .success (new TypeMarker <OptionalBinaryReturnValue >() {})
337
+ .error ("Default:FailedPrecondition" , new TypeMarker <ErrorReturnValue >() {})
338
+ .build ();
339
+ // When
340
+ EndpointOptionalBinaryReturnBaseType value =
341
+ serializers .optionalInputStreamDeserializer (deserializerArgs ).deserialize (response );
342
+ // Then
343
+ ErrorReturnValue expectedErrorForEndpoint = new ErrorReturnValue (
344
+ ErrorType .FAILED_PRECONDITION .code ().name (),
345
+ ErrorType .FAILED_PRECONDITION .name (),
346
+ errorThrownByEndpoint .getErrorInstanceId (),
347
+ new ErrorForEndpointArgs ("value" , "unsafeValue" , new ComplexArg (1 , "bar" ), Optional .of (2 )));
348
+ assertThat (value ).isInstanceOf (ErrorReturnValue .class );
349
+ assertThat (value )
350
+ .extracting ("errorCode" , "errorName" , "errorInstanceId" , "args" )
351
+ .containsExactly (
352
+ expectedErrorForEndpoint .errorCode ,
353
+ expectedErrorForEndpoint .errorName ,
354
+ expectedErrorForEndpoint .errorInstanceId ,
355
+ expectedErrorForEndpoint .args );
356
+ }
357
+
270
358
@ Test
271
359
public void testDeserializeEmptyBody () {
272
360
// Given
@@ -316,11 +404,18 @@ public void testDeserializeWithCustomEncoding() throws JsonProcessingException {
316
404
317
405
// Then
318
406
assertThat (stubbingEncoding .getDeserializer (errorTypeMarker ))
319
- .isInstanceOfSatisfying (ContentRecordingJsonDeserializer .class , deserializer -> {
320
- assertThat (deserializer .getDeserializedContent ())
321
- .asInstanceOf (InstanceOfAssertFactories .LIST )
322
- .containsExactly (responseBody );
323
- });
407
+ .isInstanceOfSatisfying (ContentRecordingJsonDeserializer .class , deserializer -> assertThat (
408
+ deserializer .getDeserializedContent ())
409
+ .asInstanceOf (InstanceOfAssertFactories .LIST )
410
+ .containsExactly (responseBody ));
411
+ }
412
+
413
+ private static byte [] readAllBytesUnchecked (Supplier <InputStream > stream ) {
414
+ try (InputStream is = stream .get ()) {
415
+ return is .readAllBytes ();
416
+ } catch (IOException e ) {
417
+ throw new RuntimeException (e );
418
+ }
324
419
}
325
420
326
421
private ConjureBodySerDe conjureBodySerDe (String ... contentTypes ) {
@@ -331,4 +426,11 @@ private ConjureBodySerDe conjureBodySerDe(String... contentTypes) {
331
426
Encodings .emptyContainerDeserializer (),
332
427
DefaultConjureRuntime .DEFAULT_SERDE_CACHE_SPEC );
333
428
}
429
+
430
+ private static final class BinaryBodyArgumentsProvider implements ArgumentsProvider {
431
+ @ Override
432
+ public Stream <? extends Arguments > provideArguments (ExtensionContext _context ) {
433
+ return Stream .of (Arguments .of ((Object ) new byte [] {1 , 2 , 3 }), Arguments .of ((Object ) new byte [] {}));
434
+ }
435
+ }
334
436
}
0 commit comments