mirror of https://github.com/apache/jclouds.git
Change test to make sure contentDisposition is not null
This commit is contained in:
parent
1a3ae0c242
commit
b92d55bc05
|
@ -38,19 +38,17 @@ public class SwiftBlobIntegrationLiveTest extends BaseBlobIntegrationTest {
|
|||
// not supported in swift
|
||||
}
|
||||
|
||||
// not supported in swift
|
||||
// When testing against Swift Server 1.4.4/SWauth 1.0.3 the content dispositions are not null
|
||||
@Override
|
||||
protected void checkContentDisposition(Blob blob, String contentDisposition) {
|
||||
String payloadContentDisposition = blob.getPayload().getContentMetadata().getContentDisposition();
|
||||
if (payloadContentDisposition!=null) {
|
||||
assert payloadContentDisposition != null : "blob payload contentDisposition should not be null";
|
||||
assertEquals(contentDisposition, payloadContentDisposition);
|
||||
}
|
||||
|
||||
String blobContentDisposition = blob.getMetadata().getContentMetadata().getContentDisposition();
|
||||
if (payloadContentDisposition!=null) {
|
||||
assert blobContentDisposition != null : "blob metadata contentDisposition should not be null";
|
||||
assertEquals(contentDisposition, blobContentDisposition);
|
||||
}
|
||||
}
|
||||
|
||||
// not supported in swift
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue