OLD | NEW |
(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 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 } |
OLD | NEW |