rt/vm/src/test/java/org/apidesign/vm4brwsr/NumberTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 28 Feb 2013 07:48:54 +0100
changeset 789 bb7506513353
parent 772 d382dacfd73f
child 790 da63749558e2
permissions -rw-r--r--
releasing the compiled code as soon as it is no longer needed to prevent OutOfMemoryError when adding more and more tests
jaroslav@114
     1
/**
jaroslav@114
     2
 * Back 2 Browser Bytecode Translator
jaroslav@114
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@114
     4
 *
jaroslav@114
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@114
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@114
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@114
     8
 *
jaroslav@114
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@114
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@114
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@114
    12
 * GNU General Public License for more details.
jaroslav@114
    13
 *
jaroslav@114
    14
 * You should have received a copy of the GNU General Public License
jaroslav@114
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@114
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@114
    17
 */
jaroslav@114
    18
package org.apidesign.vm4brwsr;
jaroslav@114
    19
jtulach@132
    20
import static org.testng.Assert.*;
jaroslav@789
    21
import org.testng.annotations.AfterClass;
jaroslav@114
    22
import org.testng.annotations.BeforeClass;
jaroslav@114
    23
import org.testng.annotations.Test;
jaroslav@114
    24
jaroslav@114
    25
/**
jaroslav@114
    26
 *
jaroslav@114
    27
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@114
    28
 */
jaroslav@114
    29
public class NumberTest {
jaroslav@114
    30
    @Test public void integerFromString() throws Exception {
jaroslav@248
    31
        assertExec("Can convert string to integer", Integer.class, "parseInt__ILjava_lang_String_2",
jaroslav@114
    32
            Double.valueOf(333), "333"
jaroslav@114
    33
        );
jaroslav@114
    34
    }
jaroslav@114
    35
jaroslav@114
    36
    @Test public void doubleFromString() throws Exception {
jaroslav@248
    37
        assertExec("Can convert string to double", Double.class, "parseDouble__DLjava_lang_String_2",
jaroslav@114
    38
            Double.valueOf(33.3), "33.3"
jaroslav@114
    39
        );
jaroslav@114
    40
    }
jaroslav@114
    41
jaroslav@114
    42
    @Test public void autoboxDouble() throws Exception {
jaroslav@248
    43
        assertExec("Autoboxing of doubles is OK", Numbers.class, "autoboxDblToString__Ljava_lang_String_2",
jaroslav@114
    44
            "3.3"
jaroslav@114
    45
        );
jaroslav@114
    46
    }
jtulach@132
    47
    
jtulach@132
    48
    @Test public void javalog1000() throws Exception {
jtulach@132
    49
        assertEquals(3.0, Math.log10(1000.0), 0.00003, "log_10(1000) == 3");
jtulach@132
    50
    }
jtulach@132
    51
jtulach@132
    52
    @Test public void jslog1000() throws Exception {
jaroslav@248
    53
        assertExec("log_10(1000) == 3", Math.class, "log10__DD", 
jtulach@132
    54
            Double.valueOf(3.0), 1000.0
jtulach@132
    55
        );
jtulach@132
    56
    }
jaroslav@178
    57
    
jaroslav@178
    58
    @Test public void javaRem() {
jaroslav@178
    59
        assertEquals(3, Numbers.rem(303, 10));
jaroslav@178
    60
    }
jaroslav@178
    61
    @Test public void jsRem() throws Exception {
jaroslav@248
    62
        assertExec("Should be three", Numbers.class, "rem__III", 
jaroslav@178
    63
            Double.valueOf(3.0), 303, 10
jaroslav@178
    64
        );
jaroslav@178
    65
    }
jaroslav@181
    66
    
jaroslav@181
    67
    @Test public void deserializeInt() throws Exception {
jaroslav@181
    68
        int exp = Numbers.deserInt();
jaroslav@248
    69
        assertExec("Should be the same", Numbers.class, "deserInt__I", 
jaroslav@181
    70
            Double.valueOf(exp)
jaroslav@181
    71
        );
jaroslav@181
    72
    }
jaroslav@185
    73
jaroslav@185
    74
    @Test public void deserializeSimpleLong() throws Exception {
jaroslav@248
    75
        assertExec("Should be 3454", Numbers.class, "deserLong__J_3B", 
jaroslav@185
    76
            Double.valueOf(3454), 
jaroslav@185
    77
            new byte[] { (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)13, (byte)126 }
jaroslav@185
    78
        );
jaroslav@185
    79
    }
jaroslav@185
    80
    /* XXX: JavaScript cannot represent as big longs as Java. 
jaroslav@185
    81
    @Test public void deserializeLargeLong() throws Exception {
jaroslav@185
    82
        final byte[] arr = new byte[] {
jaroslav@185
    83
            (byte)64, (byte)8, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0, (byte)0
jaroslav@185
    84
        };
jaroslav@185
    85
        long exp = Numbers.deserLong(arr);
jaroslav@248
    86
        assertExec("Should be " + exp, "org_apidesign_vm4brwsr_Numbers_deserLong__JAB", 
jaroslav@185
    87
            Double.valueOf(exp), arr);
jaroslav@185
    88
    }
jaroslav@185
    89
    */
jaroslav@181
    90
    
jaroslav@181
    91
    @Test public void deserializeFloatInJava() throws Exception {
jaroslav@181
    92
        float f = 54324.32423f;
jaroslav@181
    93
        float r = Numbers.deserFloat();
jaroslav@181
    94
        assertEquals(r, f, "Floats are the same");
jaroslav@181
    95
    }
jaroslav@181
    96
    
jaroslav@181
    97
    @Test public void deserializeFloatInJS() throws Exception {
jaroslav@181
    98
        float f = 54324.32423f;
jaroslav@248
    99
        assertExec("Should be the same", Numbers.class, "deserFloat__F", 
jaroslav@181
   100
            Double.valueOf(f)
jaroslav@181
   101
        );
jaroslav@181
   102
    }
jaroslav@114
   103
jaroslav@185
   104
    @Test public void deserializeDoubleInJava() throws Exception {
jaroslav@185
   105
        double f = 3.0;
jaroslav@185
   106
        double r = Numbers.deserDouble();
jaroslav@185
   107
        assertEquals(r, f, 0.001, "Doubles are the same");
jaroslav@185
   108
    }
jaroslav@114
   109
    
jaroslav@185
   110
    @Test public void deserializeDoubleInJS() throws Exception {
jaroslav@185
   111
        double f = 3.0;
jaroslav@248
   112
        assertExec("Should be the same", Numbers.class, "deserDouble__D", f);
jaroslav@185
   113
    }
jaroslav@185
   114
    /*
jaroslav@185
   115
    @Test public void serDouble() throws IOException {
jaroslav@185
   116
        double f = 3.0;
jaroslav@185
   117
        ByteArrayOutputStream os = new ByteArrayOutputStream();
jaroslav@185
   118
        DataOutputStream d = new DataOutputStream(os);
jaroslav@185
   119
        d.writeLong(3454);
jaroslav@185
   120
        d.close();
jaroslav@185
   121
        
jaroslav@185
   122
        StringBuilder sb = new StringBuilder();
jaroslav@185
   123
        byte[] arr = os.toByteArray();
jaroslav@185
   124
        for (int i = 0; i < arr.length; i++) {
jaroslav@185
   125
            sb.append("(byte)").append(arr[i]).append(", ");
jaroslav@185
   126
        }
jaroslav@185
   127
        fail("" + sb);
jaroslav@185
   128
    }
jaroslav@185
   129
*/    
jaroslav@186
   130
    @Test public void fiveInStringJS() throws Exception {
jaroslav@186
   131
        String s = Numbers.intToString();
jaroslav@186
   132
        assertExec("Should be the same: " + s, 
jaroslav@248
   133
            Numbers.class, "intToString__Ljava_lang_String_2", 
jaroslav@186
   134
            s
jaroslav@186
   135
        );
jaroslav@186
   136
    }
jaroslav@187
   137
jaroslav@187
   138
    @Test public void sevenInStringJS() throws Exception {
jaroslav@187
   139
        String s = Numbers.floatToString();
jaroslav@187
   140
        assertExec("Should be the same: " + s, 
jaroslav@248
   141
            Numbers.class, "floatToString__Ljava_lang_String_2", 
jaroslav@187
   142
            s
jaroslav@187
   143
        );
jaroslav@187
   144
    }
lubomir@676
   145
jaroslav@708
   146
    private static TestVM code;
jaroslav@114
   147
jaroslav@114
   148
    @BeforeClass
jaroslav@789
   149
    public static void compileTheCode() throws Exception {
jaroslav@708
   150
        code = TestVM.compileClass("org/apidesign/vm4brwsr/Numbers");
jaroslav@114
   151
    }
jaroslav@789
   152
    @AfterClass
jaroslav@789
   153
    public static void releaseTheCode() {
jaroslav@789
   154
        code = null;
jaroslav@789
   155
    }
jaroslav@114
   156
jaroslav@114
   157
    private static void assertExec(
Martin@582
   158
        String msg, Class<?> clazz, String method, Object expRes, Object... args) throws Exception
Martin@582
   159
    {
jaroslav@708
   160
        Object ret = code.execCode(msg, clazz, method, expRes, args);
Martin@582
   161
        if (ret == null) {
jaroslav@114
   162
            return;
jaroslav@114
   163
        }
jtulach@132
   164
        if (expRes instanceof Double && ret instanceof Double) {
jtulach@132
   165
            double expD = ((Double)expRes).doubleValue();
jtulach@132
   166
            double retD = ((Double)ret).doubleValue();
Martin@616
   167
            assertEquals(retD, expD, 0.000004, msg + " "
jaroslav@708
   168
                    + code.toString());
jtulach@132
   169
            return;
jtulach@132
   170
        }
jaroslav@708
   171
        assertEquals(ret, expRes, msg + " " + code.toString());
jaroslav@114
   172
    }
jaroslav@114
   173
    
jaroslav@114
   174
}