rt/vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
changeset 772 d382dacfd73f
parent 708 59d5596a9c6c
child 789 bb7506513353
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java	Tue Feb 26 16:54:16 2013 +0100
     1.3 @@ -0,0 +1,87 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +package org.apidesign.vm4brwsr;
    1.22 +
    1.23 +import static org.testng.Assert.*;
    1.24 +import org.testng.annotations.BeforeClass;
    1.25 +import org.testng.annotations.Test;
    1.26 +
    1.27 +/**
    1.28 + *
    1.29 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.30 + */
    1.31 +public class ArrayTest {
    1.32 +    @Test public void intArrayShouldBeFilledWithZeroes() throws Exception {
    1.33 +            assertExec("0 + 0", Array.class, "sum__II", 
    1.34 +            Double.valueOf(0), 2
    1.35 +        );
    1.36 +    }
    1.37 +    @Test public void verifySimpleIntOperation() throws Exception {
    1.38 +            assertExec("CheckTheSum", Array.class, "simple__IZ", 
    1.39 +            Double.valueOf(15), false
    1.40 +        );
    1.41 +    }
    1.42 +    
    1.43 +    @Test public void cloneOnArray() throws Exception {
    1.44 +            assertExec("CheckTheSum on clone", Array.class, "simple__IZ", 
    1.45 +            Double.valueOf(15), true
    1.46 +        );
    1.47 +    }
    1.48 +    
    1.49 +    @Test public void realOperationOnArrays() throws Exception {
    1.50 +        assertEquals(Array.sum(), 105.0, "Computes to 105");
    1.51 +    }
    1.52 +    
    1.53 +    @Test public void verifyOperationsOnArrays() throws Exception {
    1.54 +        assertExec("The sum is 105", Array.class, "sum__D", 
    1.55 +            Double.valueOf(105)
    1.56 +        );
    1.57 +    }
    1.58 +
    1.59 +    @Test public void twoDoubles() throws Exception {
    1.60 +        assertExec("Elements are initialized", Array.class, "twoDoubles__D", 
    1.61 +            Double.valueOf(0)
    1.62 +        );
    1.63 +    }
    1.64 +    @Test public void twoInts() throws Exception {
    1.65 +        assertExec("Elements are initialized", Array.class, "twoInts__I", 
    1.66 +            Double.valueOf(0)
    1.67 +        );
    1.68 +    }
    1.69 +    
    1.70 +    @Test public void doesCopyArrayWork() throws Exception {
    1.71 +        assertExec("Returns 'a'", Array.class, "copyArray__C", Double.valueOf('a'));
    1.72 +    }
    1.73 +
    1.74 +    @Test public void verifyObjectArrayClass() throws Exception {
    1.75 +        assertExec("Returns 'Object[]'", Array.class, "objectArrayClass__Ljava_lang_String_2", Array.objectArrayClass());
    1.76 +    }
    1.77 +    @Test public void verifyInstanceOfArray() throws Exception {
    1.78 +        assertExec("Returns 'false'", Array.class, "instanceOfArray__ZLjava_lang_Object_2", Double.valueOf(0), "non-array");
    1.79 +    }
    1.80 +    
    1.81 +    private static TestVM code;
    1.82 +    
    1.83 +    @BeforeClass 
    1.84 +    public void compileTheCode() throws Exception {
    1.85 +        code = TestVM.compileClass("org/apidesign/vm4brwsr/Array");
    1.86 +    }
    1.87 +    private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
    1.88 +        code.assertExec(msg, clazz, method, expRes, args);
    1.89 +    }
    1.90 +}