rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/ResourcesTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Apr 2014 15:04:10 +0200
branchclosure
changeset 1513 ba912ef24b27
parent 1493 234fea368401
parent 1398 9926996eca2d
child 1600 824cb8b9c4f9
permissions -rw-r--r--
Merging from default branch and resolving conflicts. mvn install -DskipTests passes OK.
jaroslav@425
     1
/**
jaroslav@425
     2
 * Back 2 Browser Bytecode Translator
jaroslav@425
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@425
     4
 *
jaroslav@425
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@425
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@425
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@425
     8
 *
jaroslav@425
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@425
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@425
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@425
    12
 * GNU General Public License for more details.
jaroslav@425
    13
 *
jaroslav@425
    14
 * You should have received a copy of the GNU General Public License
jaroslav@425
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@425
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@424
    17
 */
jaroslav@424
    18
package org.apidesign.bck2brwsr.tck;
jaroslav@424
    19
jaroslav@1375
    20
import java.io.IOException;
jaroslav@424
    21
import java.io.InputStream;
jaroslav@1316
    22
import java.net.URL;
jaroslav@1375
    23
import java.util.Enumeration;
jaroslav@424
    24
import org.apidesign.bck2brwsr.vmtest.Compare;
jaroslav@424
    25
import org.apidesign.bck2brwsr.vmtest.VMTest;
jaroslav@424
    26
import org.testng.annotations.Factory;
jaroslav@424
    27
jaroslav@424
    28
/**
jaroslav@424
    29
 *
jaroslav@424
    30
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@424
    31
 */
jaroslav@424
    32
public class ResourcesTest {
jaroslav@1375
    33
    @Compare public String allManifests() throws Exception {
jaroslav@1375
    34
        Enumeration<URL> en = ClassLoader.getSystemResources("META-INF/MANIFEST.MF");
jaroslav@1375
    35
        assert en.hasMoreElements() : "Should have at least one manifest";
jaroslav@1375
    36
        String first = readString(en.nextElement().openStream());
jaroslav@1375
    37
        boolean different = false;
jaroslav@1375
    38
        int cnt = 1;
jaroslav@1375
    39
        while (en.hasMoreElements()) {
jaroslav@1375
    40
            URL url = en.nextElement();
jaroslav@1375
    41
            String now = readString(url.openStream());
jaroslav@1375
    42
            if (!first.equals(now)) {
jaroslav@1375
    43
                different = true;
jaroslav@1375
    44
            }
jaroslav@1375
    45
            cnt++;
jaroslav@1375
    46
            if (cnt > 500) {
jaroslav@1375
    47
                throw new IllegalStateException(
jaroslav@1375
    48
                    "Giving up. First manifest:\n" + first + 
jaroslav@1375
    49
                    "\nLast manifest:\n" + now
jaroslav@1375
    50
                );
jaroslav@1375
    51
            }
jaroslav@1375
    52
        }
jaroslav@1375
    53
        assert different : "Not all manifests should look like first one:\n" + first;
jaroslav@1375
    54
        return "" + cnt;
jaroslav@1375
    55
    }
jaroslav@424
    56
    
jaroslav@424
    57
    @Compare public String readResourceAsStream() throws Exception {
jaroslav@424
    58
        InputStream is = getClass().getResourceAsStream("Resources.txt");
jaroslav@1375
    59
        return readString(is);
jaroslav@1375
    60
    }
jaroslav@1398
    61
    
jaroslav@1398
    62
    @Compare public String readResourceViaConnection() throws Exception {
jaroslav@1398
    63
        InputStream is = getClass().getResource("Resources.txt").openConnection().getInputStream();
jaroslav@1398
    64
        return readString(is);
jaroslav@1398
    65
    }
jaroslav@1375
    66
jaroslav@1375
    67
    private String readString(InputStream is) throws IOException {
jaroslav@424
    68
        StringBuilder sb = new StringBuilder();
jaroslav@1375
    69
        byte[] b = new byte[512];
jaroslav@1375
    70
        for (;;) { 
jaroslav@1375
    71
            int len = is.read(b);
jaroslav@1375
    72
            if (len == -1) {
jaroslav@1375
    73
                return sb.toString();
jaroslav@1375
    74
            }
jaroslav@1375
    75
            for (int i = 0; i < len; i++) {
jaroslav@1375
    76
                sb.append((char)b[i]);
jaroslav@1375
    77
            }
jaroslav@424
    78
        }
jaroslav@424
    79
    }
jaroslav@1333
    80
jaroslav@1333
    81
    @Compare public String readResourceAsStreamFromClassLoader() throws Exception {
jaroslav@1333
    82
        InputStream is = getClass().getClassLoader().getResourceAsStream("org/apidesign/bck2brwsr/tck/Resources.txt");
jaroslav@1375
    83
        return readString(is);
jaroslav@1333
    84
    }
jaroslav@424
    85
    
jaroslav@1316
    86
    @Compare public String toURIFromURL() throws Exception {
jaroslav@1316
    87
        URL u = new URL("http://apidesign.org");
jaroslav@1316
    88
        return u.toURI().toString();
jaroslav@1316
    89
    }
jaroslav@1316
    90
    
jaroslav@424
    91
    @Factory public static Object[] create() {
jaroslav@424
    92
        return VMTest.create(ResourcesTest.class);
jaroslav@424
    93
    }
jaroslav@424
    94
}