boot-truffle/src/test/java/net/java/html/boot/truffle/TruffleJavaScriptTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 21 Jul 2016 11:21:58 +0200
changeset 1105 907bcc5dbb00
parent 1094 47cd2110ed8d
permissions -rw-r--r--
Documenting the Truffle based presenter
     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 net.java.html.boot.truffle;
    44 
    45 import com.oracle.truffle.api.source.Source;
    46 import com.oracle.truffle.api.vm.PolyglotEngine;
    47 import java.lang.annotation.Annotation;
    48 import java.lang.reflect.Method;
    49 import java.util.ArrayList;
    50 import java.util.List;
    51 import java.util.concurrent.Executors;
    52 import net.java.html.boot.BrowserBuilder;
    53 import org.netbeans.html.boot.spi.Fn;
    54 import org.netbeans.html.json.tck.JavaScriptTCK;
    55 import org.netbeans.html.json.tck.KOTest;
    56 import org.testng.Assert;
    57 import static org.testng.Assert.assertEquals;
    58 import org.testng.SkipException;
    59 import org.testng.annotations.Factory;
    60 import org.testng.annotations.Test;
    61 
    62 /**
    63  *
    64  * @author Jaroslav Tulach
    65  */
    66 public class TruffleJavaScriptTest {
    67     private static Class<?> browserClass;
    68     private static Fn.Presenter browserPresenter;
    69     
    70     public TruffleJavaScriptTest() {
    71     }
    72 
    73     @Factory public static Object[] compatibilityTests() throws Exception {
    74         PolyglotEngine engine = PolyglotEngine.newBuilder().build();
    75         PolyglotEngine.Value result = null;
    76         try {
    77             result = engine.eval(Source.fromText("6 * 7", "test.js").withMimeType("text/javascript"));
    78         } catch (Exception notSupported) {
    79             if (notSupported.getMessage().contains("text/javascript")) {
    80                 return new Object[] { new SkipTest(notSupported.getMessage()) };
    81             }
    82         }
    83         assertEquals(42, result.as(Number.class).intValue(), "Executed OK");
    84 
    85         final BrowserBuilder bb = BrowserBuilder.newBrowser(TrufflePresenters.create(SingleCase.JS)).
    86             loadClass(TruffleJavaScriptTest.class).
    87             loadPage("empty.html").
    88             invoke("initialized");
    89 
    90         Executors.newSingleThreadExecutor().submit(new Runnable() {
    91             @Override
    92             public void run() {
    93                 bb.showAndWait();
    94             }
    95         });
    96 
    97         List<Object> res = new ArrayList<>();
    98         Class<? extends Annotation> test = 
    99             loadClass().getClassLoader().loadClass(KOTest.class.getName()).
   100             asSubclass(Annotation.class);
   101 
   102         Class[] arr = (Class[]) loadClass().getDeclaredMethod("tests").invoke(null);
   103         for (Class c : arr) {
   104             if (c.getSimpleName().contains("GC")) {
   105                 continue;
   106             }
   107             for (Method m : c.getMethods()) {
   108                 if (m.getAnnotation(test) != null) {
   109                     res.add(new SingleCase(browserPresenter, m));
   110                 }
   111             }
   112         }
   113         return res.toArray();
   114     }
   115 
   116     static synchronized Class<?> loadClass() throws InterruptedException {
   117         while (browserClass == null) {
   118             TruffleJavaScriptTest.class.wait();
   119         }
   120         return browserClass;
   121     }
   122     
   123     public static synchronized void ready(Class<?> browserCls) throws Exception {
   124         browserClass = browserCls;
   125         browserPresenter = Fn.activePresenter();
   126         TruffleJavaScriptTest.class.notifyAll();
   127     }
   128     
   129     public static void initialized() throws Exception {
   130         Assert.assertSame(TruffleJavaScriptTest.class.getClassLoader(),
   131             ClassLoader.getSystemClassLoader(),
   132             "No special classloaders"
   133         );
   134         TruffleJavaScriptTest.ready(Tck.class);
   135     }
   136 
   137     public static final class Tck extends JavaScriptTCK {
   138 
   139         public static Class[] tests() {
   140             return testClasses();
   141         }
   142     }
   143 
   144     public static class SkipTest {
   145         private final String message;
   146 
   147         public SkipTest(String message) {
   148             this.message = message;
   149         }
   150 
   151         @Test
   152         public void needsGraalVMToExecuteTheTests() {
   153             throw new SkipException(message);
   154         }
   155     }
   156 }