blob: d7974e13a021a066a52632620e7b8f40eef89c24 [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
/// Future<RawSocketEvent> firstWhere (
/// bool test(T element), {
/// dynamic defaultValue(),
/// T orElse()
/// })
/// Finds the first element of this stream matching test.
/// . . .
/// If an error occurs, or if this stream ends without finding a match and with
/// no orElse function provided, the future will receive an error.
///
/// @description Checks that if an error occurs in [orElse] method, the future
/// will receive an error.
/// @author ngl@unipro.ru
import "dart:io";
import "dart:async";
import "../../../Utils/expect.dart";
check(test, rValue, expected) {
asyncStart();
var address = InternetAddress.loopbackIPv4;
RawDatagramSocket.bind(address, 0).then((producer) {
RawDatagramSocket.bind(address, 0).then((receiver) {
int sent = 0;
int counter = 0;
producer.send([sent++], address, receiver.port);
producer.send([sent++], address, receiver.port);
producer.send([sent], address, receiver.port);
producer.close();
Stream<RawSocketEvent> bcs = receiver.asBroadcastStream();
Future fValue = bcs.firstWhere(test, orElse: rValue);
fValue.then((value) {
Expect.fail('Should not be here.');
}).catchError((e) {
Expect.equals(expected, e);
}).whenComplete(() {
asyncEnd();
});
new Timer(const Duration(milliseconds: 200), () {
Expect.isNull(receiver.receive());
receiver.close();
});
bcs.listen((event) {
counter++;
receiver.receive();
}).onDone(() {
Expect.equals(4, counter);
});
});
});
}
main() {
Error error = new Error();
check((e) => e == null, () => throw 1, 1);
check((e) => e == 1, () => throw 3, 3);
check((e) => !(e is RawSocketEvent), () => throw error, error);
}