Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: tests/standalone/io/string_decoder_test.dart

Issue 14696012: Make web-socket pass AutobanhTestSuite. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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();
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(
22 new StringBuffer(), 22 new StringBuffer(),
23 (b, e) { 23 (b, e) {
24 b.write(e); 24 b.write(e);
25 return b; 25 return b;
26 }) 26 })
27 .then((b) => b.toString()) 27 .then((b) => b.toString())
28 .then((decoded) { 28 .then((decoded) {
29 Expect.equals(7, decoded.length); 29 Expect.equals(8, decoded.length);
30 30
31 var replacementChar = '?'.codeUnitAt(0); 31 var replacementChar = '?'.codeUnitAt(0);
32 Expect.equals(0xd800, decoded.codeUnitAt(0)); 32 Expect.equals(0xd800, decoded.codeUnitAt(0));
33 Expect.equals(0xdc00, decoded.codeUnitAt(1)); 33 Expect.equals(0xdc00, decoded.codeUnitAt(1));
34 Expect.equals(0xdbff, decoded.codeUnitAt(2)); 34 Expect.equals(0xdbff, decoded.codeUnitAt(2));
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 }); 40 });
40 } 41 }
41 42
42 void testInvalid() { 43 void testInvalid() {
43 void invalid(var bytes, var outputLength) { 44 void invalid(var bytes, var outputLength) {
44 var controller = new StreamController(); 45 var controller = new StreamController();
45 controller.add(bytes); 46 controller.add(bytes);
46 controller.close(); 47 controller.close();
47 controller.stream.transform(new StringDecoder()).listen((string) { 48 controller.stream.transform(new StringDecoder()).listen((string) {
48 Expect.equals(outputLength, string.length); 49 Expect.equals(outputLength, string.length);
49 for (var i = 0; i < outputLength; i++) { 50 for (var i = 0; i < outputLength; i++) {
50 Expect.equals(0xFFFD, string.codeUnitAt(i)); 51 Expect.equals(0xFFFD, string.codeUnitAt(i));
51 } 52 }
52 }); 53 });
53 } 54 }
54 55
55 invalid([0x80], 1); 56 invalid([0x80], 1);
56 invalid([0xff], 1); 57 invalid([0xff], 1);
57 invalid([0xf0, 0xc0], 1); 58 invalid([0xf0, 0xc0], 1);
58 invalid([0xc0, 0x80], 1); 59 invalid([0xc0, 0x80], 1);
59 invalid([0xfd, 0x80, 0x80], 3); // Unfinished encoding. 60 invalid([0xfd, 0x80, 0x80], 3); // Unfinished encoding.
60 } 61 }
61 62
62 void main() { 63 void main() {
63 test(); 64 test();
64 testInvalid(); 65 testInvalid();
65 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698