emul/compact/src/test/java/org/apidesign/bck2brwsr/compact/tck/ZipCompatibilityTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 12:58:12 +0100
branchemul
changeset 694 0d277415ed02
parent 686 63982243369c
permissions -rw-r--r--
Rebasing the Inflater support on jzlib which, unlike GNU ClassPath, has correct implementation of Huffman code. Making the implementation more easily testable by turning Inflater and ZipInputStream into pure delegates. Current implementation is going to need proper long support.
jaroslav@686
     1
/**
jaroslav@686
     2
 * Back 2 Browser Bytecode Translator
jaroslav@686
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@686
     4
 *
jaroslav@686
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@686
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@686
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@686
     8
 *
jaroslav@686
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@686
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@686
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@686
    12
 * GNU General Public License for more details.
jaroslav@686
    13
 *
jaroslav@686
    14
 * You should have received a copy of the GNU General Public License
jaroslav@686
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@686
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@686
    17
 */
jaroslav@686
    18
package org.apidesign.bck2brwsr.compact.tck;
jaroslav@686
    19
jaroslav@686
    20
import java.io.IOException;
jaroslav@686
    21
import java.io.InputStream;
jaroslav@686
    22
import org.apidesign.bck2brwsr.vmtest.Compare;
jaroslav@686
    23
import org.apidesign.bck2brwsr.vmtest.VMTest;
jaroslav@686
    24
import org.testng.annotations.Factory;
jaroslav@686
    25
jaroslav@686
    26
/**
jaroslav@686
    27
 *
jaroslav@686
    28
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@686
    29
 */
jaroslav@686
    30
public class ZipCompatibilityTest {
jaroslav@686
    31
    @Compare
jaroslav@686
    32
    public String testDemoStaticCalculator() throws IOException {
jaroslav@686
    33
        InputStream is = getClass().getResourceAsStream("demo.static.calculator-0.3-SNAPSHOT.jar");
jaroslav@694
    34
        ZipArchive zip = ZipArchive.createZip(is);
jaroslav@686
    35
        return zip.toString();
jaroslav@686
    36
    }
jaroslav@686
    37
    
jaroslav@686
    38
    @Factory
jaroslav@686
    39
    public static Object[] create() {
jaroslav@686
    40
        return VMTest.create(ZipCompatibilityTest.class);
jaroslav@686
    41
    }
jaroslav@686
    42
}