rt/vm/src/test/java/org/apidesign/vm4brwsr/ResourcesTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 28 Apr 2014 17:31:29 +0200
branchclosure
changeset 1496 d3df935aff70
parent 1495 d5dd07b45f79
child 1513 ba912ef24b27
permissions -rw-r--r--
Handles resources with non 7-bit ASCII characters
     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.vm4brwsr;
    19 
    20 import java.io.UnsupportedEncodingException;
    21 import org.testng.annotations.AfterClass;
    22 import org.testng.annotations.BeforeClass;
    23 import org.testng.annotations.Test;
    24 
    25 /** Tests related to loading resources from the VM.
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class ResourcesTest {
    30     @Test public void loadPrecompiledResource() throws Exception {
    31         String exp = Resources.loadKO();
    32         
    33         assertExec("Loading a precompiled resource:",
    34             Resources.class, "loadKO__Ljava_lang_String_2", 
    35             exp
    36         );
    37     }
    38 
    39     @Test public void loadBinaryPrecompiledResource() throws Exception {
    40         String exp = Resources.loadClazz();
    41         
    42         assertExec("Loading a precompiled resource:",
    43             Resources.class, "loadClazz__Ljava_lang_String_2", 
    44             exp
    45         );
    46     }
    47     
    48     private static TestVM code;
    49     
    50     @BeforeClass 
    51     public static void compileTheCode() throws Exception {
    52         StringBuilder sb = new StringBuilder();
    53         code = TestVM.compileClassAndResources(sb, null, 
    54             "org/apidesign/vm4brwsr/Resources", 
    55             "org/apidesign/vm4brwsr/ko.js",
    56             "org/apidesign/vm4brwsr/Bck2BrwsrToolkit.class"
    57         );
    58     }
    59     @AfterClass
    60     public static void releaseTheCode() {
    61         code = null;
    62     }
    63 
    64     private void assertExec(
    65         String msg, Class<?> clazz, String method, 
    66         Object ret, Object... args
    67     ) throws Exception {
    68         code.assertExec(msg, clazz, method, ret, args);
    69     }
    70     
    71     public static String parseBase64Binary(String s) throws UnsupportedEncodingException {
    72         final byte[] arr = javax.xml.bind.DatatypeConverter.parseBase64Binary(s);
    73         StringBuilder sb = new StringBuilder();
    74         for (int i = 0; i < arr.length; i++) {
    75             int ch = arr[i];
    76             sb.append((char)ch);
    77         }
    78         return sb.toString();
    79     }
    80 }