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