rt/vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 708 vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java@59d5596a9c6c
child 789 bb7506513353
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
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 static org.testng.Assert.*;
jaroslav@103
    21
import org.testng.annotations.BeforeClass;
jtulach@128
    22
import org.testng.annotations.Test;
jaroslav@21
    23
jaroslav@21
    24
/**
jaroslav@21
    25
 *
jaroslav@21
    26
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@21
    27
 */
jaroslav@21
    28
public class ArrayTest {
jaroslav@446
    29
    @Test public void intArrayShouldBeFilledWithZeroes() throws Exception {
jaroslav@446
    30
            assertExec("0 + 0", Array.class, "sum__II", 
jaroslav@446
    31
            Double.valueOf(0), 2
jaroslav@446
    32
        );
jaroslav@446
    33
    }
jaroslav@21
    34
    @Test public void verifySimpleIntOperation() throws Exception {
jaroslav@402
    35
            assertExec("CheckTheSum", Array.class, "simple__IZ", 
jaroslav@402
    36
            Double.valueOf(15), false
jaroslav@402
    37
        );
jaroslav@402
    38
    }
jaroslav@402
    39
    
jaroslav@402
    40
    @Test public void cloneOnArray() throws Exception {
jaroslav@402
    41
            assertExec("CheckTheSum on clone", Array.class, "simple__IZ", 
jaroslav@402
    42
            Double.valueOf(15), true
jaroslav@21
    43
        );
jaroslav@21
    44
    }
jtulach@128
    45
    
jtulach@128
    46
    @Test public void realOperationOnArrays() throws Exception {
jtulach@128
    47
        assertEquals(Array.sum(), 105.0, "Computes to 105");
jtulach@128
    48
    }
jtulach@128
    49
    
jaroslav@21
    50
    @Test public void verifyOperationsOnArrays() throws Exception {
jaroslav@248
    51
        assertExec("The sum is 105", Array.class, "sum__D", 
jaroslav@21
    52
            Double.valueOf(105)
jaroslav@21
    53
        );
jaroslav@21
    54
    }
jaroslav@457
    55
jaroslav@457
    56
    @Test public void twoDoubles() throws Exception {
jaroslav@457
    57
        assertExec("Elements are initialized", Array.class, "twoDoubles__D", 
jaroslav@457
    58
            Double.valueOf(0)
jaroslav@457
    59
        );
jaroslav@457
    60
    }
jaroslav@457
    61
    @Test public void twoInts() throws Exception {
jaroslav@457
    62
        assertExec("Elements are initialized", Array.class, "twoInts__I", 
jaroslav@457
    63
            Double.valueOf(0)
jaroslav@457
    64
        );
jaroslav@457
    65
    }
jaroslav@21
    66
    
jaroslav@104
    67
    @Test public void doesCopyArrayWork() throws Exception {
jaroslav@248
    68
        assertExec("Returns 'a'", Array.class, "copyArray__C", Double.valueOf('a'));
jaroslav@104
    69
    }
jaroslav@567
    70
jaroslav@567
    71
    @Test public void verifyObjectArrayClass() throws Exception {
jaroslav@567
    72
        assertExec("Returns 'Object[]'", Array.class, "objectArrayClass__Ljava_lang_String_2", Array.objectArrayClass());
jaroslav@567
    73
    }
jaroslav@571
    74
    @Test public void verifyInstanceOfArray() throws Exception {
jaroslav@571
    75
        assertExec("Returns 'false'", Array.class, "instanceOfArray__ZLjava_lang_Object_2", Double.valueOf(0), "non-array");
jaroslav@571
    76
    }
jaroslav@104
    77
    
jaroslav@708
    78
    private static TestVM code;
jaroslav@103
    79
    
jaroslav@103
    80
    @BeforeClass 
jaroslav@103
    81
    public void compileTheCode() throws Exception {
jaroslav@708
    82
        code = TestVM.compileClass("org/apidesign/vm4brwsr/Array");
jaroslav@103
    83
    }
jaroslav@203
    84
    private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
jaroslav@708
    85
        code.assertExec(msg, clazz, method, expRes, args);
jaroslav@21
    86
    }
jaroslav@21
    87
}