vm/src/test/java/org/apidesign/vm4brwsr/ClassTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 04 Dec 2012 12:06:27 +0100
branchreflection
changeset 250 42c2ceb1e160
parent 238 5ab1f0890a42
child 261 5d1e20215d12
permissions -rw-r--r--
ClassTest needs to be adjusted to new naming scheme
     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 org.testng.annotations.Test;
    22 import static org.testng.Assert.*;
    23 import org.testng.annotations.BeforeClass;
    24 
    25 /**
    26  *
    27  * @author Jaroslav Tulach <jtulach@netbeans.org>
    28  */
    29 public class ClassTest {
    30 
    31     @Test public void superClassEqualsGetSuperclass() {
    32         assertTrue(Classes.equalsClassesOfExceptions(), "Classes are equal");
    33     }
    34 
    35     @Test public void jsSuperClassEqualsGetSuperclass() throws Exception {
    36         assertExec("Classes are equal", Classes.class, "equalsClassesOfExceptions__Z", Double.valueOf(1.0));
    37     }
    38 
    39     @Test public void classesAreDifferent() {
    40         assertTrue(Classes.differenceInClasses(), "Classes are not equal");
    41     }
    42 
    43     @Test public void jsClassesAreDifferent() throws Exception {
    44         assertExec("Classes are not equal", Classes.class, "differenceInClasses__Z", Double.valueOf(1.0));
    45     }
    46 
    47     @Test public void javaInstanceName() throws Exception {
    48         assertEquals(Classes.classForInstance(), "java.io.IOException");
    49     }
    50     @Test public void jsInstanceName() throws Exception {
    51         assertExec("I/O name", Classes.class, "classForInstance__Ljava_lang_String_2", "java.io.IOException");
    52     }
    53     @Test public void javaName() throws Exception {
    54         assertEquals(Classes.name(), "java.io.IOException");
    55     }
    56     @Test public void jsName() throws Exception {
    57         assertExec("I/O name", Classes.class, "name__Ljava_lang_String_2", "java.io.IOException");
    58     }
    59     @Test public void javaSimpleName() throws Exception {
    60         assertEquals(Classes.simpleName(), "IOException");
    61     }
    62     @Test public void jsGetsSimpleName() throws Exception {
    63         assertExec("I/O simple name", Classes.class, "simpleName__Ljava_lang_String_2", "IOException");
    64     }
    65     @Test public void javaCanonicalName() {
    66         assertEquals(Classes.canonicalName(), "java.io.IOException");
    67     }
    68     @Test public void jsCanonicalName() throws Exception {
    69         assertExec("I/O simple name", Classes.class, "canonicalName__Ljava_lang_String_2", "java.io.IOException");
    70     }
    71     @Test public void javaNewInstance() throws Exception {
    72         assertTrue(Classes.newInstance());
    73     }
    74     @Test public void jsNewInstance() throws Exception {
    75         assertExec("Check new instance", Classes.class, "newInstance__Z", Double.valueOf(1));
    76     }
    77     @Test public void jsAnnotation() throws Exception {
    78         assertExec("Check class annotation", Classes.class, "getMarker__I", Double.valueOf(10));
    79     }
    80     @Test public void jsStringAnnotation() throws Exception {
    81         assertExec("Check class annotation", Classes.class, "getNamer__Ljava_lang_String_2Z", "my text", true);
    82     }
    83     @Test public void jsStringAnnotationFromArray() throws Exception {
    84         assertExec("Check class annotation", Classes.class, "getNamer__Ljava_lang_String_2Z", "my text", false);
    85     }
    86     
    87     private static CharSequence codeSeq;
    88     private static Invocable code;
    89     
    90     @BeforeClass
    91     public void compileTheCode() throws Exception {
    92         if (codeSeq == null) {
    93             StringBuilder sb = new StringBuilder();
    94             code = StaticMethodTest.compileClass(sb, "org/apidesign/vm4brwsr/Classes");
    95             codeSeq = sb;
    96         }
    97     }
    98     
    99     private void assertExec(
   100         String msg, Class clazz, String method, Object expRes, Object... args
   101     ) throws Exception {
   102         StaticMethodTest.assertExec(code, codeSeq, msg, clazz, method, expRes, args);
   103     }
   104     
   105 }