rt/emul/zip/src/test/java/org/apidesign/bck2brwsr/emul/zip/ZipCompatibilityTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Feb 2015 11:12:53 +0100
changeset 1787 ea12a3bb4b33
parent 1549 3f4c143ff8f0
permissions -rw-r--r--
Using year range 2012-2015 in copyright header
jaroslav@686
     1
/**
jaroslav@686
     2
 * Back 2 Browser Bytecode Translator
jaroslav@1787
     3
 * Copyright (C) 2012-2015 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@1549
    18
package org.apidesign.bck2brwsr.emul.zip;
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@982
    33
        InputStream is = getClass().getResourceAsStream("demo.static.calculator-TEST.jar");
jaroslav@694
    34
        ZipArchive zip = ZipArchive.createZip(is);
jaroslav@801
    35
        final String ts = zip.toString();
jaroslav@801
    36
        return ts.substring(0, 4096) + ts.hashCode();
jaroslav@686
    37
    }
jaroslav@686
    38
    
jaroslav@686
    39
    @Factory
jaroslav@686
    40
    public static Object[] create() {
jaroslav@686
    41
        return VMTest.create(ZipCompatibilityTest.class);
jaroslav@686
    42
    }
jaroslav@686
    43
}