blob: 84c67a7e15dc4efcd1af0e9ab0448acd035dea00 [file] [log] [blame]
// Copyright (c) 2017, 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 Future addStream(Stream stream)
/// Sends data from a stream on WebSocket connection. Each data event from
/// stream will be send as a single WebSocket frame. The data from stream must
/// be either Strings, or List<int>s holding bytes.
/// @description Checks that the String data are sent on the WebSocket
/// connection from server.
/// @author a.semenov@unipro.ru
import "dart:io";
import "dart:convert";
import "dart:async";
import "../../../Utils/expect.dart";
import "../http_utils.dart";
const Utf8Codec CODEC = const Utf8Codec();
List<List<int>> BYTES = [CODEC.encode("Hello"), CODEC.encode(","), CODEC.encode("World")];
main() {
asyncTest<HttpServer>(
(HttpServer server) async =>
AsyncExpect.data(
BYTES,
await WebSocket.connect("ws://${server.address.address}:${server.port}/")
),
setup: () => spawnWebSocketServer(
(WebSocket ws) async {
await ws.addStream(new Stream.fromIterable(BYTES));
ws.close();
}
),
cleanup: (HttpServer server) => server.close()
);
}