rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/ResourcesTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 20 Oct 2013 20:36:03 +0200
changeset 1375 a6c71e376889
parent 1336 804f6f982f4e
child 1398 9926996eca2d
permissions -rw-r--r--
Can load multiple resources of the same name even in testing and development mode
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@1375
    61
jaroslav@1375
    62
    private String readString(InputStream is) throws IOException {
jaroslav@424
    63
        StringBuilder sb = new StringBuilder();
jaroslav@1375
    64
        byte[] b = new byte[512];
jaroslav@1375
    65
        for (;;) { 
jaroslav@1375
    66
            int len = is.read(b);
jaroslav@1375
    67
            if (len == -1) {
jaroslav@1375
    68
                return sb.toString();
jaroslav@1375
    69
            }
jaroslav@1375
    70
            for (int i = 0; i < len; i++) {
jaroslav@1375
    71
                sb.append((char)b[i]);
jaroslav@1375
    72
            }
jaroslav@424
    73
        }
jaroslav@424
    74
    }
jaroslav@1333
    75
jaroslav@1333
    76
    @Compare public String readResourceAsStreamFromClassLoader() throws Exception {
jaroslav@1333
    77
        InputStream is = getClass().getClassLoader().getResourceAsStream("org/apidesign/bck2brwsr/tck/Resources.txt");
jaroslav@1375
    78
        return readString(is);
jaroslav@1333
    79
    }
jaroslav@424
    80
    
jaroslav@1316
    81
    @Compare public String toURIFromURL() throws Exception {
jaroslav@1316
    82
        URL u = new URL("http://apidesign.org");
jaroslav@1316
    83
        return u.toURI().toString();
jaroslav@1316
    84
    }
jaroslav@1316
    85
    
jaroslav@424
    86
    @Factory public static Object[] create() {
jaroslav@424
    87
        return VMTest.create(ResourcesTest.class);
jaroslav@424
    88
    }
jaroslav@424
    89
}