gpt4 book ai didi

erlang - Erlang Eunit 测试套件的常用设置和拆卸方法

转载 作者:行者123 更新时间:2023-12-05 00:17:33 25 4
gpt4 key购买 nike

我正在尝试检查我在 MongoDB 中定义的所有索引是否正在被我的应用程序使用,并且没有额外的索引。我有一个实用程序可以为单个 Eunit 执行此操作测试套件。但是,我的一些组件有不止一个 Eunit测试套件,我想知道是否有一种方法可以在调用任何测试套件之前运行通用代码,然后在所有测试套件完成后运行通用拆卸代码。我正在使用 rebar调用 Eunit .

提前致谢。

最佳答案

只要eunit documentation for test representations解释说,测试集可以是深度列表。下面是一个示例模块,显示了外部 setup 的使用。测试是生成器的夹具,每个都提供一个内部 setup夹具。内setup固定装置对应于您现有的测试套件,每个测试套件都有自己的设置和清理功能。外setup夹具为内部套件提供通用设置和清理。

-module(t).
-compile(export_all).

-include_lib("eunit/include/eunit.hrl").

top_setup() ->
?debugMsg("top setup").

top_cleanup(_) ->
?debugMsg("top cleanup").

test_t1() ->
{setup,
fun() -> ?debugMsg("t1 setup") end,
fun(_) -> ?debugMsg("t1 cleanup") end,
[fun() -> ?debugMsg("t1 test 1") end,
fun() -> ?debugMsg("t1 test 2") end,
fun() -> ?debugMsg("t1 test 3") end]}.

test_t2() ->
{setup,
fun() -> ?debugMsg("t2 setup") end,
fun(_) -> ?debugMsg("t2 cleanup") end,
[fun() -> ?debugMsg("t2 test 1") end,
fun() -> ?debugMsg("t2 test 2") end,
fun() -> ?debugMsg("t2 test 3") end]}.

t_test_() ->
{setup,
fun top_setup/0,
fun top_cleanup/1,
[{generator, fun test_t1/0},
{generator, fun test_t2/0}]}.

编译这个模块,然后从 Erlang shell 运行它会产生预期的输出:
1> c(t).
{ok,t}
2> eunit:test(t).
/tmp/t.erl:7:<0.291.0>: top setup
/tmp/t.erl:14:<0.293.0>: t1 setup
/tmp/t.erl:16:<0.295.0>: t1 test 1
/tmp/t.erl:17:<0.295.0>: t1 test 2
/tmp/t.erl:18:<0.295.0>: t1 test 3
/tmp/t.erl:15:<0.293.0>: t1 cleanup
/tmp/t.erl:22:<0.293.0>: t2 setup
/tmp/t.erl:24:<0.300.0>: t2 test 1
/tmp/t.erl:25:<0.300.0>: t2 test 2
/tmp/t.erl:26:<0.300.0>: t2 test 3
/tmp/t.erl:23:<0.293.0>: t2 cleanup
/tmp/t.erl:10:<0.291.0>: top cleanup
All 6 tests passed.
ok

通用设置首先运行,然后每个套件由其自己的设置和清理包围运行,然后通用清理最后运行。

关于erlang - Erlang Eunit 测试套件的常用设置和拆卸方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40031689/

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