ko-bck2brwsr/src/test/java/org/apidesign/html/ko2brwsr/Bck2BrwsrKnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 29 Apr 2013 12:50:19 +0200
changeset 1189 9f8b07dcbe79
child 1220 cf9ba1d883c5
permissions -rw-r--r--
Putting the bck2brwsr bindings into html.java.net repository
     1 /**
     2  * HTML via Java(tm) Language Bindings
     3  * Copyright (C) 2013 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. apidesign.org
    13  * designates this particular file as subject to the
    14  * "Classpath" exception as provided by apidesign.org
    15  * in the License file that accompanied this code.
    16  *
    17  * You should have received a copy of the GNU General Public License
    18  * along with this program. Look for COPYING file in the top folder.
    19  * If not, see http://wiki.apidesign.org/wiki/GPLwithClassPathException
    20  */
    21 package org.apidesign.html.ko2brwsr;
    22 
    23 import java.util.Map;
    24 import net.java.html.json.Context;
    25 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    26 import org.apidesign.bck2brwsr.vmtest.VMTest;
    27 import org.apidesign.html.json.tck.KnockoutTCK;
    28 import org.openide.util.lookup.ServiceProvider;
    29 import org.testng.annotations.Factory;
    30 
    31 /**
    32  *
    33  * @author Jaroslav Tulach <jtulach@netbeans.org>
    34  */
    35 @ServiceProvider(service = KnockoutTCK.class)
    36 public final class Bck2BrwsrKnockoutTest extends KnockoutTCK {
    37     @Factory public static Object[] create() {
    38         return VMTest.newTests().
    39             withClasses(testClasses()).
    40             withLaunchers("bck2brwsr").
    41             build();
    42     }
    43     
    44     @Override
    45     public Context createContext() {
    46         return BrwsrCntxt.DEFAULT;
    47     }
    48 
    49 
    50     
    51     @Override
    52     public Object createJSON(Map<String, Object> values) {
    53         Object json = createJSON();
    54         
    55         for (Map.Entry<String, Object> entry : values.entrySet()) {
    56             putValue(json, entry.getKey(), entry.getValue());
    57         }
    58         return json;
    59     }
    60 
    61     @JavaScriptBody(args = {}, body = "return new Object();")
    62     private static native Object createJSON();
    63 
    64     @JavaScriptBody(args = { "json", "key", "value" }, body = "json[key] = value;")
    65     private static native void putValue(Object json, String key, Object value);
    66 
    67     @Override
    68     public Object executeScript(String script, Object[] arguments) {
    69         return execScript(script, arguments);
    70     }
    71     
    72     @JavaScriptBody(args = { "s", "args" }, body = 
    73         "var f = new Function(s); return f.apply(null, args);"
    74     )
    75     private static native Object execScript(String s, Object[] arguments);
    76 }