rt/emul/compact/src/test/java/org/apidesign/bck2brwsr/tck/SystemTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 11 Dec 2013 08:22:17 +0100
changeset 1417 f45b7126d21d
parent 1416 a0a31f8f7dc1
permissions -rw-r--r--
In non-browser environment we need to define the console object for the test to succeed
     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.ByteArrayOutputStream;
    21 import java.io.PrintStream;
    22 import org.apidesign.bck2brwsr.core.ExtraJavaScript;
    23 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    24 import org.apidesign.bck2brwsr.vmtest.Compare;
    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 @ExtraJavaScript(resource = "/org/apidesign/bck2brwsr/tck/console.js")
    33 public class SystemTest {
    34     @Compare public boolean nonNullOSName() {
    35         return System.getProperty("os.name") != null;
    36     }
    37 
    38     @Compare public String captureStdOut() throws Exception {
    39         Object capture = initCapture();
    40         System.out.println("Ahoj");
    41         return textCapture(capture);
    42     }
    43     
    44     @JavaScriptBody(args = {}, body = ""
    45         + "var lines = [];"
    46         + "console.log = function(l) { lines.push(l); };"
    47         + "return lines;")
    48     Object initCapture() {
    49         ByteArrayOutputStream os = new ByteArrayOutputStream();
    50         PrintStream ps = new PrintStream(os);
    51         
    52         System.setOut(ps);
    53         return os;
    54     }
    55     
    56     @JavaScriptBody(args = { "o" }, body = "return o.join('');")
    57     String textCapture(Object o) throws java.io.IOException {
    58         ByteArrayOutputStream b = (ByteArrayOutputStream) o;
    59         return new String(b.toByteArray(), "UTF-8");
    60     }
    61     
    62     @Factory public static Object[] create() {
    63         return VMTest.create(SystemTest.class);
    64     }
    65 }