| OLD | NEW |
| 1 // Copyright (c) 2013, 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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import "dart:async"; | 6 import "dart:async"; |
| 7 import "dart:io"; | 7 import "dart:io"; |
| 8 | 8 |
| 9 void test() { | 9 void test() { |
| 10 // Code point U+10FFFF is the largest code point supported by Dart. | 10 // Code point U+10FFFF is the largest code point supported by Dart. |
| 11 var controller = new StreamController(); | 11 var controller = new StreamController(sync: true); |
| 12 controller.add([0xf0, 0x90, 0x80, 0x80]); // U+10000 | 12 controller.add([0xf0, 0x90, 0x80, 0x80]); // U+10000 |
| 13 controller.add([0xf4, 0x8f, 0xbf, 0xbf]); // U+10FFFF | 13 controller.add([0xf4, 0x8f, 0xbf, 0xbf]); // U+10FFFF |
| 14 controller.add([0xf4, 0x90, 0x80, 0x80]); // U+110000 | 14 controller.add([0xf4, 0x90, 0x80, 0x80]); // U+110000 |
| 15 controller.add([0xfa, 0x80, 0x80, 0x80, 0x80]); // U+2000000 | 15 controller.add([0xfa, 0x80, 0x80, 0x80, 0x80]); // U+2000000 |
| 16 controller.add([0xfd, 0x80, 0x80, 0x80, 0x80, 0x80]); // U+40000000 | 16 controller.add([0xfd, 0x80, 0x80, 0x80, 0x80, 0x80]); // U+40000000 |
| 17 controller.close(); | 17 controller.close(); |
| 18 | 18 |
| 19 var decoder = new StringDecoder(Encoding.UTF_8, '?'.codeUnitAt(0)); | 19 var decoder = new StringDecoder(Encoding.UTF_8, '?'.codeUnitAt(0)); |
| 20 var stream = controller.stream.transform(decoder); | 20 var stream = controller.stream.transform(decoder); |
| 21 stream.fold( | 21 stream.fold( |
| (...skipping 13 matching lines...) Expand all Loading... |
| 35 Expect.equals(0xdfff, decoded.codeUnitAt(3)); | 35 Expect.equals(0xdfff, decoded.codeUnitAt(3)); |
| 36 Expect.equals(replacementChar, decoded.codeUnitAt(4)); | 36 Expect.equals(replacementChar, decoded.codeUnitAt(4)); |
| 37 Expect.equals(replacementChar, decoded.codeUnitAt(5)); | 37 Expect.equals(replacementChar, decoded.codeUnitAt(5)); |
| 38 Expect.equals(replacementChar, decoded.codeUnitAt(6)); | 38 Expect.equals(replacementChar, decoded.codeUnitAt(6)); |
| 39 Expect.equals(replacementChar, decoded.codeUnitAt(7)); | 39 Expect.equals(replacementChar, decoded.codeUnitAt(7)); |
| 40 }); | 40 }); |
| 41 } | 41 } |
| 42 | 42 |
| 43 void testInvalid() { | 43 void testInvalid() { |
| 44 void invalid(var bytes, var outputLength) { | 44 void invalid(var bytes, var outputLength) { |
| 45 var controller = new StreamController(); | 45 var controller = new StreamController(sync: true); |
| 46 controller.add(bytes); | 46 controller.add(bytes); |
| 47 controller.close(); | 47 controller.close(); |
| 48 controller.stream.transform(new StringDecoder()).listen((string) { | 48 controller.stream.transform(new StringDecoder()).listen((string) { |
| 49 Expect.equals(outputLength, string.length); | 49 Expect.equals(outputLength, string.length); |
| 50 for (var i = 0; i < outputLength; i++) { | 50 for (var i = 0; i < outputLength; i++) { |
| 51 Expect.equals(0xFFFD, string.codeUnitAt(i)); | 51 Expect.equals(0xFFFD, string.codeUnitAt(i)); |
| 52 } | 52 } |
| 53 }); | 53 }); |
| 54 } | 54 } |
| 55 | 55 |
| 56 invalid([0x80], 1); | 56 invalid([0x80], 1); |
| 57 invalid([0xff], 1); | 57 invalid([0xff], 1); |
| 58 invalid([0xf0, 0xc0], 1); | 58 invalid([0xf0, 0xc0], 1); |
| 59 invalid([0xc0, 0x80], 1); | 59 invalid([0xc0, 0x80], 1); |
| 60 invalid([0xfd, 0x80, 0x80], 3); // Unfinished encoding. | 60 invalid([0xfd, 0x80, 0x80], 3); // Unfinished encoding. |
| 61 } | 61 } |
| 62 | 62 |
| 63 void main() { | 63 void main() { |
| 64 test(); | 64 test(); |
| 65 testInvalid(); | 65 testInvalid(); |
| 66 } | 66 } |
| OLD | NEW |