javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/KnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 18 Feb 2013 19:42:02 +0100
branchmodel
changeset 763 ecd7294f1e17
parent 530 3ce069ec3312
child 767 2b1cf4f012f2
permissions -rw-r--r--
knockout.js can display our String arrays and update them when they change
     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 org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 import org.apidesign.bck2brwsr.htmlpage.api.ComputedProperty;
    22 import org.apidesign.bck2brwsr.htmlpage.api.OnEvent;
    23 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    24 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    25 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    26 import org.apidesign.bck2brwsr.vmtest.HtmlFragment;
    27 import org.apidesign.bck2brwsr.vmtest.VMTest;
    28 import org.testng.annotations.Factory;
    29 
    30 /**
    31  *
    32  * @author Jaroslav Tulach <jtulach@netbeans.org>
    33  */
    34 @Page(xhtml="Knockout.xhtml", className="KnockoutModel", properties={
    35     @Property(name="name", type=String.class),
    36     @Property(name="results", type=String.class, array = true)
    37 }) 
    38 public class KnockoutTest {
    39     
    40     @HtmlFragment(
    41         "<h1 data-bind=\"text: helloMessage\">Loading Bck2Brwsr's Hello World...</h1>\n" +
    42         "Your name: <input id='input' data-bind=\"value: name\"></input>\n" +
    43         "<button id=\"hello\">Say Hello!</button>\n"
    44     )
    45     @BrwsrTest public void modifyValueAssertChangeInModel() {
    46         KnockoutModel m = new KnockoutModel();
    47         m.setName("Kukuc");
    48         m.applyBindings();
    49         assert "Kukuc".equals(m.INPUT.getValue()) : "Value is really kukuc: " + m.INPUT.getValue();
    50         m.INPUT.setValue("Jardo");
    51         m.triggerEvent(m.INPUT, OnEvent.CHANGE);
    52         assert "Jardo".equals(m.getName()) : "Name property updated: " + m.getName();
    53     }
    54     
    55     @HtmlFragment(
    56         "<ul id='ul' data-bind='foreach: results'>\n"
    57         + "  <li><b data-bind='text: $data'></b></li>\n"
    58         + "</ul>\n"
    59     )
    60     @BrwsrTest public void displayContentOfArray() {
    61         KnockoutModel m = new KnockoutModel();
    62         m.getResults().add("Ahoj");
    63         m.applyBindings();
    64         
    65         int cnt = countChildren("ul");
    66         assert cnt == 1 : "One child, but was " + cnt;
    67         
    68         m.getResults().add("hello");
    69 
    70         cnt = countChildren("ul");
    71         assert cnt == 2 : "Two children now, but was " + cnt;
    72     }
    73     
    74     @ComputedProperty
    75     static String helloMessage(String name) {
    76         return "Hello " + name + "!";
    77     }
    78     
    79     @Factory
    80     public static Object[] create() {
    81         return VMTest.create(KnockoutTest.class);
    82     }
    83     
    84     @JavaScriptBody(args = { "id" }, body = 
    85           "var e = window.document.getElementById(id);\n "
    86         + "if (typeof e === 'undefined') return -2;\n "
    87         + "return e.children.length;\n "
    88     )
    89     private static native int countChildren(String id);
    90 }