| // 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] from latin letters is correctly added to |
| /// the consumer for any encoding. |
| /// @author iarkh@unipro.ru |
| |
| import "../../../Utils/expect.dart"; |
| import "dart:async"; |
| import "dart:convert"; |
| import "dart:io"; |
| |
| int called = 0; |
| |
| String str = "Testme"; |
| List encodings = [utf8, ascii, latin1, systemEncoding]; |
| List expected = [84, 101, 115, 116, 109, 101]; |
| |
| class MyStreamConsumer extends StreamConsumer<List<int>> { |
| |
| Future addStream(Stream<List<int>> stream) { |
| stream.toList().then((x) { |
| Expect.listEquals(expected, x[0]); |
| called++; |
| }); |
| return new Future(() {}); |
| } |
| |
| Future close() { return new Future(() {}); } |
| } |
| |
| test() async { |
| encodings.forEach((enc) async { |
| called = 0; |
| StreamConsumer consumer = new MyStreamConsumer(); |
| IOSink sink = new IOSink(consumer, encoding: enc); |
| sink.write(str); |
| await sink.close(); |
| Expect.equals(1, called); |
| }); |
| asyncEnd(); |
| } |
| |
| main() { |
| asyncStart(); |
| test(); |
| } |