Merge pull request #24292 from ofaizulin/rd-httpmsgconv-fix-isr-contentlength
Closes gh-24292
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2019 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -83,6 +83,10 @@ public class ResourceDecoder extends AbstractDataBufferDecoder<Resource> {
|
|||||||
public String getFilename() {
|
public String getFilename() {
|
||||||
return filename;
|
return filename;
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
|
public long contentLength() {
|
||||||
|
return bytes.length;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
else if (Resource.class.isAssignableFrom(clazz)) {
|
else if (Resource.class.isAssignableFrom(clazz)) {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2019 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -82,10 +82,7 @@ class ResourceDecoderTests extends AbstractDecoderTests<ResourceDecoder> {
|
|||||||
@Override
|
@Override
|
||||||
@Test
|
@Test
|
||||||
public void decodeToMono() {
|
public void decodeToMono() {
|
||||||
Flux<DataBuffer> input = Flux.concat(
|
Flux<DataBuffer> input = Flux.concat(dataBuffer(this.fooBytes), dataBuffer(this.barBytes));
|
||||||
dataBuffer(this.fooBytes),
|
|
||||||
dataBuffer(this.barBytes));
|
|
||||||
|
|
||||||
testDecodeToMonoAll(input, ResolvableType.forClass(Resource.class),
|
testDecodeToMonoAll(input, ResolvableType.forClass(Resource.class),
|
||||||
step -> step
|
step -> step
|
||||||
.consumeNextWith(value -> {
|
.consumeNextWith(value -> {
|
||||||
@@ -105,4 +102,22 @@ class ResourceDecoderTests extends AbstractDecoderTests<ResourceDecoder> {
|
|||||||
Collections.singletonMap(ResourceDecoder.FILENAME_HINT, "testFile"));
|
Collections.singletonMap(ResourceDecoder.FILENAME_HINT, "testFile"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void decodeInputStreamResource() {
|
||||||
|
Flux<DataBuffer> input = Flux.concat(dataBuffer(this.fooBytes), dataBuffer(this.barBytes));
|
||||||
|
testDecodeAll(input, InputStreamResource.class, step -> step
|
||||||
|
.consumeNextWith(resource -> {
|
||||||
|
try {
|
||||||
|
byte[] bytes = StreamUtils.copyToByteArray(resource.getInputStream());
|
||||||
|
assertThat(new String(bytes)).isEqualTo("foobar");
|
||||||
|
assertThat(resource.contentLength()).isEqualTo(fooBytes.length + barBytes.length);
|
||||||
|
}
|
||||||
|
catch (IOException ex) {
|
||||||
|
throw new AssertionError(ex.getMessage(), ex);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.expectComplete()
|
||||||
|
.verify());
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -84,6 +84,11 @@ public class ResourceHttpMessageConverter extends AbstractHttpMessageConverter<R
|
|||||||
public String getFilename() {
|
public String getFilename() {
|
||||||
return inputMessage.getHeaders().getContentDisposition().getFilename();
|
return inputMessage.getHeaders().getContentDisposition().getFilename();
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
|
public long contentLength() throws IOException {
|
||||||
|
long length = inputMessage.getHeaders().getContentLength();
|
||||||
|
return (length != -1 ? length : super.contentLength());
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
else if (Resource.class == clazz || ByteArrayResource.class.isAssignableFrom(clazz)) {
|
else if (Resource.class == clazz || ByteArrayResource.class.isAssignableFrom(clazz)) {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2019 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -80,10 +80,12 @@ public class ResourceHttpMessageConverterTests {
|
|||||||
inputMessage.getHeaders().setContentType(MediaType.IMAGE_JPEG);
|
inputMessage.getHeaders().setContentType(MediaType.IMAGE_JPEG);
|
||||||
inputMessage.getHeaders().setContentDisposition(
|
inputMessage.getHeaders().setContentDisposition(
|
||||||
ContentDisposition.builder("attachment").filename("yourlogo.jpg").build());
|
ContentDisposition.builder("attachment").filename("yourlogo.jpg").build());
|
||||||
|
inputMessage.getHeaders().setContentLength(123);
|
||||||
Resource actualResource = converter.read(InputStreamResource.class, inputMessage);
|
Resource actualResource = converter.read(InputStreamResource.class, inputMessage);
|
||||||
assertThat(actualResource).isInstanceOf(InputStreamResource.class);
|
assertThat(actualResource).isInstanceOf(InputStreamResource.class);
|
||||||
assertThat(actualResource.getInputStream()).isEqualTo(body);
|
assertThat(actualResource.getInputStream()).isEqualTo(body);
|
||||||
assertThat(actualResource.getFilename()).isEqualTo("yourlogo.jpg");
|
assertThat(actualResource.getFilename()).isEqualTo("yourlogo.jpg");
|
||||||
|
assertThat(actualResource.contentLength()).isEqualTo(123);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user