vmtest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 29 Dec 2012 19:43:26 +0100
changeset 394 31ca8ea998a9
parent 392 44a5802816be
child 412 777b9b841f15
permissions -rw-r--r--
Check correct exception is thrown when accessing private constructor
     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.bck2brwsr.tck;
    19 
    20 import java.lang.reflect.Method;
    21 import java.util.Arrays;
    22 import java.util.Collections;
    23 import java.util.List;
    24 import java.util.logging.Level;
    25 import java.util.logging.Logger;
    26 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    27 import org.apidesign.bck2brwsr.vmtest.Compare;
    28 import org.apidesign.bck2brwsr.vmtest.VMTest;
    29 import org.testng.annotations.Factory;
    30 
    31 /**
    32  *
    33  * @author Jaroslav Tulach <jtulach@netbeans.org>
    34  */
    35 public class ReflectionTest {
    36     @Compare public String intType() {
    37         return Integer.TYPE.toString();
    38     }
    39 
    40     @Compare public String longClass() {
    41         return long.class.toString();
    42     }
    43     
    44     @Compare public String namesOfMethods() {
    45         StringBuilder sb = new StringBuilder();
    46         String[] arr = new String[20];
    47         int i = 0;
    48         for (Method m : StaticUse.class.getMethods()) {
    49             arr[i++] = m.getName();
    50         }
    51         for (String s : sort(arr, i)) {
    52             sb.append(s).append("\n");
    53         }
    54         return sb.toString();
    55     }
    56     
    57     @Compare public String newInstanceFails() throws InstantiationException {
    58         try {
    59             return "success: " + StaticUse.class.newInstance();
    60         } catch (IllegalAccessException ex) {
    61             return ex.getClass().getName();
    62         }
    63     }
    64     
    65     @JavaScriptBody(args = { "arr", "len" }, body="var a = arr.slice(0, len); a.sort(); return a;")
    66     private static String[] sort(String[] arr, int len) {
    67         List<String> list = Arrays.asList(arr).subList(0, len);
    68         Collections.sort(list);
    69         return list.toArray(new String[0]);
    70     }
    71     
    72     @Factory
    73     public static Object[] create() {
    74         return VMTest.create(ReflectionTest.class);
    75     }
    76     
    77 }