Removed dependence on Java 6 when copying S3Object MD5 data -- and tested

git-svn-id: http://jclouds.googlecode.com/svn/trunk@817 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
jamurty 2009-05-20 23:13:30 +00:00
parent 0ad7ca2138
commit d667c6e562
2 changed files with 20 additions and 2 deletions

View File

@ -216,14 +216,21 @@ public class S3Object {
}
public void setMd5(byte[] md5) {
this.md5 = Arrays.copyOf(md5, md5.length);
this.md5 = new byte[md5.length];
System.arraycopy(md5, 0, this.md5, 0, md5.length);
}
/**
* @return the md5 value stored in the Etag header returned by S3.
*/
public byte[] getMd5() {
return (md5 == null) ? null : Arrays.copyOf(md5, md5.length);
if (md5 != null) {
byte[] retval = new byte[md5.length];
System.arraycopy(this.md5, 0, retval, 0, md5.length);
return retval;
} else {
return null;
}
}
public void setUserMetadata(Multimap<String, String> userMetadata) {

View File

@ -25,6 +25,7 @@ package org.jclouds.aws.s3.domain;
import org.jclouds.http.ContentTypes;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotSame;
import org.testng.annotations.Test;
import java.io.File;
@ -40,4 +41,14 @@ public class S3ObjectTest {
assertEquals(object.getMetadata().getContentType(),
ContentTypes.BINARY);
}
@Test
void testMd5CopyingNotReference() {
byte[] md5 = new byte[12];
S3Object object = new S3Object("test");
object.getMetadata().setMd5(md5);
byte[] returnedMd5 = object.getMetadata().getMd5();
assertNotSame(md5, returnedMd5);
}
}