gpt4 book ai didi

erlang - 可以 mock 模拟 erlang :exit?

转载 作者:行者123 更新时间:2023-12-02 05:59:20 30 4
gpt4 key购买 nike

我想把它放在主管模块中:

stop() ->
exit(whereis(mousetrap_sup), kill).

所以一个简单的测试可能会这样做:

stop_invokes_exit_test() ->
meck:new(erlang, [unstick, passthrough]),
meck:expect(erlang, whereis, 1, a_pid),
meck:expect(erlang, exit, 2, true),
mousetrap_sup:stop(),
?assert(meck:called(erlang, exit, [a_pid, kill])).

毫不奇怪,它挂起了。

我知道在哪些地方可能无法通过测试来执行此代码,但是有什么办法吗?

最佳答案

来自 meck 文档

Meck will have trouble mocking certain modules since Meck works by recompiling and reloading modules. Since Erlang have a flat module namespace, replacing a module has to be done globally in the Erlang VM. This means certain modules cannot be mocked. The following is a non-exhaustive list of modules that can either be problematic to mock or not possible at all:

  • 二郎
  • 操作系统
  • 加密
  • 编译
  • 全局

所以不,你不能模拟退出。但是,您可以将 exit 调用包装在另一个函数中并 meck 该函数。

关于erlang - 可以 mock 模拟 erlang :exit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33291990/

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