ko-ws-tyrus/src/test/java/org/netbeans/html/wstyrus/TyrusKnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Thu, 09 Jan 2014 15:43:04 +0100
branchUniversalKO
changeset 444 03eeeb863fa1
parent 365 5c93ad8c7a15
child 446 6dce58c06f58
permissions -rw-r--r--
Updating references to ko4j
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2013 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-2013 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.wstyrus;
    44 
    45 import java.io.BufferedReader;
    46 import java.io.IOException;
    47 import java.io.InputStreamReader;
    48 import java.lang.annotation.Annotation;
    49 import java.lang.reflect.Method;
    50 import java.net.URI;
    51 import java.net.URISyntaxException;
    52 import java.net.URL;
    53 import java.net.URLConnection;
    54 import java.util.ArrayList;
    55 import java.util.List;
    56 import java.util.Map;
    57 import java.util.concurrent.Executors;
    58 import net.java.html.BrwsrCtx;
    59 import net.java.html.boot.BrowserBuilder;
    60 import net.java.html.js.JavaScriptBody;
    61 import org.apidesign.html.boot.spi.Fn;
    62 import org.apidesign.html.context.spi.Contexts;
    63 import org.apidesign.html.json.spi.Technology;
    64 import org.apidesign.html.json.spi.Transfer;
    65 import org.apidesign.html.json.spi.WSTransfer;
    66 import org.apidesign.html.json.tck.KOTest;
    67 import org.apidesign.html.json.tck.KnockoutTCK;
    68 import org.json.JSONException;
    69 import org.json.JSONObject;
    70 import org.netbeans.html.boot.impl.FnContext;
    71 import org.netbeans.html.ko4j.KO4J;
    72 import org.openide.util.lookup.ServiceProvider;
    73 import static org.testng.Assert.*;
    74 import org.testng.annotations.Factory;
    75 
    76 /**
    77  *
    78  * @author Jaroslav Tulach <jtulach@netbeans.org>
    79  */
    80 @ServiceProvider(service = KnockoutTCK.class)
    81 public final class TyrusKnockoutTest extends KnockoutTCK {
    82     private static Class<?> browserClass;
    83     private static Fn.Presenter browserContext;
    84     
    85     public TyrusKnockoutTest() {
    86     }
    87     
    88     @Factory public static Object[] compatibilityTests() throws Exception {
    89         Class[] arr = testClasses();
    90         for (int i = 0; i < arr.length; i++) {
    91             assertEquals(
    92                 arr[i].getClassLoader(),
    93                 TyrusKnockoutTest.class.getClassLoader(),
    94                 "All classes loaded by the same classloader"
    95             );
    96         }
    97         
    98         URI uri = TyrusDynamicHTTP.initServer();
    99     
   100         final BrowserBuilder bb = BrowserBuilder.newBrowser().loadClass(TyrusKnockoutTest.class).
   101             loadPage(uri.toString()).
   102             invoke("initialized");
   103         
   104         Executors.newSingleThreadExecutor().submit(new Runnable() {
   105             @Override
   106             public void run() {
   107                 bb.showAndWait();
   108             }
   109         });
   110         
   111         ClassLoader l = getClassLoader();
   112         List<Object> res = new ArrayList<Object>();
   113         for (int i = 0; i < arr.length; i++) {
   114             Class<?> c = Class.forName(arr[i].getName(), true, l);
   115             Class<? extends Annotation> koTest = 
   116                 c.getClassLoader().loadClass(KOTest.class.getName()).
   117                 asSubclass(Annotation.class);
   118             for (Method m : c.getMethods()) {
   119                 if (m.getAnnotation(koTest) != null) {
   120                     res.add(new TyrusFX(browserContext, m));
   121                 }
   122             }
   123         }
   124         return res.toArray();
   125     }
   126 
   127     static synchronized ClassLoader getClassLoader() throws InterruptedException {
   128         while (browserClass == null) {
   129             TyrusKnockoutTest.class.wait();
   130         }
   131         return browserClass.getClassLoader();
   132     }
   133     
   134     public static synchronized void initialized(Class<?> browserCls) throws Exception {
   135         browserClass = browserCls;
   136         browserContext = FnContext.currentPresenter();
   137         TyrusKnockoutTest.class.notifyAll();
   138     }
   139     
   140     public static void initialized() throws Exception {
   141         Class<?> classpathClass = ClassLoader.getSystemClassLoader().loadClass(TyrusKnockoutTest.class.getName());
   142         Method m = classpathClass.getMethod("initialized", Class.class);
   143         m.invoke(null, TyrusKnockoutTest.class);
   144         browserContext = FnContext.currentPresenter();
   145     }
   146     
   147     @Override
   148     public BrwsrCtx createContext() {
   149         KO4J ko = new KO4J(browserContext);
   150         TyrusContext tc = new TyrusContext();
   151         Contexts.Builder cb = Contexts.newBuilder().
   152             register(Technology.class, ko.knockout(), 10).
   153             register(Transfer.class, ko.transferViaOrgJSON(), 10).
   154             register(WSTransfer.class, tc, 10);
   155         return cb.build();
   156     }
   157 
   158     @Override
   159     public Object createJSON(Map<String, Object> values) {
   160         JSONObject json = new JSONObject();
   161         for (Map.Entry<String, Object> entry : values.entrySet()) {
   162             try {
   163                 json.put(entry.getKey(), entry.getValue());
   164             } catch (JSONException ex) {
   165                 throw new IllegalStateException(ex);
   166             }
   167         }
   168         return json;
   169     }
   170 
   171     @Override
   172     @JavaScriptBody(args = { "s", "args" }, body = ""
   173         + "var f = new Function(s); "
   174         + "return f.apply(null, args);"
   175     )
   176     public native Object executeScript(String script, Object[] arguments);
   177 
   178     @JavaScriptBody(args = {  }, body = 
   179           "var h;"
   180         + "if (!!window && !!window.location && !!window.location.href)\n"
   181         + "  h = window.location.href;\n"
   182         + "else "
   183         + "  h = null;"
   184         + "return h;\n"
   185     )
   186     private static native String findBaseURL();
   187     
   188     @Override
   189     public URI prepareURL(String content, String mimeType, String[] parameters) {
   190         try {
   191             final URL baseURL = new URL(findBaseURL());
   192             StringBuilder sb = new StringBuilder();
   193             sb.append("/dynamic?mimeType=").append(mimeType);
   194             for (int i = 0; i < parameters.length; i++) {
   195                 sb.append("&param" + i).append("=").append(parameters[i]);
   196             }
   197             String mangle = content.replace("\n", "%0a")
   198                 .replace("\"", "\\\"").replace(" ", "%20");
   199             sb.append("&content=").append(mangle);
   200 
   201             URL query = new URL(baseURL, sb.toString());
   202             URLConnection c = query.openConnection();
   203             BufferedReader br = new BufferedReader(new InputStreamReader(c.getInputStream()));
   204             URI connectTo = new URI(br.readLine());
   205             return connectTo;
   206         } catch (IOException ex) {
   207             throw new IllegalStateException(ex);
   208         } catch (URISyntaxException ex) {
   209             throw new IllegalStateException(ex);
   210         }
   211     }
   212 }