/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.test.capedwarf.blobstore.test; import java.io.IOException; import java.net.URL; import java.nio.ByteBuffer; import java.security.MessageDigest; import com.google.appengine.api.blobstore.BlobInfo; import com.google.appengine.api.blobstore.BlobKey; import com.google.appengine.api.blobstore.FileInfo; import com.google.appengine.api.files.AppEngineFile; import com.google.appengine.api.files.FileReadChannel; import com.google.appengine.api.files.FileService; import com.google.appengine.api.files.FileServiceFactory; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.junit.InSequence; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.Archive; import org.jboss.test.capedwarf.blobstore.support.FileUploader; import org.jboss.test.capedwarf.blobstore.support.UploadHandlerServlet; import org.jboss.test.capedwarf.blobstore.support.UploadUrlServerServlet; import org.jboss.test.capedwarf.common.support.All; import org.jboss.test.capedwarf.common.test.TestBase; import org.jboss.test.capedwarf.common.test.TestContext; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; /** * @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a> * @author <a href="mailto:mluksa@redhat.com">Marko Luksa</a> */ @RunWith(Arquillian.class) @Category(All.class) public class BlobstoreUploadTest extends TestBase { private static final char[] Hexadecimal = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; public static final String FILENAME = "uploadedFile.txt"; public static final String CONTENT_TYPE = "text/plain"; public static final byte[] UPLOADED_CONTENT = "uploaded content".getBytes(); public static final String MD5_HASH; static String toHexString(byte[] bytes) { final char[] chars = new char[bytes.length * 2]; for (int b = 0, c = 0; b < bytes.length; b++) { int v = (int) bytes[b] & 0xFF; chars[c++] = Hexadecimal[v / 16]; chars[c++] = Hexadecimal[v % 16]; } return new String(chars); } static { try { MessageDigest md = MessageDigest.getInstance("MD5"); MD5_HASH = toHexString(md.digest(UPLOADED_CONTENT)); } catch (Throwable t) { throw new RuntimeException(t); } } @Deployment public static Archive getDeployment() { TestContext testContext = TestContext.asDefault().setWebXmlFile("upload_blob_web.xml"); return getCapedwarfDeployment(testContext) .addClass(FileUploader.class) .addClass(UploadUrlServerServlet.class) .addClass(UploadHandlerServlet.class); } @Test @RunAsClient @InSequence(10) public void testUploadedFileHasCorrectContent_upload(@ArquillianResource URL url) throws Exception { FileUploader fileUploader = new FileUploader(); String uploadUrl = fileUploader.getUploadUrl(new URL(url, "getUploadUrl")); fileUploader.uploadFile(uploadUrl, "file", FILENAME, CONTENT_TYPE, UPLOADED_CONTENT); } @Test @InSequence(20) public void testUploadedFileHasCorrectContent_assert() throws Exception { BlobKey blobKey = UploadHandlerServlet.getLastUploadedBlobKey(); assertNotNull("blobKey should not be null", blobKey); String contents = getFileContents(blobKey); assertEquals(new String(UPLOADED_CONTENT), contents); BlobInfo blobInfo = UploadHandlerServlet.getLastUploadedBlobInfo(); assertNotNull("blobInfo should not be null", blobInfo); assertEquals(blobKey, blobInfo.getBlobKey()); assertEquals(FILENAME, blobInfo.getFilename()); assertEquals(CONTENT_TYPE, blobInfo.getContentType()); assertEquals(UPLOADED_CONTENT.length, blobInfo.getSize()); assertEquals(MD5_HASH, blobInfo.getMd5Hash()); FileInfo fileInfo = UploadHandlerServlet.getLastUploadedFileInfo(); assertNotNull("fileInfo should not be null", fileInfo); assertEquals(FILENAME, fileInfo.getFilename()); assertEquals(CONTENT_TYPE, fileInfo.getContentType()); assertEquals(UPLOADED_CONTENT.length, fileInfo.getSize()); assertEquals(MD5_HASH, fileInfo.getMd5Hash()); } @Test @InSequence(30) public void resetUploadHandlerServlet() throws Exception { UploadHandlerServlet.reset(); } @Test @RunAsClient @InSequence(40) public void testSubmitMultipartFormWithoutFile_upload(@ArquillianResource URL url) throws Exception { FileUploader fileUploader = new FileUploader(); String uploadUrl = fileUploader.getUploadUrl(new URL(url, "getUploadUrl")); fileUploader.uploadWithoutFile(uploadUrl, "file"); } @Test @InSequence(50) public void testSubmitMultipartFormWithoutFile_assert() throws Exception { assertNull("blobKey should be null", UploadHandlerServlet.getLastUploadedBlobKey()); assertNull("blobInfo should be null", UploadHandlerServlet.getLastUploadedBlobInfo()); assertNull("fileInfo should be null", UploadHandlerServlet.getLastUploadedFileInfo()); } private String getFileContents(BlobKey blobKey) throws IOException { AppEngineFile file = getAppEngineFile(blobKey); return getFileContents(file); } private AppEngineFile getAppEngineFile(BlobKey blobKey) { FileService fileService = FileServiceFactory.getFileService(); return fileService.getBlobFile(blobKey); } private String getFileContents(AppEngineFile file) throws IOException { FileReadChannel channel = FileServiceFactory.getFileService().openReadChannel(file, true); try { return getStringFromChannel(channel, 1000); } finally { channel.close(); } } private String getStringFromChannel(FileReadChannel channel, int length) throws IOException { ByteBuffer buffer = ByteBuffer.allocate(length); int bytesRead = channel.read(buffer); byte[] bytes = new byte[bytesRead == -1 ? 0 : bytesRead]; buffer.flip(); buffer.get(bytes); return new String(bytes); } }