gpt4 book ai didi

unit-testing - Dart 单元测试应该在异常时失败

转载 作者:行者123 更新时间:2023-12-04 19:37:12 25 4
gpt4 key购买 nike

我有这个测试:

future f = neo4d.nodes.delete(1);
f.then(((_) {
})).catchError((e){
期望(e.statusCode,等于(409));
});
返回 f;
});

现在爆炸了,因为 e.statusCode是 404 而不是 409。我希望测试只是失败,但整个测试套件由于未捕获的异常而停止。
我如何捕获异常(并使测试失败)并阻止它破坏所有其他测试?

这是我运行上面的代码时得到的输出:

[2014-03-06 14:44:32.020] DEBUG http: R10: 9ms 内收到数据,状态为 404: [{
"message": "无法在数据库中找到 ID 为 [1] 的节点。",
“异常”:“NodeNotFoundException”,
"全名": "org.neo4j.server.rest.web.NodeNotFoundException",
"stacktrace": [ "org.neo4j.server.rest.web.DatabaseActions.node(DatabaseActions.java:183)", "org.neo4j.server.rest.web.DatabaseActions.deleteNode(DatabaseActions.java:233)", "org.neo4j.server.rest.web.RestfulGraphDatabase.deleteNode(RestfulGraphDatabase.java:279)", "java.lang.reflect.Method.invoke(Method.java:601)", "org.neo4j.server. rest.transactional.TransactionalRequestDispatcher.dispatch(TransactionalRequestDispatcher.java:139)", "org.neo4j.server.rest.security.SecurityFilter.doFilter(SecurityFilter.java:112)", "java.lang.Thread.run(Thread. java:722)"]
}]
Uncaught Error :预期:409
实际:404

堆栈跟踪:
#0 SimpleConfiguration.onExpectFailure (package:unittest/src/simple_configuration.dart:141:7)
#1 _ExpectFailureHandler.fail (package:unittest/src/simple_configuration.dart:15:28)
#2 DefaultFailureHandler.failMatch (package:unittest/src/expect.dart:117:9)
#3 期望(包:unittest/src/expect.dart:75:29)
#4 节点...(file:///Users/oskbor/Projects/neo4dart/test/alltests.dart:202:15)
#5 _invokeErrorHandler (dart:async/async_error.dart:12)
#6 _Future._propagateToListeners。 (dart:async/future_impl.dart:469)
#7 _rootRun (dart:async/zone.dart:683)
#8 _RootZone.run (dart:async/zone.dart:823)
#9 _Future._propagateToListeners (dart:async/future_impl.dart:445)
#10 _Future._propagateMultipleListeners (dart:async/future_impl.dart:384)
#11 _Future._propagateToListeners (dart:async/future_impl.dart:411)
#12 _Future._completeError (dart:async/future_impl.dart:315)
#13 _Future._asyncCompleteError。 (dart:async/future_impl.dart:367)
#14 _asyncRunCallback (dart:async/schedule_microtask.dart:18)
#15 _createTimer。 (dart:async-patch/timer_patch.dart:11)
#16 _Timer._createTimerHandler._handleTimeout (timer_impl.dart:151)
#17 _Timer._createTimerHandler。 (timer_impl.dart:166)
#18 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:93)

未处理的异常:
预期:409
实际:404

#0 _rootHandleUncaughtError .. (dart:async/zone.dart:677)
#1 _asyncRunCallback (dart:async/schedule_microtask.dart:18)
#2 _asyncRunCallback (dart:async/schedule_microtask.dart:21)
#3 _createTimer。 (dart:async-patch/timer_patch.dart:11)
#4 _Timer._createTimerHandler._handleTimeout (timer_impl.dart:151)
#5 _Timer._createTimerHandler._handleTimeout (timer_impl.dart:159)
#6 _Timer._createTimerHandler._handleTimeout (timer_impl.dart:159)
#7 _Timer._createTimerHandler。 (timer_impl.dart:166)
#8 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:93)

问候奥斯卡

最佳答案

异步函数,即返回 Future 的函数,可以“抛出”两种不同的方式:

它可以同步抛出,甚至一开始就不会返回 Future:

Future<int> doSomethingAsync() {
throw new Exception("No! I don't want to even get started!");
}

或者,它可以异步抛出 - 即返回一个 Future ,然后异步抛出一个错误而不是完成:
Future<int> doSomethingAsync() {
return new Future.error(new Exception("Here's your future, but it'll fail."));
}

你的异步调用
neo4d.nodes.delete(1)

必须是前一种类型:它甚至不返回 Future 就立即抛出。这就是为什么 .catchError 没有捕获异常的原因。而是炸毁整个测试套件。

您想要更新 neo4d.nodes.delete并使其异步抛出。或者,如果这无法完成,请将您的测试包装在一个很好的旧同步 try-catch 中:
  try {
neo4d.nodes.delete(1).then(((_) { expect(0, 1); }));
}
catch (e) {
expect(e.statusCode, equals(409));
}

关于unit-testing - Dart 单元测试应该在异常时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22226667/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com