vm/src/test/java/org/apidesign/vm4brwsr/StringTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 23 Oct 2012 16:50:27 +0200
changeset 116 033d51e026b0
parent 106 346633cd13d6
child 137 45184b2f9697
permissions -rw-r--r--
Some basic operations needed for a trivial calculator
     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 javax.script.Invocable;
    21 import javax.script.ScriptException;
    22 import org.testng.annotations.Test;
    23 import static org.testng.Assert.*;
    24 import org.testng.annotations.BeforeClass;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public class StringTest {
    31     @Test public void firstChar() throws Exception {
    32         assertExec(
    33             "First char in Hello is H",
    34             "org_apidesign_vm4brwsr_StringSample_sayHelloCI",
    35             "H", 0
    36         );
    37     }
    38 
    39     @Test public void fromChars() throws Exception {
    40         assertExec(
    41             "First char in Hello is ABC",
    42             "org_apidesign_vm4brwsr_StringSample_fromCharsLjava_lang_StringCCC",
    43             "ABC", 'A', 'B', 'C'
    44         );
    45     }
    46 
    47     @Test(timeOut=10000) public void toStringConcatenation() throws Exception {
    48         assertExec(
    49             "Five executions should generate 5Hello World!",
    50             "org_apidesign_vm4brwsr_StringSample_toStringTestLjava_lang_StringI",
    51             "Hello World!5", 5
    52         );
    53     }
    54     @Test public void toStringConcatenationJava() throws Exception {
    55         assertEquals("Hello World!5", StringSample.toStringTest(5));
    56     }
    57     
    58     @Test(timeOut=10000) public void stringStringConcat() throws Exception {
    59         assertExec(
    60             "Composes strings OK",
    61             "org_apidesign_vm4brwsr_StringSample_concatStringsLjava_lang_String",
    62             "Hello World!1Ahoj"
    63         );
    64     }
    65 
    66     public void equalsAndSubstring() throws Exception {
    67         assertExec(
    68             "Composes are OK",
    69             "org_apidesign_vm4brwsr_StringSample_equalToHelloZII",
    70             Double.valueOf(1), 0, 5
    71         );
    72     }
    73     
    74     private static CharSequence codeSeq;
    75     private static Invocable code;
    76     
    77     @BeforeClass 
    78     public void compileTheCode() throws Exception {
    79         StringBuilder sb = new StringBuilder();
    80         code = StaticMethodTest.compileClass(sb, 
    81             "org/apidesign/vm4brwsr/StringSample",
    82             "java/lang/String"
    83         );
    84         codeSeq = sb;
    85     }
    86     
    87     private static void assertExec(String msg, String methodName, Object expRes, Object... args) throws Exception {
    88         Object ret = null;
    89         try {
    90             ret = code.invokeFunction(methodName, args);
    91         } catch (ScriptException ex) {
    92             fail("Execution failed in\n" + codeSeq, ex);
    93         } catch (NoSuchMethodException ex) {
    94             fail("Cannot find method in\n" + codeSeq, ex);
    95         }
    96         if (ret == null && expRes == null) {
    97             return;
    98         }
    99         if (expRes.equals(ret)) {
   100             return;
   101         }
   102         assertEquals(ret, expRes, msg + "was: " + ret + "\n" + codeSeq);
   103         
   104     }
   105     
   106 }