b101a7d002
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548 Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Leaf Petersen <leafp@google.com>
52 lines
1.2 KiB
Dart
52 lines
1.2 KiB
Dart
|
|
// @dart = 2.9
|
|
library WebSocketTest;
|
|
|
|
import 'dart:html';
|
|
|
|
import 'package:async_helper/async_minitest.dart';
|
|
|
|
main() {
|
|
group('supported', () {
|
|
test('supported', () {
|
|
expect(WebSocket.supported, true);
|
|
});
|
|
});
|
|
|
|
group('websocket', () {
|
|
var expectation = WebSocket.supported ? returnsNormally : throws;
|
|
|
|
test('constructorTest', () {
|
|
expect(() {
|
|
var socket = new WebSocket('ws://localhost/ws', 'chat');
|
|
expect(socket, isNotNull);
|
|
expect(socket, isInstanceOf<WebSocket>());
|
|
}, expectation);
|
|
});
|
|
|
|
if (WebSocket.supported) {
|
|
test('echo', () {
|
|
var socket = new WebSocket('ws://${window.location.host}/ws');
|
|
|
|
socket.onOpen.first.then((_) {
|
|
socket.send('hello!');
|
|
});
|
|
|
|
return socket.onMessage.first.then((MessageEvent e) {
|
|
expect(e.data, 'hello!');
|
|
socket.close();
|
|
});
|
|
});
|
|
|
|
test('error handling', () {
|
|
var socket = new WebSocket('ws://${window.location.host}/ws');
|
|
socket.onOpen.first.then((_) => socket.send('close-with-error'));
|
|
return socket.onError.first.then((e) {
|
|
print('$e was caught, yay!');
|
|
socket.close();
|
|
});
|
|
});
|
|
}
|
|
});
|
|
}
|