| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override | 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override |
| 5 | 5 |
| 6 library string_escaping_test; | 6 library string_escaping_test; |
| 7 | 7 |
| 8 import 'package:observatory/service_io.dart'; | 8 import 'package:observatory/service_io.dart'; |
| 9 import 'package:unittest/unittest.dart'; | 9 import 'package:unittest/unittest.dart'; |
| 10 import 'test_helper.dart'; | 10 import 'test_helper.dart'; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 longStringOdd = "."; | 44 longStringOdd = "."; |
| 45 for (int i = 0; i < 512; i++) longStringOdd += "𝄞"; | 45 for (int i = 0; i < 512; i++) longStringOdd += "𝄞"; |
| 46 | 46 |
| 47 malformedWithLeadSurrogate = "before" + "𝄞"[0] + "after"; | 47 malformedWithLeadSurrogate = "before" + "𝄞"[0] + "after"; |
| 48 malformedWithTrailSurrogate = "before" + "𝄞"[1] + "after"; | 48 malformedWithTrailSurrogate = "before" + "𝄞"[1] + "after"; |
| 49 } | 49 } |
| 50 | 50 |
| 51 var tests = [ | 51 var tests = [ |
| 52 | 52 |
| 53 (Isolate isolate) => | 53 (Isolate isolate) => |
| 54 isolate.rootLib.load().then((Library lib) { | 54 isolate.rootLibrary.load().then((Library lib) { |
| 55 expectFullString(String varName, String varValueAsString) { | 55 expectFullString(String varName, String varValueAsString) { |
| 56 Field field = lib.variables.singleWhere((v) => v.name == varName); | 56 Field field = lib.variables.singleWhere((v) => v.name == varName); |
| 57 Instance value = field.value; | 57 Instance value = field.value; |
| 58 expect(value.valueAsString, equals(varValueAsString)); | 58 expect(value.valueAsString, equals(varValueAsString)); |
| 59 expect(value.valueAsStringIsTruncated, isFalse); | 59 expect(value.valueAsStringIsTruncated, isFalse); |
| 60 } | 60 } |
| 61 expectTruncatedString(String varName, String varValueAsString) { | 61 expectTruncatedString(String varName, String varValueAsString) { |
| 62 Field field = lib.variables.singleWhere((v) => v.name == varName); | 62 Field field = lib.variables.singleWhere((v) => v.name == varName); |
| 63 Instance value = field.value; | 63 Instance value = field.value; |
| 64 expect(varValueAsString, startsWith(value.valueAsString)); | 64 expect(varValueAsString, startsWith(value.valueAsString)); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 78 expectFullString('nullInTheMiddle', nullInTheMiddle); | 78 expectFullString('nullInTheMiddle', nullInTheMiddle); |
| 79 expectTruncatedString('longStringEven', longStringEven); | 79 expectTruncatedString('longStringEven', longStringEven); |
| 80 expectTruncatedString('longStringOdd', longStringOdd); | 80 expectTruncatedString('longStringOdd', longStringOdd); |
| 81 expectFullString('malformedWithLeadSurrogate', malformedWithLeadSurrogate); | 81 expectFullString('malformedWithLeadSurrogate', malformedWithLeadSurrogate); |
| 82 expectFullString('malformedWithTrailSurrogate', malformedWithTrailSurrogate)
; | 82 expectFullString('malformedWithTrailSurrogate', malformedWithTrailSurrogate)
; |
| 83 }), | 83 }), |
| 84 | 84 |
| 85 ]; | 85 ]; |
| 86 | 86 |
| 87 main(args) => runIsolateTests(args, tests, testeeBefore: script); | 87 main(args) => runIsolateTests(args, tests, testeeBefore: script); |
| OLD | NEW |