vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 25 Nov 2012 23:14:58 +0100
branchlazy
changeset 203 c6a0b5b64133
parent 172 9eb74b221cff
child 248 0bfcb6585290
permissions -rw-r--r--
Enclosing definition of all the methods inside the proto() function
jaroslav@106
     1
/**
jaroslav@106
     2
 * Back 2 Browser Bytecode Translator
jaroslav@106
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@106
     4
 *
jaroslav@106
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@106
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@106
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@106
     8
 *
jaroslav@106
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@106
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@106
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@106
    12
 * GNU General Public License for more details.
jaroslav@106
    13
 *
jaroslav@106
    14
 * You should have received a copy of the GNU General Public License
jaroslav@106
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@106
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@106
    17
 */
jaroslav@22
    18
package org.apidesign.vm4brwsr;
jaroslav@21
    19
jaroslav@21
    20
import javax.script.Invocable;
jaroslav@21
    21
import javax.script.ScriptException;
jaroslav@21
    22
import static org.testng.Assert.*;
jaroslav@103
    23
import org.testng.annotations.BeforeClass;
jtulach@128
    24
import org.testng.annotations.Test;
jaroslav@21
    25
jaroslav@21
    26
/**
jaroslav@21
    27
 *
jaroslav@21
    28
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@21
    29
 */
jaroslav@21
    30
public class ArrayTest {
jaroslav@21
    31
    @Test public void verifySimpleIntOperation() throws Exception {
jaroslav@203
    32
            assertExec("CheckTheSum", Array.class, "simpleI", 
jaroslav@21
    33
            Double.valueOf(15)
jaroslav@21
    34
        );
jaroslav@21
    35
    }
jtulach@128
    36
    
jtulach@128
    37
    @Test public void realOperationOnArrays() throws Exception {
jtulach@128
    38
        assertEquals(Array.sum(), 105.0, "Computes to 105");
jtulach@128
    39
    }
jtulach@128
    40
    
jaroslav@21
    41
    @Test public void verifyOperationsOnArrays() throws Exception {
jaroslav@203
    42
        assertExec("The sum is 105", Array.class, "sumD", 
jaroslav@21
    43
            Double.valueOf(105)
jaroslav@21
    44
        );
jaroslav@21
    45
    }
jaroslav@21
    46
    
jaroslav@104
    47
    @Test public void doesCopyArrayWork() throws Exception {
jaroslav@203
    48
        assertExec("Returns 'a'", Array.class, "copyArrayC", Double.valueOf('a'));
jaroslav@104
    49
    }
jaroslav@104
    50
    
jaroslav@103
    51
    private static CharSequence codeSeq;
jaroslav@103
    52
    private static Invocable code;
jaroslav@103
    53
    
jaroslav@103
    54
    @BeforeClass 
jaroslav@103
    55
    public void compileTheCode() throws Exception {
jaroslav@21
    56
        StringBuilder sb = new StringBuilder();
jaroslav@103
    57
        code = StaticMethodTest.compileClass(sb, 
jaroslav@22
    58
            "org/apidesign/vm4brwsr/Array"
jaroslav@21
    59
        );
jaroslav@103
    60
        codeSeq = sb;
jaroslav@103
    61
    }
jaroslav@203
    62
    private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
jaroslav@203
    63
        StaticMethodTest.assertExec(code, codeSeq, msg, clazz, method, expRes, args);
jaroslav@21
    64
    }
jaroslav@21
    65
}