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

Side by Side Diff: tests/lib/convert/utf83_test.dart

Issue 19187002: Replace old utf8 decoder with new one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 5 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
« no previous file with comments | « tests/lib/convert/utf82_test.dart ('k') | tests/lib/convert/utf8_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 library utf8_test;
6 import "package:expect/expect.dart";
7 import 'dart:codec';
8 import 'dart:convert';
9
10 main() {
11 // Test that UTF8-decoder removes leading BOM.
12 Expect.equals("a", UTF8.decode([0xEF, 0xBB, 0xBF, 0x61]));
13 Expect.equals("a", UTF8.decoder.convert([0xEF, 0xBB, 0xBF, 0x61]));
14 Expect.equals("a", new Utf8Decoder().convert([0xEF, 0xBB, 0xBF, 0x61]));
15 Expect.equals("a",
16 UTF8.decode([0xEF, 0xBB, 0xBF, 0x61], allowMalformed: true));
17 Expect.equals("a", new Utf8Codec(allowMalformed: true)
18 .decode([0xEF, 0xBB, 0xBF, 0x61]));
19 Expect.equals("a", new Utf8Codec(allowMalformed: true)
20 .decoder.convert([0xEF, 0xBB, 0xBF, 0x61]));
21 Expect.equals("a", new Utf8Decoder(allowMalformed: true)
22 .convert([0xEF, 0xBB, 0xBF, 0x61]));
23 Expect.equals("", UTF8.decode([0xEF, 0xBB, 0xBF]));
24 Expect.equals("", UTF8.decoder.convert([0xEF, 0xBB, 0xBF]));
25 Expect.equals("", new Utf8Decoder().convert([0xEF, 0xBB, 0xBF]));
26 Expect.equals("",
27 UTF8.decode([0xEF, 0xBB, 0xBF], allowMalformed: true));
28 Expect.equals("", new Utf8Codec(allowMalformed: true)
29 .decode([0xEF, 0xBB, 0xBF]));
30 Expect.equals("", new Utf8Codec(allowMalformed: true)
31 .decoder.convert([0xEF, 0xBB, 0xBF]));
32 Expect.equals("", new Utf8Decoder(allowMalformed: true)
33 .convert([0xEF, 0xBB, 0xBF]));
34 Expect.equals("a\u{FEFF}", UTF8.decode([0x61, 0xEF, 0xBB, 0xBF]));
35 Expect.equals("a\u{FEFF}", UTF8.decoder.convert([0x61, 0xEF, 0xBB, 0xBF]));
36 Expect.equals("a\u{FEFF}",
37 new Utf8Decoder().convert([0x61, 0xEF, 0xBB, 0xBF]));
38 Expect.equals("a\u{FEFF}",
39 UTF8.decode([0x61, 0xEF, 0xBB, 0xBF], allowMalformed: true));
40 Expect.equals("a\u{FEFF}", new Utf8Codec(allowMalformed: true)
41 .decode([0x61, 0xEF, 0xBB, 0xBF]));
42 Expect.equals("a\u{FEFF}", new Utf8Codec(allowMalformed: true)
43 .decoder.convert([0x61, 0xEF, 0xBB, 0xBF]));
44 Expect.equals("a\u{FEFF}", new Utf8Decoder(allowMalformed: true)
45 .convert([0x61, 0xEF, 0xBB, 0xBF]));
46 }
OLDNEW
« no previous file with comments | « tests/lib/convert/utf82_test.dart ('k') | tests/lib/convert/utf8_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698