vmtest/src/test/java/org/apidesign/bck2brwsr/tck/HttpResourceTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 31 Jan 2013 19:21:37 +0100
branchemul
changeset 626 f08eb4df84c1
parent 625 8efbe49b283f
child 638 f203b54b3d33
permissions -rw-r--r--
Introducing resource attribute for @HttpResource
     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     @HttpResource(path = "/bytes", content = "", resource = "0xfe", mimeType = "x-application/binary")
    59     @BrwsrTest
    60     public void testReadByte() throws Exception {
    61         URL url = new URL("http:/bytes");
    62         final Object res = url.getContent(new Class[] { byte[].class });
    63         assert res instanceof byte[] : "Expecting byte[]: " + res;
    64         byte[] arr = (byte[]) res;
    65         assert arr.length == 1 : "One byte " + arr.length;
    66         assert arr[0] == 0xfe : "It is 0xfe: " + Integer.toHexString(arr[0]);
    67     }
    68     
    69     @JavaScriptBody(args = { "url" }, body = 
    70           "var req = new XMLHttpRequest();\n"
    71         + "req.open('GET', url, false);\n"
    72         + "req.send();\n"
    73         + "return req.responseText;"
    74     )
    75     private static native String read(String url);
    76     
    77     
    78     @Factory
    79     public static Object[] create() {
    80         return VMTest.create(HttpResourceTest.class);
    81     }
    82 }