javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/ElementGeneratorTest.java
author Jan Horvath <jan.horvath@oracle.com>
Mon, 06 May 2013 16:41:31 +0200
branchelements
changeset 1079 24b95d90955a
parent 866 9b4751828ceb
permissions -rw-r--r--
Adding test for Element.setText()
     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.Map;
    21 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    22 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    23 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    24 import org.apidesign.bck2brwsr.vmtest.HtmlFragment;
    25 import org.apidesign.bck2brwsr.vmtest.VMTest;
    26 import static org.testng.Assert.assertEquals;
    27 import org.testng.annotations.Factory;
    28 import org.testng.annotations.Test;
    29 
    30 /**
    31  *
    32  * @author Jan Horvath <jhorvath@netbeans.org>
    33  */
    34 @Page(xhtml = "Elements.html")
    35 public class ElementGeneratorTest {
    36     
    37     @Test public void testGetAttributes() {
    38         ElementGenerator gen = new ElementGenerator(null);
    39         Map<String, String> attrs = gen.getAttributes("input");
    40         assertEquals(attrs.get("width"), "Integer", "Expected type of width attribute is Integer");
    41     }
    42     
    43     @HtmlFragment(
    44           "<span id='mySpan'>"
    45         + "</span>\n"
    46     )
    47     @BrwsrTest public void testInnerHTML() {
    48         Elements e = new Elements();
    49         e.mySpan.setText("<span id='inserted'>inserted text</span>");
    50         String in = getInnerHTML("inserted");
    51         assert "inserted text".equals(in) : "Inserted element was not found";
    52     }
    53     
    54     @JavaScriptBody(args = { "id" }, body = 
    55           "var e = window.document.getElementById(id);\n "
    56         + "return e.innerHTML;"
    57     )
    58     private static native String getInnerHTML(String id);
    59     
    60     @Factory public static Object[] create() {
    61         return VMTest.create(ElementGeneratorTest.class);
    62     }
    63 }