rt/emul/brwsrtest/src/test/java/org/apidesign/bck2brwsr/brwsrtest/ResourcesInBrwsrTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Apr 2014 15:04:10 +0200
branchclosure
changeset 1513 ba912ef24b27
parent 1398 rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/ResourcesTest.java@9926996eca2d
parent 1498 rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/ResourcesTest.java@9583bcc50db3
child 1787 ea12a3bb4b33
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@1498
    18
package org.apidesign.bck2brwsr.brwsrtest;
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@1498
    32
public class ResourcesInBrwsrTest {
jaroslav@424
    33
    
jaroslav@424
    34
    @Compare public String readResourceAsStream() throws Exception {
jaroslav@424
    35
        InputStream is = getClass().getResourceAsStream("Resources.txt");
jaroslav@1375
    36
        return readString(is);
jaroslav@1375
    37
    }
jaroslav@1398
    38
    
jaroslav@1398
    39
    @Compare public String readResourceViaConnection() throws Exception {
jaroslav@1398
    40
        InputStream is = getClass().getResource("Resources.txt").openConnection().getInputStream();
jaroslav@1398
    41
        return readString(is);
jaroslav@1398
    42
    }
jaroslav@1375
    43
jaroslav@1375
    44
    private String readString(InputStream is) throws IOException {
jaroslav@424
    45
        StringBuilder sb = new StringBuilder();
jaroslav@1375
    46
        byte[] b = new byte[512];
jaroslav@1375
    47
        for (;;) { 
jaroslav@1375
    48
            int len = is.read(b);
jaroslav@1375
    49
            if (len == -1) {
jaroslav@1375
    50
                return sb.toString();
jaroslav@1375
    51
            }
jaroslav@1375
    52
            for (int i = 0; i < len; i++) {
jaroslav@1375
    53
                sb.append((char)b[i]);
jaroslav@1375
    54
            }
jaroslav@424
    55
        }
jaroslav@1034
    56
    }
jaroslav@1333
    57
jaroslav@1333
    58
    @Compare public String readResourceAsStreamFromClassLoader() throws Exception {
jaroslav@1513
    59
        InputStream is = getClass().getClassLoader().getResourceAsStream("org/apidesign/bck2brwsr/brwsrtest/Resources.txt");
jaroslav@1375
    60
        return readString(is);
jaroslav@1333
    61
    }
jaroslav@1034
    62
    
jaroslav@1316
    63
    @Compare public String toURIFromURL() throws Exception {
jaroslav@1316
    64
        URL u = new URL("http://apidesign.org");
jaroslav@1316
    65
        return u.toURI().toString();
jaroslav@424
    66
    }
jaroslav@424
    67
    
jaroslav@424
    68
    @Factory public static Object[] create() {
jaroslav@1498
    69
        return VMTest.create(ResourcesInBrwsrTest.class);
jaroslav@424
    70
    }
jaroslav@424
    71
}