rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/compact/tck/ZipCompatibilityTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 14 Apr 2013 20:21:25 +0200
changeset 982 23692e3faa73
parent 801 8b3a9f510a9b
permissions -rw-r--r--
Eliminate reference to some specific snapshot version, use TEST as a version
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@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
}