ko/bck2brwsr/src/test/java/org/apidesign/bck2brwsr/ko2brwsr/Bck2BrwsrKnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 29 Aug 2013 14:35:01 +0000
changeset 1253 a936dd8280dc
parent 1246 156c4911e45b
child 1420 246ee398b411
permissions -rw-r--r--
WebSocketTest passes OK against modified version of 0.5 net.java.html APIs - rev. b04268c0ded9
     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.ko2brwsr;
    19 
    20 import java.io.IOException;
    21 import java.net.URI;
    22 import java.net.URISyntaxException;
    23 import java.net.URL;
    24 import java.util.Map;
    25 import net.java.html.BrwsrCtx;
    26 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    27 import org.apidesign.bck2brwsr.vmtest.VMTest;
    28 import org.apidesign.html.context.spi.Contexts;
    29 import org.apidesign.html.json.spi.Technology;
    30 import org.apidesign.html.json.spi.Transfer;
    31 import org.apidesign.html.json.spi.WSTransfer;
    32 import org.apidesign.html.json.tck.KOTest;
    33 import org.apidesign.html.json.tck.KnockoutTCK;
    34 import org.openide.util.lookup.ServiceProvider;
    35 import org.testng.annotations.Factory;
    36 
    37 /**
    38  *
    39  * @author Jaroslav Tulach <jtulach@netbeans.org>
    40  */
    41 @ServiceProvider(service = KnockoutTCK.class)
    42 public final class Bck2BrwsrKnockoutTest extends KnockoutTCK {
    43     @Factory public static Object[] create() {
    44         return VMTest.newTests().
    45             withClasses(testClasses()).
    46             withLaunchers("bck2brwsr").
    47             withTestAnnotation(KOTest.class).
    48             build();
    49     }
    50     
    51     @Override
    52     public BrwsrCtx createContext() {
    53         return Contexts.newBuilder().
    54             register(Transfer.class, BrwsrCtxImpl.DEFAULT, 9).
    55             register(WSTransfer.class, BrwsrCtxImpl.DEFAULT, 9).
    56             register(Technology.class, BrwsrCtxImpl.DEFAULT, 9).build();
    57     }
    58 
    59 
    60     
    61     @Override
    62     public Object createJSON(Map<String, Object> values) {
    63         Object json = createJSON();
    64         
    65         for (Map.Entry<String, Object> entry : values.entrySet()) {
    66             putValue(json, entry.getKey(), entry.getValue());
    67         }
    68         return json;
    69     }
    70 
    71     @JavaScriptBody(args = {}, body = "return new Object();")
    72     private static native Object createJSON();
    73 
    74     @JavaScriptBody(args = { "json", "key", "value" }, body = "json[key] = value;")
    75     private static native void putValue(Object json, String key, Object value);
    76 
    77     @Override
    78     public Object executeScript(String script, Object[] arguments) {
    79         return execScript(script, arguments);
    80     }
    81     
    82     @JavaScriptBody(args = { "s", "args" }, body = 
    83         "var f = new Function(s); return f.apply(null, args);"
    84     )
    85     private static native Object execScript(String s, Object[] arguments);
    86     
    87     @JavaScriptBody(args = {  }, body = 
    88           "var h;"
    89         + "if (!!window && !!window.location && !!window.location.href)\n"
    90         + "  h = window.location.href;\n"
    91         + "else "
    92         + "  h = null;"
    93         + "return h;\n"
    94     )
    95     private static native String findBaseURL();
    96     
    97     @Override
    98     public URI prepareURL(String content, String mimeType, String[] parameters) {
    99         try {
   100             final URL baseURL = new URL(findBaseURL());
   101             StringBuilder sb = new StringBuilder();
   102             sb.append("/dynamic?mimeType=").append(mimeType);
   103             for (int i = 0; i < parameters.length; i++) {
   104                 sb.append("&param" + i).append("=").append(parameters[i]);
   105             }
   106             String mangle = content.replace("\n", "%0a")
   107                 .replace("\"", "\\\"").replace(" ", "%20");
   108             sb.append("&content=").append(mangle);
   109 
   110             URL query = new URL(baseURL, sb.toString());
   111             String uri = (String) query.getContent(new Class[] { String.class });
   112             URI connectTo = new URI(uri.trim());
   113             return connectTo;
   114         } catch (IOException ex) {
   115             throw new IllegalStateException(ex);
   116         } catch (URISyntaxException ex) {
   117             throw new IllegalStateException(ex);
   118         }
   119     }    
   120 }