emul/compact/src/test/java/org/apidesign/bck2brwsr/compact/tck/ReaderTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 12 Feb 2013 12:07:55 +0100
changeset 714 ef50c4f07e4f
parent 693 92b628f99997
child 735 419d8802bcba
permissions -rw-r--r--
Explicitly specify UTF-8
     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.compact.tck;
    19 
    20 import java.io.ByteArrayInputStream;
    21 import java.io.IOException;
    22 import java.io.InputStreamReader;
    23 import java.io.UnsupportedEncodingException;
    24 import java.util.Arrays;
    25 import org.apidesign.bck2brwsr.vmtest.Compare;
    26 import org.apidesign.bck2brwsr.vmtest.VMTest;
    27 import org.testng.annotations.Factory;
    28 
    29 /**
    30  *
    31  * @author Jaroslav Tulach <jtulach@netbeans.org>
    32  */
    33 public class ReaderTest {
    34     @Compare public String readUTFString() throws IOException {
    35         byte[] arr = { 
    36             (byte)-59, (byte)-67, (byte)108, (byte)117, (byte)-59, (byte)-91, 
    37             (byte)111, (byte)117, (byte)-60, (byte)-115, (byte)107, (byte)-61, 
    38             (byte)-67, (byte)32, (byte)107, (byte)-59, (byte)-81, (byte)-59, 
    39             (byte)-120 
    40         };
    41         ByteArrayInputStream is = new ByteArrayInputStream(arr);
    42         InputStreamReader r = new InputStreamReader(is);
    43         
    44         StringBuilder sb = new StringBuilder();
    45         for (;;) {
    46             int ch = r.read();
    47             if (ch == -1) {
    48                 break;
    49             }
    50             sb.append((char)ch);
    51         }
    52         return sb.toString().toString();
    53     }
    54     @Compare public String stringToBytes() throws UnsupportedEncodingException {
    55         return Arrays.toString("\u017dlu\u0165ou\u010dk\u00fd k\u016f\u0148".getBytes("UTF-8"));
    56     }
    57     
    58     @Factory public static Object[] create() {
    59         return VMTest.create(ReaderTest.class);
    60     }
    61 }