From 9dfac47f0562128b6772cfb5b5ed52efe5d12f4b Mon Sep 17 00:00:00 2001 From: "adrian.f.cole" Date: Thu, 30 Apr 2009 13:24:39 +0000 Subject: [PATCH] set default mime type git-svn-id: http://jclouds.googlecode.com/svn/trunk@71 3d8758e0-26b5-11de-8745-db77d3ebf521 --- .../org/jclouds/aws/s3/domain/S3Object.java | 122 ++++++++++-------- .../jclouds/aws/s3/domain/S3ObjectTest.java | 43 ++++++ 2 files changed, 113 insertions(+), 52 deletions(-) create mode 100644 s3/src/test/java/org/jclouds/aws/s3/domain/S3ObjectTest.java diff --git a/s3/src/main/java/org/jclouds/aws/s3/domain/S3Object.java b/s3/src/main/java/org/jclouds/aws/s3/domain/S3Object.java index 7e9a84a4af..f397b53b3f 100644 --- a/s3/src/main/java/org/jclouds/aws/s3/domain/S3Object.java +++ b/s3/src/main/java/org/jclouds/aws/s3/domain/S3Object.java @@ -24,142 +24,160 @@ package org.jclouds.aws.s3.domain; import org.joda.time.DateTime; -import org.jclouds.aws.s3.domain.S3Owner; /** * // TODO: Adrian: Document this! - * + * * @author Adrian Cole */ public class S3Object { public static final S3Object NOT_FOUND = new S3Object(); + public static final String UNKNOWN_MIME_TYPE = "application/x-unknown-mime-type"; + private String key; private DateTime lastModified; private String eTag; - private long size; + private long size = -1; private S3Owner owner; - private String contentType; - private String storageClass = "STANDARD"; //there is currently no other type. + private String contentType = UNKNOWN_MIME_TYPE; + private String storageClass = "STANDARD"; // there is currently no other + // type. private String contentMD5; private String server; private Object content; public String getKey() { - return key; + return key; } public void setKey(String key) { - this.key = key; + this.key = key; } public DateTime getLastModified() { - return lastModified; + return lastModified; } public void setLastModified(DateTime lastModified) { - this.lastModified = lastModified; + this.lastModified = lastModified; } public String getETag() { - return eTag; + return eTag; } public void setETag(String eTag) { - this.eTag = eTag; + this.eTag = eTag; } public long getSize() { - return size; + return size; } public void setSize(long size) { - this.size = size; + this.size = size; } public S3Owner getOwner() { - return owner; + return owner; } public void setOwner(S3Owner owner) { - this.owner = owner; + this.owner = owner; } public String getContentType() { - return contentType; + return contentType; } public void setContentType(String contentType) { - this.contentType = contentType; + this.contentType = contentType; } public String getStorageClass() { - return storageClass; + return storageClass; } public void setStorageClass(String storageClass) { - this.storageClass = storageClass; + this.storageClass = storageClass; } public String getContentMD5() { - return contentMD5; + return contentMD5; } public void setContentMD5(String contentMD5) { - this.contentMD5 = contentMD5; + this.contentMD5 = contentMD5; } public String getServer() { - return server; + return server; } public void setServer(String server) { - this.server = server; + this.server = server; } public Object getContent() { - return content; + return content; } public void setContent(Object content) { - this.content = content; + this.content = content; } @Override public boolean equals(Object o) { - if (this == o) return true; - if (!(o instanceof S3Object)) return false; + if (this == o) + return true; + if (!(o instanceof S3Object)) + return false; - S3Object s3Object = (S3Object) o; + S3Object s3Object = (S3Object) o; - if (size != s3Object.size) return false; - if (contentMD5 != null ? !contentMD5.equals(s3Object.contentMD5) : s3Object.contentMD5 != null) return false; - if (contentType != null ? !contentType.equals(s3Object.contentType) : s3Object.contentType != null) - return false; - if (eTag != null ? !eTag.equals(s3Object.eTag) : s3Object.eTag != null) return false; - if (!key.equals(s3Object.key)) return false; - if (lastModified != null ? !lastModified.equals(s3Object.lastModified) : s3Object.lastModified != null) - return false; - if (owner != null ? !owner.equals(s3Object.owner) : s3Object.owner != null) return false; - if (server != null ? !server.equals(s3Object.server) : s3Object.server != null) return false; - if (storageClass != null ? !storageClass.equals(s3Object.storageClass) : s3Object.storageClass != null) - return false; + if (size != s3Object.size) + return false; + if (contentMD5 != null ? !contentMD5.equals(s3Object.contentMD5) + : s3Object.contentMD5 != null) + return false; + if (contentType != null ? !contentType.equals(s3Object.contentType) + : s3Object.contentType != null) + return false; + if (eTag != null ? !eTag.equals(s3Object.eTag) : s3Object.eTag != null) + return false; + if (!key.equals(s3Object.key)) + return false; + if (lastModified != null ? !lastModified.equals(s3Object.lastModified) + : s3Object.lastModified != null) + return false; + if (owner != null ? !owner.equals(s3Object.owner) + : s3Object.owner != null) + return false; + if (server != null ? !server.equals(s3Object.server) + : s3Object.server != null) + return false; + if (storageClass != null ? !storageClass.equals(s3Object.storageClass) + : s3Object.storageClass != null) + return false; - return true; + return true; } @Override public int hashCode() { - int result = key.hashCode(); - result = 31 * result + (lastModified != null ? lastModified.hashCode() : 0); - result = 31 * result + (eTag != null ? eTag.hashCode() : 0); - result = 31 * result + (int) (size ^ (size >>> 32)); - result = 31 * result + (owner != null ? owner.hashCode() : 0); - result = 31 * result + (contentType != null ? contentType.hashCode() : 0); - result = 31 * result + (storageClass != null ? storageClass.hashCode() : 0); - result = 31 * result + (contentMD5 != null ? contentMD5.hashCode() : 0); - result = 31 * result + (server != null ? server.hashCode() : 0); - return result; + int result = key.hashCode(); + result = 31 * result + + (lastModified != null ? lastModified.hashCode() : 0); + result = 31 * result + (eTag != null ? eTag.hashCode() : 0); + result = 31 * result + (int) (size ^ (size >>> 32)); + result = 31 * result + (owner != null ? owner.hashCode() : 0); + result = 31 * result + + (contentType != null ? contentType.hashCode() : 0); + result = 31 * result + + (storageClass != null ? storageClass.hashCode() : 0); + result = 31 * result + (contentMD5 != null ? contentMD5.hashCode() : 0); + result = 31 * result + (server != null ? server.hashCode() : 0); + return result; } } - diff --git a/s3/src/test/java/org/jclouds/aws/s3/domain/S3ObjectTest.java b/s3/src/test/java/org/jclouds/aws/s3/domain/S3ObjectTest.java new file mode 100644 index 0000000000..44a688a3b9 --- /dev/null +++ b/s3/src/test/java/org/jclouds/aws/s3/domain/S3ObjectTest.java @@ -0,0 +1,43 @@ +/** + * + * Copyright (C) 2009 Adrian Cole + * + * ==================================================================== + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * ==================================================================== + */ +package org.jclouds.aws.s3.domain; + +import java.io.File; + +import junit.framework.Assert; + +import org.jclouds.aws.s3.domain.S3Object; +import org.testng.annotations.Test; + +@Test +public class S3ObjectTest { + + @Test + void testSetNoContentType(){ + S3Object object = new S3Object(); + File file = new File("hello.txt"); + object.setContent(file); + Assert.assertEquals(object.getContentType(), S3Object.UNKNOWN_MIME_TYPE); + } +}