rt/emul/zip/src/test/java/org/apidesign/bck2brwsr/vmtest/impl/ZipEntryTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Feb 2015 11:12:53 +0100
changeset 1787 ea12a3bb4b33
parent 1551 0002739b6d1f
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 org.apidesign.bck2brwsr.emul.zip.FastJar;
    23 import org.testng.annotations.Test;
    24 import static org.testng.Assert.*;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 @GenerateZip(name = "five.zip", contents = {
    31     "1.txt", "one",
    32     "2.txt", "duo",
    33     "3.txt", "three",
    34     "4.txt", "four",
    35     "5.txt", "five"
    36 })
    37 public class ZipEntryTest {
    38     @Test
    39     public void readEntriesEffectively() throws IOException {
    40         InputStream is = ZipEntryTest.class.getResourceAsStream("five.zip");
    41         byte[] arr = new byte[is.available()];
    42         int len = is.read(arr);
    43         assertEquals(len, arr.length, "Read fully");
    44         
    45         FastJar fj = new FastJar(arr);
    46         FastJar.Entry[] entrs = fj.list();
    47         
    48         assertEquals(5, entrs.length, "Five entries");
    49         
    50         for (int i = 1; i <= 5; i++) {
    51             FastJar.Entry en = entrs[i - 1];
    52             assertEquals(en.name, i + ".txt");
    53 //            assertEquals(cis.cnt, 0, "Content of the file should be skipped, not read");
    54         }
    55         
    56         assertContent("three", fj.getInputStream(entrs[3 - 1]), "read OK");
    57         assertContent("five", fj.getInputStream(entrs[5 - 1]), "read OK");
    58     }
    59 
    60     private static void assertContent(String exp, InputStream is, String msg) throws IOException {
    61         byte[] arr = new byte[512];
    62         int len = is.read(arr);
    63         String s = new String(arr, 0, len);
    64         assertEquals(exp, s, msg);
    65     }
    66 }