vmtest/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/ZipFileTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Jan 2013 14:03:49 +0100
branchemul
changeset 611 9839e9a75bcf
child 640 693745d01b55
permissions -rw-r--r--
Implementation of ZipInputStream
     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.zip.ZipEntry;
    23 import java.util.zip.ZipInputStream;
    24 import org.apidesign.bck2brwsr.vmtest.Compare;
    25 import org.apidesign.bck2brwsr.vmtest.VMTest;
    26 import org.testng.annotations.Factory;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public class ZipFileTest {
    33     
    34     @GenerateZip(name = "readAnEntry.zip", contents = { "my/main/file.txt", "Hello World!" })
    35     @Compare public String readAnEntry() throws IOException {
    36         InputStream is = ZipFileTest.class.getResourceAsStream("readAnEntry.zip");
    37         ZipInputStream zip = new ZipInputStream(is);
    38         ZipEntry entry = zip.getNextEntry();
    39         assertEquals(entry.getName(), "my/main/file.txt", "Correct entry");
    40         
    41         byte[] arr = new byte[4096];
    42         int len = zip.read(arr);
    43         
    44         return new String(arr, 0, len, "UTF-8");
    45     }
    46 
    47     private static void assertEquals(String real, String exp, String msg) {
    48         assert exp.equals(real) : msg + " exp: " + exp + " real: " + real;
    49     }
    50     
    51     @Factory public static Object[] create() {
    52         return VMTest.create(ZipFileTest.class);
    53     }
    54 }