rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Nov 2014 19:32:00 +0100
changeset 1723 3a1f262311cf
parent 1034 rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java@28dc692f3b11
child 1787 ea12a3bb4b33
permissions -rw-r--r--
Separating compact profile tests into own project, so launcher.http can depend on compact profile JAR
     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.Http;
    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     @Http({
    35         @Http.Resource(path = "/xhr", content = "Hello Brwsr!", mimeType = "text/plain")
    36     })
    37     @BrwsrTest
    38     
    39     
    40     public String testReadContentViaXHR() throws Exception {
    41         String msg = read("/xhr");
    42         assert "Hello Brwsr!".equals(msg) : "The message was " + msg;
    43         return msg;
    44     }
    45 
    46     @Http({
    47         @Http.Resource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    48     })
    49     @BrwsrTest
    50     public String testReadContentViaURL() throws Exception {
    51         URL url = new URL("http:/url");
    52         String msg = (String) url.getContent();
    53         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    54         return msg;
    55     }
    56     @Http({
    57         @Http.Resource(path = "/url", content = "Hello via URL!", mimeType = "text/plain")
    58     })
    59     @BrwsrTest
    60     public String testReadContentViaURLWithStringParam() throws Exception {
    61         URL url = new URL("http:/url");
    62         String msg = (String) url.getContent(new Class[] { String.class });
    63         assert "Hello via URL!".equals(msg) : "The message was " + msg;
    64         return msg;
    65     }
    66 
    67     @Http({
    68         @Http.Resource(path = "/bytes", content = "", resource = "0xfe", mimeType = "x-application/binary")
    69     })
    70     @BrwsrTest
    71     public void testReadByte() throws Exception {
    72         URL url = new URL("http:/bytes");
    73         final Object res = url.getContent(new Class[] { byte[].class });
    74         assert res instanceof byte[] : "Expecting byte[]: " + res;
    75         byte[] arr = (byte[]) res;
    76         assert arr.length == 1 : "One byte " + arr.length;
    77         assert arr[0] == 0xfe : "It is 0xfe: " + Integer.toHexString(arr[0]);
    78     }
    79 
    80     @Http({
    81         @Http.Resource(path = "/bytes", content = "", resource = "0xfe", mimeType = "x-application/binary")
    82     })
    83     @BrwsrTest
    84     public void testReadByteViaInputStream() throws Exception {
    85         URL url = new URL("http:/bytes");
    86         InputStream is = url.openStream();
    87         byte[] arr = new byte[10];
    88         int len = is.read(arr);
    89         assert len == 1 : "One byte " + len;
    90         assert arr[0] == 0xfe : "It is 0xfe: " + Integer.toHexString(arr[0]);
    91     }
    92     
    93     @JavaScriptBody(args = { "url" }, body = 
    94           "var req = new XMLHttpRequest();\n"
    95         + "req.open('GET', url, false);\n"
    96         + "req.send();\n"
    97         + "return req.responseText;"
    98     )
    99     private static native String read(String url);
   100     
   101     
   102     @Factory
   103     public static Object[] create() {
   104         return VMTest.create(HttpResourceTest.class);
   105     }
   106 }