boot/src/test/java/org/netbeans/html/boot/impl/JavaScriptProcesorTest.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Fri, 07 Feb 2014 07:44:34 +0100
changeset 551 7ca2253fa86d
parent 531 ff48a4a875ff
child 790 30f20d9c0986
permissions -rw-r--r--
Updating copyright headers to mention current year
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.boot.impl;
    44 
    45 import java.io.IOException;
    46 import java.lang.reflect.Field;
    47 import java.lang.reflect.Method;
    48 import static org.testng.Assert.assertEquals;
    49 import static org.testng.Assert.assertTrue;
    50 import org.testng.annotations.Test;
    51 
    52 /**
    53  *
    54  * @author Jaroslav Tulach <jtulach@netbeans.org>
    55  */
    56 public class JavaScriptProcesorTest {
    57     
    58     @Test public void detectCallbackToNonExistingClass() throws IOException {
    59         String code = "package x.y.z;\n"
    60             + "import net.java.html.js.JavaScriptBody;\n"
    61             + "class X {\n"
    62             + "  @JavaScriptBody(args={\"r\"}, javacall=true, body =\n"
    63             + "    \"r.@java.lang.Runable::run()();\"\n" // typo
    64             + "  )\n"
    65             + "  private static native void callback(Runnable r);\n"
    66             + "}\n";
    67         
    68         Compile c = Compile.create("", code);
    69         c.assertErrors();
    70         c.assertError("java.lang.Runable"); // typo
    71     }
    72 
    73     @Test public void detectCallbackToNonExistingMethod() throws IOException {
    74         String code = "package x.y.z;\n"
    75             + "import net.java.html.js.JavaScriptBody;\n"
    76             + "class X {\n"
    77             + "  @JavaScriptBody(args={\"r\"}, javacall=true, body =\n"
    78             + "    \"r.@java.lang.Runnable::cancel()();\"\n"
    79             + "  )\n"
    80             + "  private static native void callback(Runnable r);\n"
    81             + "}\n";
    82         
    83         Compile c = Compile.create("", code);
    84         c.assertErrors();
    85         c.assertError("method cancel");
    86     }
    87 
    88     @Test public void detectCallbackToNonExistingParams() throws IOException {
    89         String code = "package x.y.z;\n"
    90             + "import net.java.html.js.JavaScriptBody;\n"
    91             + "class X {\n"
    92             + "  @JavaScriptBody(args={\"r\"}, javacall=true, body =\n"
    93             + "    \"r.@java.lang.Runnable::run(I)(10);\"\n"
    94             + "  )\n"
    95             + "  private static native void callback(Runnable r);\n"
    96             + "}\n";
    97         
    98         Compile c = Compile.create("", code);
    99         c.assertErrors();
   100         c.assertError("wrong parameters: (I)");
   101     }
   102 
   103     @Test public void objectTypeParamsAreOK() throws IOException {
   104         String code = "package x.y.z;\n"
   105             + "import net.java.html.js.JavaScriptBody;\n"
   106             + "class X {\n"
   107             + "  @JavaScriptBody(args={\"r\"}, javacall=true, body =\n"
   108             + "    \"r.@java.lang.Object::equals(Ljava/lang/Object;)(null);\"\n"
   109             + "  )\n"
   110             + "  private static native void testEqual(Object r);\n"
   111             + "}\n";
   112         
   113         Compile c = Compile.create("", code);
   114         c.assertNoErrors();
   115     }
   116 
   117     @Test public void needJavaScriptBodyToUseResource() throws IOException {
   118         String code = "package x.y.z;\n"
   119             + "import net.java.html.js.JavaScriptResource;\n"
   120             + "@JavaScriptResource(\"x.html\")\n"
   121             + "class X {\n"
   122             + "  private static native void callback(Runnable r);\n"
   123             + "}\n";
   124         
   125         Compile c = Compile.create("", code);
   126         c.assertErrors();
   127         c.assertError("needs @JavaScriptBody");
   128     }
   129     
   130     @Test public void generatesCallbacksThatReturnObject() throws Exception {
   131         Class<?> callbacksForTestPkg = Class.forName("org.netbeans.html.boot.impl.$JsCallbacks$");
   132         Method m = callbacksForTestPkg.getDeclaredMethod("java_lang_Runnable$run$", Runnable.class);
   133         assertEquals(m.getReturnType(), Object.class, "All methods always return object");
   134     }
   135     
   136     @Test public void hasInstanceField() throws Exception {
   137         Class<?> callbacksForTestPkg = Class.forName("org.netbeans.html.boot.impl.$JsCallbacks$");
   138         Field f = callbacksForTestPkg.getDeclaredField("VM");
   139         f.setAccessible(true);
   140         assertTrue(callbacksForTestPkg.isInstance(f.get(null)), "Singleton field VM");
   141     }
   142 }