blob: adf082c98b2e5c5f6437c53d8ad4bc1558178ab9 [file] [log] [blame]
// Copyright (c) 2016, 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 If the errorAreFatal, onExit and/or onError parameters are
/// provided, the isolate will act as if, respectively, setErrorsFatal,
/// addOnExitListener and addErrorListener were called with the corresponding
/// parameter and was processed before the isolate starts running.
///
/// @description Check that if onError parameter is supplied, the isolate
/// captures and sends all errors on given send port, errorAreFatal is false.
/// The isolate is active.
/// @author a.semenov@unipro.ru
import "dart:isolate";
import "dart:async";
import "../../../Utils/expect.dart";
import "IsolateUtil.dart";
test() async {
ReceivePort errorPort = new ReceivePort();
Isolate.spawnUri(new Uri.file("spawnUri_A07_t02_isolate.dart"), [], null,
errorsAreFatal: false, onError: errorPort.sendPort);
var count = 0;
await for (var error in errorPort) {
Expect.isTrue(count < 2, "received unexpected data $error");
Expect.isTrue(error is List);
Expect.equals(2, error.length);
Expect.isTrue(error[0] is String);
Expect.isTrue(error[1] is String);
count++;
if (count == 2) {
new Future.delayed(TWO_SECONDS, () => errorPort.close());
}
}
asyncEnd();
}
main() {
asyncStart();
test();
}