rt/emul/zip/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/ZipFileTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Feb 2015 11:12:53 +0100
changeset 1787 ea12a3bb4b33
parent 1570 da1461555fb5
permissions -rw-r--r--
Using year range 2012-2015 in copyright header
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 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.zip.ZipEntry;
    23 import java.util.zip.ZipInputStream;
    24 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    25 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    26 import org.apidesign.bck2brwsr.vmtest.Compare;
    27 import org.apidesign.bck2brwsr.vmtest.Http;
    28 import org.apidesign.bck2brwsr.vmtest.VMTest;
    29 import org.testng.annotations.Factory;
    30 
    31 /**
    32  *
    33  * @author Jaroslav Tulach <jtulach@netbeans.org>
    34  */
    35 @GenerateZip(name = "readAnEntry.zip", contents = { 
    36     "my/main/file.txt", "Hello World!"
    37 })
    38 public class ZipFileTest {
    39     
    40     @Compare public String readAnEntry() throws IOException {
    41         InputStream is = ZipFileTest.class.getResourceAsStream("readAnEntry.zip");
    42         ZipInputStream zip = new ZipInputStream(is);
    43         ZipEntry entry = zip.getNextEntry();
    44         assertEquals(entry.getName(), "my/main/file.txt", "Correct entry");
    45 
    46         byte[] arr = new byte[4096];
    47         int len = zip.read(arr);
    48         
    49         assertEquals(zip.getNextEntry(), null, "No next entry");
    50         
    51         final String ret = new String(arr, 0, len, "UTF-8");
    52         return ret;
    53     }
    54     
    55     @JavaScriptBody(args = { "res", "path" }, body = 
    56           "var myvm = bck2brwsr.apply(null, path);\n"
    57         + "var cls = myvm['loadClass']('java.lang.String');\n"
    58         + "return cls['getClass__Ljava_lang_Class_2']()['getResourceAsStream__Ljava_io_InputStream_2Ljava_lang_String_2'](res);\n"
    59     )
    60     private static native Object loadVMResource(String res, String...path);
    61 
    62     @Http({
    63         @Http.Resource(path = "/readAnEntry.jar", mimeType = "x-application/zip", content = "", resource="readAnEntry.zip")
    64     })
    65     @BrwsrTest  public void canVmLoadResourceFromZip() throws IOException {
    66         Object res = loadVMResource("/my/main/file.txt", "/readAnEntry.jar");
    67         assert res instanceof InputStream : "Got array of bytes: " + res;
    68         InputStream is = (InputStream)res;
    69         
    70         byte[] arr = new byte[4096];
    71         int len = is.read(arr);
    72         
    73         final String ret = new String(arr, 0, len, "UTF-8");
    74 
    75         assertEquals(ret, "Hello World!", "Can read the bytes");
    76     }
    77     
    78     @GenerateZip(name = "cpattr.zip", contents = { 
    79         "META-INF/MANIFEST.MF", "Manifest-Version: 1.0\n"
    80         + "Created-By: hand\n"
    81         + "Class-Path: realJar.jar\n\n\n"
    82     })
    83     @Http({
    84         @Http.Resource(path = "/readComplexEntry.jar", mimeType = "x-application/zip", content = "", resource="cpattr.zip"),
    85         @Http.Resource(path = "/realJar.jar", mimeType = "x-application/zip", content = "", resource="readAnEntry.zip"),
    86     })
    87     @BrwsrTest  public void understandsClassPathAttr() throws IOException {
    88         Object res = loadVMResource("/my/main/file.txt", "/readComplexEntry.jar");
    89         assert res instanceof InputStream : "Got array of bytes: " + res;
    90         InputStream is = (InputStream)res;
    91         
    92         byte[] arr = new byte[4096];
    93         int len = is.read(arr);
    94         
    95         final String ret = new String(arr, 0, len, "UTF-8");
    96 
    97         assertEquals(ret, "Hello World!", "Can read the bytes from secondary JAR");
    98     }
    99     
   100     private static void assertEquals(Object real, Object exp, String msg) {
   101         if (real == null) {
   102             if (exp == null) {
   103                 return;
   104             }
   105         } else {
   106             if (real.equals(exp)) {
   107                 return;
   108             }
   109         }
   110         assert false : msg + " exp: " + exp + " real: " + real;
   111     }
   112     
   113     @Factory public static Object[] create() {
   114         return VMTest.create(ZipFileTest.class);
   115     }
   116 }