- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法摆脱整个测试文件?整个测试套件?
类似的东西
@test 'dependent pgm unzip' {
command -v unzip || BAIL 'missing dependency unzip, bailing out'
}
编辑:
我可以做类似的事情
#!/usr/bin/env bats
if [[ -z "$(type -t unzip)" ]]; then
echo "Missing dep unzip"
exit 1
fi
@test ...
这对于在测试开始时运行的检查来说效果很好,只是它不会作为报告的一部分输出。
但是,如果我想确定源脚本是否正确定义了一个函数,如果没有,则放弃,添加这种测试可以防止生成任何类型的报告。不显示成功的测试。
最佳答案
>&2
将全局范围内的消息重定向到 stderr
。exit 1
。setup
函数,该函数使用 skip
仅中止该文件中的测试。setup
函数,该函数使用 return 1
使该文件中的测试失败。你的第二个例子差不多了。诀窍是将输出重定向到 stderr
1 .
从全局范围使用exit
或return 1
将停止整个测试套件。
#!/usr/bin/env bats
if [[ -z "$(type -t unzip)" ]]; then
echo "Missing dep unzip" >&2
return 1
fi
@test ...
缺点是中止文件中和之后的任何测试都将不会运行,即使这些测试通过了也是如此。
一个更细粒度的解决方案是添加一个setup
2 将跳过
的函数 3 如果依赖项不存在。
因为 setup
函数在它定义的文件中的每个测试之前被调用,如果缺少依赖项,将跳过该文件中的所有测试。
#!/usr/bin/env bats
setup(){
if [[ -z "$(type -t unzip)" ]]; then
skip "Missing dep unzip"
fi
}
@test ...
也有可能失败 具有未满足的依赖关系的测试。使用 return 1
来自测试的 setup
函数将使该文件中的所有测试失败:
#!/usr/bin/env bats
setup(){
if [[ -z "$(type -t unzip)" ]]; then
echo "Missing dep unzip"
return 1
fi
}
@test ...
由于消息输出不在全局范围内,因此不必将其重定向到 sdterr
(尽管这也可以)。
在 the page about Bats-Evaluation-Process in the wiki 的底部提到了这一点在手册中(如果你运行 man 7 bats
):
CODE OUTSIDE OF TEST CASES
You can include code in your test file outside of @test functions.
For example, this may be useful if you want to check for
dependencies and fail immediately if they´re not present. However,
any output that you print in code outside of @test, setup or teardown
functions must be redirected to stderr (>&2). Otherwise, the output
may cause Bats to fail by polluting the TAP stream on stdout.
有关设置
的详细信息,请参阅 https://github.com/bats-core/bats-core#setup-and-teardown-pre--and-post-test-hooks
有关skip
的详细信息,请参阅https://github.com/bats-core/bats-core#skip-easily-skip-tests
关于bats-core - 有没有办法从 bat 测试中保释出来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49991275/
我是一名优秀的程序员,十分优秀!