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