gpt4 book ai didi

ruby - 在 serverspec 的命令资源中使用变量

转载 作者:太空宇宙 更新时间:2023-11-03 16:16:42 24 4
gpt4 key购买 nike

我在 serverspec 配方中进行了以下测试 - 哈希只是 Chef 中描述的整个资源(我希望在某个时候将其通过管道传输)

# Test Folder Permissons
# hash taken from attributes
share = {
"name" => "example",
"sharepath" => "d:/example",
"fullshareaccess" => "everyone",
"ntfsfullcontrol" => "u-dom1/s37374",
"ntfsmodifyaccess" => "",
"ntfsreadaccess" => "everyone"
}

# Explicitly test individual permissions (base on NTFSSecurity module)
describe command ('get-ntfsaccess d:/example -account u-dom1\s37374') do
its(:stdout) { should include "FullControl" }
end

我遇到的问题是在命令资源中获取一个变量——我是 ruby​​ 的新手,想知道我是否遗漏了什么。

我希望命令资源调用接受变量而不是硬编码。

例如

describe command ('get-ntfsaccess d:/example -account "#{ntfsfullcontrol}"') do
its(:stdout) { should include "FullControl" }
end

我已经设法在 :stdout 测试中使用变量,但无法让它们在命令行中工作。

非常感谢任何帮助

最佳答案

您可以像这样在 Serverspec 测试中使用哈希中的变量(使用现代 RSpec 3):

describe command ("get-ntfsaccess #{share['sharepath']} -account #{share['ntfsfullcontrol']") do
its(:stdout) { is_expected.to include "FullControl" }
end

"#{}" 语法会将您的变量插入字符串中,hash[key] 语法将从您的散列中获取值。

您还可以迭代哈希以执行更多检查,如下所示:

share.each |key, value| do
describe command("test with #{key} #{value}") do
# first loop: test with name example
its(:stdout) { is_expected.to match(/foo/) }
end
end

关于ruby - 在 serverspec 的命令资源中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42345952/

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