vmtest/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 31 Jan 2013 17:39:47 +0100
branchemul
changeset 623 4af0d3dedb9d
child 624 e79ab81a7656
permissions -rw-r--r--
@HttpResource allows a test to connect back to the server and read static resource
     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.tck;
    19 
    20 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    22 import org.apidesign.bck2brwsr.vmtest.HttpResource;
    23 import org.apidesign.bck2brwsr.vmtest.VMTest;
    24 import org.testng.annotations.Factory;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public class HttpResourceTest {
    31     
    32     @HttpResource(path = "/xhr", content = "Hello Brwsr!", mimeType = "text/plain")
    33     @BrwsrTest
    34     public String testReadContentViaXHR() throws Exception {
    35         String msg = read("/xhr");
    36         assert "Hello Brwsr!".equals(msg) : "The message was " + msg;
    37         return msg;
    38     }
    39     
    40     @JavaScriptBody(args = { "url" }, body = 
    41           "var req = new XMLHttpRequest();\n"
    42         + "req.open('GET', url, false);\n"
    43         + "req.send();\n"
    44         + "return req.responseText;"
    45     )
    46     private static native String read(String url);
    47     
    48     
    49     @Factory
    50     public static Object[] create() {
    51         return VMTest.create(HttpResourceTest.class);
    52     }
    53 }