blob: a5c0c601ca83088772557e6b6a2020b9ff29068c [file] [log] [blame]
// 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.
/// @assertion Future pipe(StreamConsumer<RawSocketEvent> streamConsumer)
/// . . .
/// The returned future completes with the same result as the future returned by
/// StreamConsumer.close. If the call to StreamConsumer.addStream fails in some
/// way, this method fails in the same way.
///
/// @description Checks that the returned future completes with the same result
/// as the future returned by StreamConsumer.close. StreamConsumer.close returns
/// error.
/// @author ngl@unipro.ru
import "dart:async";
import "dart:io";
import "../../../Utils/expect.dart";
class LocalStreamConsumer<T> implements StreamConsumer<T> {
int _addStreamFutureCompleted = 0;
int _closeCallCount = 0;
StreamController _controller = new StreamController();
Future addStream(Stream<T> source) {
return _controller.addStream(source).then((x) {
_addStreamFutureCompleted++;
return x;
});
}
Future close() {
return _controller.close().then((x) {
_closeCallCount++;
return new Future.error(11);
});
}
Stream get stream => _controller.stream;
int get addStreamFutureCompleted => _addStreamFutureCompleted;
int get closeCallCount => _closeCallCount;
}
main() {
asyncStart();
var address = InternetAddress.loopbackIPv4;
RawDatagramSocket.bind(address, 0).then((producer) {
RawDatagramSocket.bind(address, 0).then((receiver) {
int sent = 0;
List list = [];
List errList = [];
LocalStreamConsumer<RawSocketEvent> sc =
new LocalStreamConsumer<RawSocketEvent>();
producer.send([sent++], address, receiver.port);
producer.send([sent], address, receiver.port);
producer.close();
receiver.close();
sc.stream.listen((x) {
list.add(x);
});
Future fValue = receiver.pipe(sc);
fValue.then((value) {
Expect.fail('Should not be here. Returned value is error.');
}).catchError((e) {
errList.add(e);
}).whenComplete(() {
Expect.equals(1, sc.closeCallCount);
Expect.equals(1, sc.addStreamFutureCompleted);
Expect.listEquals([RawSocketEvent.closed], list);
Expect.listEquals([11], errList);
asyncEnd();
});
});
});
}