gpt4 book ai didi

ruby - rspec/serverspec 服务测试总是失败

转载 作者:行者123 更新时间:2023-11-28 20:40:48 25 4
gpt4 key购买 nike

我相信这个问题可能与 serverspec service test returns incorrect failure 重复,但我包含了更多关于我的执行环境的信息。

我针对 AWS 上的 RHEL6 VM 执行了一系列成功的服务器规范测试。

然而,任何“服务”测试似乎都因匹配器 be_enabled 和 be_running 而失败。

我的 spec_helper.rb 中有以下内容:

set :os, :family => 'redhat', :release => '6', :arch => 'x86_64'

我为测试尝试了 serverspec 和 rspec 语法,但都失败了,因为它们运行相同的命令:

describe service('ntpd') do
it { should be_enabled }
it { should be_running }
end

it "is running ntpd" do
expect(service("ntpd")).to be_enabled
expect(service("ntpd")).to be_running
end


Failure/Error: it { should be_enabled }
expected Service "ntpd" to be enabled
sudo -p 'Password: ' /bin/sh -c chkconfig\ --list\ ntpd\ \|\ grep\ 3:on

Failure/Error: it { should be_running }
expected Service "ntpd" to be running
sudo -p 'Password: ' /bin/sh -c service\ ntpd\ status

但是,在服务器本地运行它们会成功:

$ sudo -p 'Password: ' /bin/sh -c chkconfig\ --list\ ntpd\ \|\ grep\ 3:on
ntpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
$ echo $?
0

$ sudo -p 'Password: ' /bin/sh -c service\ ntpd\ status
ntpd (pid 1101) is running...
$ echo $?
0

我尝试使用 pry-byebug 设置一些调试,但看起来不太简单,所以我暂时放弃了。

我正在运行 ruby​​ 2.0、serverspec 2.24、rspec 3.3

谁能帮我指明正确的方向?

最佳答案

我需要指定要检查的运行级别,然后一切正常。我认为这是 RHEL6/7 和 systemV/systemD 之间的一些向后兼容性问题,因为文档表明上述测试应该有效。

describe service('ntpd') do
it { should be_enabled.with_level(2) }
it { should be_enabled.with_level(3) }
it { should be_enabled.with_level(4) }
it { should be_enabled.with_level(5) }
it { should be_running }
end

关于ruby - rspec/serverspec 服务测试总是失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33567288/

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