blob: d6ee6a2a09c446fd6c5c984cbb0d75ce84f04303 [file] [log] [blame]
// Copyright (c) 2011, 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 catchError(Function onError, {bool test(Object error)})
/// If this future completes with an error, then test is first called with
/// the error value.
/// If test returns false, the exception is not handled by this catchError,
/// and the returned future completes with the same error and stack trace as
/// this future.
/// If test returns true, onError is called with the error and possibly stack
/// trace, and the returned future is completed with the result of this call in
/// exactly the same way as for then's onError.
/// @description Checks that if [test] returns false, [onError] is not called and
/// the returned future completes with the same error and stack trace
/// @author a.semenov@unipro.ru
import "dart:async";
import "../../../Utils/expect.dart";
main() {
List log = [];
StackTrace stackTrace = StackTrace.current;
var error = new Error();
asyncStart();
new Future.error(error, stackTrace)
.catchError(
(Object e) {
log.add(2);
log.add(e);
},
test: (Object e) {
log.add(1);
log.add(e);
return false;
}
)
.catchError(
(Object e, StackTrace st) {
Expect.listEquals([1, error], log);
Expect.identical(error, log[1]);
Expect.identical(error, e);
Expect.identical(stackTrace, st);
asyncEnd();
}
);
}