Chef Serverspec 不应该听
Chef Serverspec should not listen
从这个link我可以看出http://serverspec.org/resource_types.html#port
describe port(80) do
it { should be_listening }
end
我想测试一下它的反面。假设我禁用了一个端口并且我不想让任何东西监听那个端口。
正确的测试用例应该是什么?
刚刚开始厨房服务器规格测试
应该是这样的:-
describe port(80) do
it { should_not be_listening }
end
您可以在同一文档中参考:http://serverspec.org/resource_types.html#x509_private_key
从这个link我可以看出http://serverspec.org/resource_types.html#port
describe port(80) do
it { should be_listening }
end
我想测试一下它的反面。假设我禁用了一个端口并且我不想让任何东西监听那个端口。
正确的测试用例应该是什么?
刚刚开始厨房服务器规格测试
应该是这样的:-
describe port(80) do
it { should_not be_listening }
end
您可以在同一文档中参考:http://serverspec.org/resource_types.html#x509_private_key