vmtest/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 31 Jan 2013 18:22:14 +0100
branchemul
changeset 624 e79ab81a7656
parent 623 4af0d3dedb9d
child 625 8efbe49b283f
permissions -rw-r--r--
Verify that URL can obtain String data
     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 java.net.URL;
    21 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    22 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    23 import org.apidesign.bck2brwsr.vmtest.HttpResource;
    24 import org.apidesign.bck2brwsr.vmtest.VMTest;
    25 import org.testng.annotations.Factory;
    26 
    27 /**
    28  *
    29  * @author Jaroslav Tulach <jtulach@netbeans.org>
    30  */
    31 public class HttpResourceTest {
    32     
    33     @HttpResource(path = "/xhr", content = "Hello Brwsr!", mimeType = "text/plain")
    34     @BrwsrTest
    35     public String testReadContentViaXHR() throws Exception {
    36         String msg = read("/xhr");
    37         assert "Hello Brwsr!".equals(msg) : "The message was " + msg;
    38         return msg;
    39     }
    40 
    41     @HttpResource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    42     @BrwsrTest
    43     public String testReadContentViaURL() throws Exception {
    44         URL url = new URL("http:/url");
    45         String msg = (String) url.getContent();
    46         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    47         return msg;
    48     }
    49     @HttpResource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    50     @BrwsrTest
    51     public String testReadContentViaURLWithStringParam() throws Exception {
    52         URL url = new URL("http:/url");
    53         String msg = (String) url.getContent(new Class[] { String.class });
    54         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    55         return msg;
    56     }
    57     
    58     @JavaScriptBody(args = { "url" }, body = 
    59           "var req = new XMLHttpRequest();\n"
    60         + "req.open('GET', url, false);\n"
    61         + "req.send();\n"
    62         + "return req.responseText;"
    63     )
    64     private static native String read(String url);
    65     
    66     
    67     @Factory
    68     public static Object[] create() {
    69         return VMTest.create(HttpResourceTest.class);
    70     }
    71 }