vmtest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 28 Dec 2012 12:35:32 +0100
changeset 392 44a5802816be
parent 355 eea0065bcc1a
child 394 31ca8ea998a9
permissions -rw-r--r--
Class.getMethods returns only public methods
     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 org.apidesign.bck2brwsr.core.JavaScriptBody;
    25 import org.apidesign.bck2brwsr.vmtest.Compare;
    26 import org.apidesign.bck2brwsr.vmtest.VMTest;
    27 import org.testng.annotations.Factory;
    28 
    29 /**
    30  *
    31  * @author Jaroslav Tulach <jtulach@netbeans.org>
    32  */
    33 public class ReflectionTest {
    34     @Compare public String intType() {
    35         return Integer.TYPE.toString();
    36     }
    37 
    38     @Compare public String longClass() {
    39         return long.class.toString();
    40     }
    41     
    42     @Compare public String namesOfMethods() {
    43         StringBuilder sb = new StringBuilder();
    44         String[] arr = new String[20];
    45         int i = 0;
    46         for (Method m : StaticUse.class.getMethods()) {
    47             arr[i++] = m.getName();
    48         }
    49         for (String s : sort(arr, i)) {
    50             sb.append(s).append("\n");
    51         }
    52         return sb.toString();
    53     }
    54     
    55     @JavaScriptBody(args = { "arr", "len" }, body="var a = arr.slice(0, len); a.sort(); return a;")
    56     private static String[] sort(String[] arr, int len) {
    57         List<String> list = Arrays.asList(arr).subList(0, len);
    58         Collections.sort(list);
    59         return list.toArray(new String[0]);
    60     }
    61     
    62     @Factory
    63     public static Object[] create() {
    64         return VMTest.create(ReflectionTest.class);
    65     }
    66     
    67 }