| // Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| // @dart = 2.9 |
| |
| /// @assertion void write(Object obj) |
| /// Converts [obj] to a [String] by invoking [Object.toString] and adds the |
| /// encoding of the result to the target consumer. |
| /// @description Checks that [String] with non-ascii characters is correctly |
| /// added to the consumer with ASCII] encoding with [allowInvalid] set to [true]. |
| /// @author iarkh@unipro.ru |
| |
| import "dart:convert"; |
| import "dart:io"; |
| import "test.lib.dart"; |
| |
| String str = "1âã"; |
| List<int> expected = [49, 195, 162, 195, 163]; |
| |
| run_process() { stdout.write(str); } |
| |
| main(List<String> args) { |
| args.length > 0 ? run_process() : run_main( |
| new AsciiCodec(allowInvalid: true), expected); |
| } |