OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library utf8_test; | 5 library utf8_test; |
6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 import 'dart:convert'; | 7 import 'dart:convert'; |
8 | 8 |
9 String decode(List<int> bytes) => new Utf8Decoder().convert(bytes); | 9 String decode(List<int> bytes) { |
| 10 StringBuffer buffer = new StringBuffer(); |
| 11 ChunkedConversionSink stringSink = |
| 12 new StringConversionSink.fromStringSink(buffer); |
| 13 var byteSink = new Utf8Decoder().startChunkedConversion(stringSink); |
| 14 bytes.forEach((byte) { byteSink.add([byte]); }); |
| 15 byteSink.close(); |
| 16 return buffer.toString(); |
| 17 } |
10 | 18 |
11 main() { | 19 main() { |
12 // Google favorite: "Îñţérñåţîöñåļîžåţîờñ". | 20 // Google favorite: "Îñţérñåţîöñåļîžåţîờñ". |
13 String string = decode([0xc3, 0x8e, 0xc3, 0xb1, 0xc5, 0xa3, 0xc3, 0xa9, 0x72, | 21 String string = decode([0xc3, 0x8e, 0xc3, 0xb1, 0xc5, 0xa3, 0xc3, 0xa9, 0x72, |
14 0xc3, 0xb1, 0xc3, 0xa5, 0xc5, 0xa3, 0xc3, 0xae, 0xc3, | 22 0xc3, 0xb1, 0xc3, 0xa5, 0xc5, 0xa3, 0xc3, 0xae, 0xc3, |
15 0xb6, 0xc3, 0xb1, 0xc3, 0xa5, 0xc4, 0xbc, 0xc3, 0xae, | 23 0xb6, 0xc3, 0xb1, 0xc3, 0xa5, 0xc4, 0xbc, 0xc3, 0xae, |
16 0xc5, 0xbe, 0xc3, 0xa5, 0xc5, 0xa3, 0xc3, 0xae, 0xe1, | 24 0xc5, 0xbe, 0xc3, 0xa5, 0xc5, 0xa3, 0xc3, 0xae, 0xe1, |
17 0xbb, 0x9d, 0xc3, 0xb1]); | 25 0xbb, 0x9d, 0xc3, 0xb1]); |
18 Expect.stringEquals("Îñţérñåţîöñåļîžåţîờñ", string); | 26 Expect.stringEquals("Îñţérñåţîöñåļîžåţîờñ", string); |
19 | 27 |
(...skipping 15 matching lines...) Expand all Loading... |
35 0xa4, 0xbe, 0xe0, 0xa4, 0xae, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, | 43 0xa4, 0xbe, 0xe0, 0xa4, 0xae, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, |
36 0xb2, 0xe0, 0xa5, 0x88]); | 44 0xb2, 0xe0, 0xa5, 0x88]); |
37 Expect.stringEquals("िसवा अणामालै", string); | 45 Expect.stringEquals("िसवा अणामालै", string); |
38 | 46 |
39 // DESERET CAPITAL LETTER BEE, unicode 0x10412(0xD801+0xDC12) | 47 // DESERET CAPITAL LETTER BEE, unicode 0x10412(0xD801+0xDC12) |
40 // UTF-8: F0 90 90 92 | 48 // UTF-8: F0 90 90 92 |
41 string = decode([0xf0, 0x90, 0x90, 0x92]); | 49 string = decode([0xf0, 0x90, 0x90, 0x92]); |
42 Expect.equals(string.length, 2); | 50 Expect.equals(string.length, 2); |
43 Expect.equals("𐐒".length, 2); | 51 Expect.equals("𐐒".length, 2); |
44 Expect.stringEquals("𐐒", string); | 52 Expect.stringEquals("𐐒", string); |
45 | |
46 // TODO(ahe): Add tests of bad input. | |
47 } | 53 } |
OLD | NEW |