vmtest/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 01 Feb 2013 14:16:26 +0100
branchemul
changeset 638 f203b54b3d33
parent 626 f08eb4df84c1
child 667 5866e89ef568
permissions -rw-r--r--
URL.openStream works via XHR
     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.io.InputStream;
    21 import java.net.URL;
    22 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    23 import org.apidesign.bck2brwsr.vmtest.BrwsrTest;
    24 import org.apidesign.bck2brwsr.vmtest.HttpResource;
    25 import org.apidesign.bck2brwsr.vmtest.VMTest;
    26 import org.testng.annotations.Factory;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public class HttpResourceTest {
    33     
    34     @HttpResource(path = "/xhr", content = "Hello Brwsr!", mimeType = "text/plain")
    35     @BrwsrTest
    36     public String testReadContentViaXHR() throws Exception {
    37         String msg = read("/xhr");
    38         assert "Hello Brwsr!".equals(msg) : "The message was " + msg;
    39         return msg;
    40     }
    41 
    42     @HttpResource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    43     @BrwsrTest
    44     public String testReadContentViaURL() throws Exception {
    45         URL url = new URL("http:/url");
    46         String msg = (String) url.getContent();
    47         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    48         return msg;
    49     }
    50     @HttpResource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    51     @BrwsrTest
    52     public String testReadContentViaURLWithStringParam() throws Exception {
    53         URL url = new URL("http:/url");
    54         String msg = (String) url.getContent(new Class[] { String.class });
    55         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    56         return msg;
    57     }
    58 
    59     @HttpResource(path = "/bytes", content = "", resource = "0xfe", mimeType = "x-application/binary")
    60     @BrwsrTest
    61     public void testReadByte() throws Exception {
    62         URL url = new URL("http:/bytes");
    63         final Object res = url.getContent(new Class[] { byte[].class });
    64         assert res instanceof byte[] : "Expecting byte[]: " + res;
    65         byte[] arr = (byte[]) res;
    66         assert arr.length == 1 : "One byte " + arr.length;
    67         assert arr[0] == 0xfe : "It is 0xfe: " + Integer.toHexString(arr[0]);
    68     }
    69 
    70     @HttpResource(path = "/bytes", content = "", resource = "0xfe", mimeType = "x-application/binary")
    71     @BrwsrTest
    72     public void testReadByteViaInputStream() throws Exception {
    73         URL url = new URL("http:/bytes");
    74         InputStream is = url.openStream();
    75         byte[] arr = new byte[10];
    76         int len = is.read(arr);
    77         assert len == 1 : "One byte " + len;
    78         assert arr[0] == 0xfe : "It is 0xfe: " + Integer.toHexString(arr[0]);
    79     }
    80     
    81     @JavaScriptBody(args = { "url" }, body = 
    82           "var req = new XMLHttpRequest();\n"
    83         + "req.open('GET', url, false);\n"
    84         + "req.send();\n"
    85         + "return req.responseText;"
    86     )
    87     private static native String read(String url);
    88     
    89     
    90     @Factory
    91     public static Object[] create() {
    92         return VMTest.create(HttpResourceTest.class);
    93     }
    94 }