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
jaroslav@611
     1
/**
jaroslav@611
     2
 * Back 2 Browser Bytecode Translator
jaroslav@611
     3
 * Copyright (C) 2012 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@611
    24
import org.apidesign.bck2brwsr.vmtest.Compare;
jaroslav@611
    25
import org.apidesign.bck2brwsr.vmtest.VMTest;
jaroslav@611
    26
import org.testng.annotations.Factory;
jaroslav@611
    27
jaroslav@611
    28
/**
jaroslav@611
    29
 *
jaroslav@611
    30
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@611
    31
 */
jaroslav@611
    32
public class ZipFileTest {
jaroslav@611
    33
    
jaroslav@611
    34
    @GenerateZip(name = "readAnEntry.zip", contents = { "my/main/file.txt", "Hello World!" })
jaroslav@611
    35
    @Compare public String readAnEntry() throws IOException {
jaroslav@611
    36
        InputStream is = ZipFileTest.class.getResourceAsStream("readAnEntry.zip");
jaroslav@611
    37
        ZipInputStream zip = new ZipInputStream(is);
jaroslav@611
    38
        ZipEntry entry = zip.getNextEntry();
jaroslav@611
    39
        assertEquals(entry.getName(), "my/main/file.txt", "Correct entry");
jaroslav@611
    40
        
jaroslav@611
    41
        byte[] arr = new byte[4096];
jaroslav@611
    42
        int len = zip.read(arr);
jaroslav@611
    43
        
jaroslav@611
    44
        return new String(arr, 0, len, "UTF-8");
jaroslav@611
    45
    }
jaroslav@611
    46
jaroslav@611
    47
    private static void assertEquals(String real, String exp, String msg) {
jaroslav@611
    48
        assert exp.equals(real) : msg + " exp: " + exp + " real: " + real;
jaroslav@611
    49
    }
jaroslav@611
    50
    
jaroslav@611
    51
    @Factory public static Object[] create() {
jaroslav@611
    52
        return VMTest.create(ZipFileTest.class);
jaroslav@611
    53
    }
jaroslav@611
    54
}