javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/KnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Mar 2013 09:24:26 +0100
changeset 892 16fd25f3a75d
parent 879 af170d42b5b3
child 906 22358b42ec2a
permissions -rw-r--r--
Keep case of id tag when generating name of the field
     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.htmlpage;
    19 
    20 import java.util.List;
    21 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    22 import org.apidesign.bck2brwsr.htmlpage.api.ComputedProperty;
    23 import org.apidesign.bck2brwsr.htmlpage.api.OnEvent;
    24 import org.apidesign.bck2brwsr.htmlpage.api.OnFunction;
    25 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    26 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    27 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    28 import org.apidesign.bck2brwsr.vmtest.HtmlFragment;
    29 import org.apidesign.bck2brwsr.vmtest.VMTest;
    30 import org.testng.annotations.Factory;
    31 
    32 /**
    33  *
    34  * @author Jaroslav Tulach <jtulach@netbeans.org>
    35  */
    36 @Page(xhtml="Knockout.xhtml", className="KnockoutModel", properties={
    37     @Property(name="name", type=String.class),
    38     @Property(name="results", type=String.class, array = true),
    39     @Property(name="callbackCount", type=int.class)
    40 }) 
    41 public class KnockoutTest {
    42     
    43     @HtmlFragment(
    44         "<h1 data-bind=\"text: helloMessage\">Loading Bck2Brwsr's Hello World...</h1>\n" +
    45         "Your name: <input id='input' data-bind=\"value: name\"></input>\n" +
    46         "<button id=\"hello\">Say Hello!</button>\n"
    47     )
    48     @BrwsrTest public void modifyValueAssertChangeInModel() {
    49         KnockoutModel m = new KnockoutModel();
    50         m.setName("Kukuc");
    51         m.applyBindings();
    52         assert "Kukuc".equals(m.input.getValue()) : "Value is really kukuc: " + m.input.getValue();
    53         m.input.setValue("Jardo");
    54         m.triggerEvent(m.input, OnEvent.CHANGE);
    55         assert "Jardo".equals(m.getName()) : "Name property updated: " + m.getName();
    56     }
    57     
    58     @HtmlFragment(
    59         "<ul id='ul' data-bind='foreach: results'>\n"
    60         + "  <li data-bind='text: $data, click: $root.call'/>\n"
    61         + "</ul>\n"
    62     )
    63     @BrwsrTest public void displayContentOfArray() {
    64         KnockoutModel m = new KnockoutModel();
    65         m.getResults().add("Ahoj");
    66         m.applyBindings();
    67         
    68         int cnt = countChildren("ul");
    69         assert cnt == 1 : "One child, but was " + cnt;
    70         
    71         m.getResults().add("Hi");
    72 
    73         cnt = countChildren("ul");
    74         assert cnt == 2 : "Two children now, but was " + cnt;
    75         
    76         triggerChildClick("ul", 1);
    77         
    78         assert 1 == m.getCallbackCount() : "One callback " + m.getCallbackCount();
    79         assert "Hi".equals(m.getName()) : "We got callback from 2nd child " + m.getName();
    80     }
    81     
    82     @HtmlFragment(
    83         "<ul id='ul' data-bind='foreach: cmpResults'>\n"
    84         + "  <li><b data-bind='text: $data'></b></li>\n"
    85         + "</ul>\n"
    86     )
    87     @BrwsrTest public void displayContentOfDerivedArray() {
    88         KnockoutModel m = new KnockoutModel();
    89         m.getResults().add("Ahoj");
    90         m.applyBindings();
    91         
    92         int cnt = countChildren("ul");
    93         assert cnt == 1 : "One child, but was " + cnt;
    94         
    95         m.getResults().add("hello");
    96 
    97         cnt = countChildren("ul");
    98         assert cnt == 2 : "Two children now, but was " + cnt;
    99     }
   100     
   101     @OnFunction
   102     static void call(KnockoutModel m, String data) {
   103         m.setName(data);
   104         m.setCallbackCount(m.getCallbackCount() + 1);
   105     }
   106     
   107     @ComputedProperty
   108     static String helloMessage(String name) {
   109         return "Hello " + name + "!";
   110     }
   111     
   112     @ComputedProperty
   113     static List<String> cmpResults(List<String> results) {
   114         return results;
   115     }
   116     
   117     @Factory
   118     public static Object[] create() {
   119         return VMTest.create(KnockoutTest.class);
   120     }
   121     
   122     @JavaScriptBody(args = { "id" }, body = 
   123           "var e = window.document.getElementById(id);\n "
   124         + "if (typeof e === 'undefined') return -2;\n "
   125         + "return e.children.length;\n "
   126     )
   127     private static native int countChildren(String id);
   128 
   129     @JavaScriptBody(args = { "id", "pos" }, body = 
   130           "var e = window.document.getElementById(id);\n "
   131         + "var ev = window.document.createEvent('MouseEvents');\n "
   132         + "ev.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);\n "
   133         + "e.children[pos].dispatchEvent(ev);\n "
   134     )
   135     private static native void triggerChildClick(String id, int pos);
   136 }