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

Side by Side Diff: test/escape_test.dart

Issue 1135653004: pkg/(unit)test: include a copy of old matcher (Closed) Base URL: https://github.com/dart-lang/test.git@stable
Patch Set: another nit Created 5 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
« no previous file with comments | « test/core_matchers_test.dart ('k') | test/future_matchers_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) 2015, 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 unittest.matcher.escape_test;
6
7 import 'package:unittest/unittest.dart';
8 import 'package:unittest/src/matcher/util.dart';
9
10 void main() {
11 group('escaping should work with', () {
12 _testEscaping('no escaped chars', 'Hello, world!', 'Hello, world!');
13 _testEscaping('newline', '\n', r'\n');
14 _testEscaping('carriage return', '\r', r'\r');
15 _testEscaping('form feed', '\f', r'\f');
16 _testEscaping('backspace', '\b', r'\b');
17 _testEscaping('tab', '\t', r'\t');
18 _testEscaping('vertical tab', '\v', r'\v');
19 _testEscaping('null byte', '\x00', r'\x00');
20 _testEscaping('ASCII control character', '\x11', r'\x11');
21 _testEscaping('delete', '\x7F', r'\x7F');
22 _testEscaping('escape combos', r'\n', r'\\n');
23 _testEscaping('All characters',
24 'A new line\nA charriage return\rA form feed\fA backspace\b'
25 'A tab\tA vertical tab\vA slash\\A null byte\x00A control char\x1D'
26 'A delete\x7F',
27 r'A new line\nA charriage return\rA form feed\fA backspace\b'
28 r'A tab\tA vertical tab\vA slash\\A null byte\x00A control char\x1D'
29 r'A delete\x7F');
30 });
31
32 group('unequal strings remain unequal when escaped', () {
33 _testUnequalStrings('with a newline', '\n', r'\n');
34 _testUnequalStrings('with slash literals', '\\', r'\\');
35 });
36 }
37
38 /// Creates a [test] with name [name] that verifies [source] escapes to value
39 /// [target].
40 void _testEscaping(String name, String source, String target) {
41 test(name, () {
42 var escaped = escape(source);
43 expect(escaped == target, isTrue,
44 reason: "Expected escaped value: $target\n"
45 " Actual escaped value: $escaped");
46 });
47 }
48
49 /// Creates a [test] with name [name] that ensures two different [String] values
50 /// [s1] and [s2] remain unequal when escaped.
51 void _testUnequalStrings(String name, String s1, String s2) {
52 test(name, () {
53 // Explicitly not using the equals matcher
54 expect(s1 != s2, isTrue, reason: 'The source values should be unequal');
55
56 var escapedS1 = escape(s1);
57 var escapedS2 = escape(s2);
58
59 // Explicitly not using the equals matcher
60 expect(escapedS1 != escapedS2, isTrue,
61 reason: 'Unequal strings, when escaped, should remain unequal.');
62 });
63 }
OLDNEW
« no previous file with comments | « test/core_matchers_test.dart ('k') | test/future_matchers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698