javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/KnockoutTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 22 Jan 2013 21:57:27 +0100
branchmodel
changeset 530 3ce069ec3312
child 763 ecd7294f1e17
permissions -rw-r--r--
Test to verify Knockout can handle String properties
     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.htmlpage.api.ComputedProperty;
    21 import org.apidesign.bck2brwsr.htmlpage.api.OnEvent;
    22 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    23 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    24 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    25 import org.apidesign.bck2brwsr.vmtest.HtmlFragment;
    26 import org.apidesign.bck2brwsr.vmtest.VMTest;
    27 import org.testng.annotations.Factory;
    28 
    29 /**
    30  *
    31  * @author Jaroslav Tulach <jtulach@netbeans.org>
    32  */
    33 @Page(xhtml="Knockout.xhtml", className="KnockoutModel", properties={
    34     @Property(name="name", type=String.class)
    35 }) 
    36 public class KnockoutTest {
    37     
    38     @HtmlFragment(
    39         "<h1 data-bind=\"text: helloMessage\">Loading Bck2Brwsr's Hello World...</h1>\n" +
    40         "Your name: <input id='input' data-bind=\"value: name\"></input>\n" +
    41         "<button id=\"hello\">Say Hello!</button>\n"
    42     )
    43     @BrwsrTest public void modifyValueAssertChangeInModel() {
    44         KnockoutModel m = new KnockoutModel();
    45         m.setName("Kukuc");
    46         m.applyBindings();
    47         assert "Kukuc".equals(m.INPUT.getValue()) : "Value is really kukuc: " + m.INPUT.getValue();
    48         m.INPUT.setValue("Jardo");
    49         m.triggerEvent(m.INPUT, OnEvent.CHANGE);
    50         assert "Jardo".equals(m.getName()) : "Name property updated: " + m.getName();
    51     }
    52     
    53     @ComputedProperty
    54     static String helloMessage(String name) {
    55         return "Hello " + name + "!";
    56     }
    57     
    58     @Factory
    59     public static Object[] create() {
    60         return VMTest.create(KnockoutTest.class);
    61     }
    62 }