vmtest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/ZipFileTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 11 Feb 2013 19:55:00 +0100
branchemul
changeset 711 333326d65bf9
parent 672 add357fd6c5c
child 729 1ee59fe94653
permissions -rw-r--r--
Allows two isolated bck2brwsr VM in a single JavaScript page/context
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.vmtest.impl;
    19 
    20 import java.io.IOException;
    21 import java.io.InputStream;
    22 import java.util.Objects;
    23 import java.util.zip.ZipEntry;
    24 import java.util.zip.ZipInputStream;
    25 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    26 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    27 import org.apidesign.bck2brwsr.vmtest.Compare;
    28 import org.apidesign.bck2brwsr.vmtest.Http;
    29 import org.apidesign.bck2brwsr.vmtest.VMTest;
    30 import org.testng.annotations.Factory;
    31 
    32 /**
    33  *
    34  * @author Jaroslav Tulach <jtulach@netbeans.org>
    35  */
    36 @GenerateZip(name = "readAnEntry.zip", contents = { 
    37     "my/main/file.txt", "Hello World!"
    38 })
    39 public class ZipFileTest {
    40     
    41     @Compare public String readAnEntry() throws IOException {
    42         InputStream is = ZipFileTest.class.getResourceAsStream("readAnEntry.zip");
    43         ZipInputStream zip = new ZipInputStream(is);
    44         ZipEntry entry = zip.getNextEntry();
    45         assertEquals(entry.getName(), "my/main/file.txt", "Correct entry");
    46 
    47         byte[] arr = new byte[4096];
    48         int len = zip.read(arr);
    49         
    50         assertEquals(zip.getNextEntry(), null, "No next entry");
    51         
    52         final String ret = new String(arr, 0, len, "UTF-8");
    53         return ret;
    54     }
    55     
    56     @JavaScriptBody(args = { "res", "path" }, body = 
    57           "var myvm = bck2brwsr(path);\n"
    58         + "var cls = myvm.loadClass('java.lang.String');\n"
    59         + "return cls.getClass__Ljava_lang_Class_2().getResourceAsStream__Ljava_io_InputStream_2Ljava_lang_String_2(res);\n"
    60     )
    61     private static native Object loadVMResource(String res, String...path);
    62 
    63     @Http({
    64         @Http.Resource(path = "/readAnEntry.jar", mimeType = "x-application/zip", content = "", resource="readAnEntry.zip")
    65     })
    66     @BrwsrTest  public void canVmLoadResourceFromZip() throws IOException {
    67         Object res = loadVMResource("/my/main/file.txt", "/readAnEntry.jar");
    68         assert res instanceof InputStream : "Got array of bytes: " + res;
    69         InputStream is = (InputStream)res;
    70         
    71         byte[] arr = new byte[4096];
    72         int len = is.read(arr);
    73         
    74         final String ret = new String(arr, 0, len, "UTF-8");
    75 
    76         assertEquals(ret, "Hello World!", "Can read the bytes");
    77     }
    78     
    79     @GenerateZip(name = "cpattr.zip", contents = { 
    80         "META-INF/MANIFEST.MF", "Manifest-Version: 1.0\n"
    81         + "Created-By: hand\n"
    82         + "Class-Path: realJar.jar\n\n\n"
    83     })
    84     @Http({
    85         @Http.Resource(path = "/readComplexEntry.jar", mimeType = "x-application/zip", content = "", resource="cpattr.zip"),
    86         @Http.Resource(path = "/realJar.jar", mimeType = "x-application/zip", content = "", resource="readAnEntry.zip"),
    87     })
    88     @BrwsrTest  public void understandsClassPathAttr() throws IOException {
    89         Object res = loadVMResource("/my/main/file.txt", "/readComplexEntry.jar");
    90         assert res instanceof InputStream : "Got array of bytes: " + res;
    91         InputStream is = (InputStream)res;
    92         
    93         byte[] arr = new byte[4096];
    94         int len = is.read(arr);
    95         
    96         final String ret = new String(arr, 0, len, "UTF-8");
    97 
    98         assertEquals(ret, "Hello World!", "Can read the bytes from secondary JAR");
    99     }
   100     
   101     private static void assertEquals(Object real, Object exp, String msg) {
   102         assert Objects.equals(exp, real) : msg + " exp: " + exp + " real: " + real;
   103     }
   104     
   105     @Factory public static Object[] create() {
   106         return VMTest.create(ZipFileTest.class);
   107     }
   108 }