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

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

Issue 1212823002: Fix some tests and exclude others from CRLF rewriting. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Add comments to trigger update of files. Created 5 years, 6 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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:convert'; 6 import 'dart:convert';
7 7
8 const String testEnglishPhrase = 8 const String testEnglishPhrase =
9 "The quick brown fox jumps over the lazy dog."; 9 "The quick brown fox jumps over the lazy dog.";
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 0xbd, 0xb2, 0xcf, 0x82, 0x20, 0xce, 0xb4, 0xe1, 80 0xbd, 0xb2, 0xcf, 0x82, 0x20, 0xce, 0xb4, 0xe1,
81 0xbd, 0xb2, 0xce, 0xbd, 0x20, 0xce, 0xb8, 0xe1, 81 0xbd, 0xb2, 0xce, 0xbd, 0x20, 0xce, 0xb8, 0xe1,
82 0xbd, 0xb0, 0x20, 0xce, 0xb2, 0xcf, 0x81, 0xe1, 82 0xbd, 0xb0, 0x20, 0xce, 0xb2, 0xcf, 0x81, 0xe1,
83 0xbf, 0xb6, 0x20, 0xcf, 0x80, 0xce, 0xb9, 0xe1, 83 0xbf, 0xb6, 0x20, 0xcf, 0x80, 0xce, 0xb9, 0xe1,
84 0xbd, 0xb0, 0x20, 0xcf, 0x83, 0xcf, 0x84, 0xe1, 84 0xbd, 0xb0, 0x20, 0xcf, 0x83, 0xcf, 0x84, 0xe1,
85 0xbd, 0xb8, 0x20, 0xcf, 0x87, 0xcf, 0x81, 0xcf, 85 0xbd, 0xb8, 0x20, 0xcf, 0x87, 0xcf, 0x81, 0xcf,
86 0x85, 0xcf, 0x83, 0xce, 0xb1, 0xcf, 0x86, 0xe1, 86 0x85, 0xcf, 0x83, 0xce, 0xb1, 0xcf, 0x86, 0xe1,
87 0xbd, 0xb6, 0x20, 0xce, 0xbe, 0xce, 0xad, 0xcf, 87 0xbd, 0xb6, 0x20, 0xce, 0xbe, 0xce, 0xad, 0xcf,
88 0x86, 0xcf, 0x89, 0xcf, 0x84, 0xce, 0xbf]; 88 0x86, 0xcf, 0x89, 0xcf, 0x84, 0xce, 0xbf];
89 89
90 const String testKatakanaPhrase = """ 90 const String testKatakanaPhrase = "イロハニホヘト チリヌルヲ ワカヨタレソ "
91 イロハニホヘト チリヌルヲ ワカヨタレソ ツネナラム 91 "ツネナラム ウヰノオクヤマ ケフコエテ アサキユメミシ ヱヒモセスン";
92 ウヰノオクヤマ ケフコエテ アサキユメミシ ヱヒモセスン""";
93 92
94 const List<int> testKatakanaUtf8 = const<int>[ 93 const List<int> testKatakanaUtf8 = const<int>[
95 0xe3, 0x82, 0xa4, 0xe3, 0x83, 0xad, 0xe3, 0x83, 94 0xe3, 0x82, 0xa4, 0xe3, 0x83, 0xad, 0xe3, 0x83,
96 0x8f, 0xe3, 0x83, 0x8b, 0xe3, 0x83, 0x9b, 0xe3, 95 0x8f, 0xe3, 0x83, 0x8b, 0xe3, 0x83, 0x9b, 0xe3,
97 0x83, 0x98, 0xe3, 0x83, 0x88, 0x20, 0xe3, 0x83, 96 0x83, 0x98, 0xe3, 0x83, 0x88, 0x20, 0xe3, 0x83,
98 0x81, 0xe3, 0x83, 0xaa, 0xe3, 0x83, 0x8c, 0xe3, 97 0x81, 0xe3, 0x83, 0xaa, 0xe3, 0x83, 0x8c, 0xe3,
99 0x83, 0xab, 0xe3, 0x83, 0xb2, 0x20, 0xe3, 0x83, 98 0x83, 0xab, 0xe3, 0x83, 0xb2, 0x20, 0xe3, 0x83,
100 0xaf, 0xe3, 0x82, 0xab, 0xe3, 0x83, 0xa8, 0xe3, 99 0xaf, 0xe3, 0x82, 0xab, 0xe3, 0x83, 0xa8, 0xe3,
101 0x82, 0xbf, 0xe3, 0x83, 0xac, 0xe3, 0x82, 0xbd, 100 0x82, 0xbf, 0xe3, 0x83, 0xac, 0xe3, 0x82, 0xbd,
102 0x20, 0xe3, 0x83, 0x84, 0xe3, 0x83, 0x8d, 0xe3, 101 0x20, 0xe3, 0x83, 0x84, 0xe3, 0x83, 0x8d, 0xe3,
103 0x83, 0x8a, 0xe3, 0x83, 0xa9, 0xe3, 0x83, 0xa0, 102 0x83, 0x8a, 0xe3, 0x83, 0xa9, 0xe3, 0x83, 0xa0,
104 0x0a, 0xe3, 0x82, 0xa6, 0xe3, 0x83, 0xb0, 0xe3, 103 0x20, 0xe3, 0x82, 0xa6, 0xe3, 0x83, 0xb0, 0xe3,
105 0x83, 0x8e, 0xe3, 0x82, 0xaa, 0xe3, 0x82, 0xaf, 104 0x83, 0x8e, 0xe3, 0x82, 0xaa, 0xe3, 0x82, 0xaf,
106 0xe3, 0x83, 0xa4, 0xe3, 0x83, 0x9e, 0x20, 0xe3, 105 0xe3, 0x83, 0xa4, 0xe3, 0x83, 0x9e, 0x20, 0xe3,
107 0x82, 0xb1, 0xe3, 0x83, 0x95, 0xe3, 0x82, 0xb3, 106 0x82, 0xb1, 0xe3, 0x83, 0x95, 0xe3, 0x82, 0xb3,
108 0xe3, 0x82, 0xa8, 0xe3, 0x83, 0x86, 0x20, 0xe3, 107 0xe3, 0x82, 0xa8, 0xe3, 0x83, 0x86, 0x20, 0xe3,
109 0x82, 0xa2, 0xe3, 0x82, 0xb5, 0xe3, 0x82, 0xad, 108 0x82, 0xa2, 0xe3, 0x82, 0xb5, 0xe3, 0x82, 0xad,
110 0xe3, 0x83, 0xa6, 0xe3, 0x83, 0xa1, 0xe3, 0x83, 109 0xe3, 0x83, 0xa6, 0xe3, 0x83, 0xa1, 0xe3, 0x83,
111 0x9f, 0xe3, 0x82, 0xb7, 0x20, 0xe3, 0x83, 0xb1, 110 0x9f, 0xe3, 0x82, 0xb7, 0x20, 0xe3, 0x83, 0xb1,
112 0xe3, 0x83, 0x92, 0xe3, 0x83, 0xa2, 0xe3, 0x82, 111 0xe3, 0x83, 0x92, 0xe3, 0x83, 0xa2, 0xe3, 0x82,
113 0xbb, 0xe3, 0x82, 0xb9, 0xe3, 0x83, 0xb3]; 112 0xbb, 0xe3, 0x82, 0xb9, 0xe3, 0x83, 0xb3];
114 113
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 431
433 Expect.stringEquals(testRussianPhrase, 432 Expect.stringEquals(testRussianPhrase,
434 decodeUtf8(testRussianUtf8), "Russian"); 433 decodeUtf8(testRussianUtf8), "Russian");
435 434
436 Expect.stringEquals(testGreekPhrase, 435 Expect.stringEquals(testGreekPhrase,
437 decodeUtf8(testGreekUtf8), "Greek"); 436 decodeUtf8(testGreekUtf8), "Greek");
438 437
439 Expect.stringEquals(testKatakanaPhrase, 438 Expect.stringEquals(testKatakanaPhrase,
440 decodeUtf8(testKatakanaUtf8), "Katakana"); 439 decodeUtf8(testKatakanaUtf8), "Katakana");
441 } 440 }
OLDNEW
« no previous file with comments | « tests/lib/convert/json_pretty_test.dart ('k') | tests/lib/mirrors/method_mirror_source_line_ending_cr.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698