3

假设我想要以下规格:

it { should allow_value("git://host.xz/path/to/repo.git/").for(:url) }
it { should allow_value("git://user@host.xz/path/to/repo.git/").for(:url) }
it { should allow_value("git://host.xz:123/path/to/repo.git/").for(:url) }
it { should allow_value("git://user@host.xz:123/path/to/repo.git/").for(:url) }
...

如果我可以这样写会更容易,更紧凑:

"git://{user@,}host.xz{:123,}/path/to/repo.git".expand.each do |p|
  it { should allow_value(p).for(:url) }
end

甚至更好:

"{git,ssh,http,https,rsync}://[user@]host.xz[:123]/path/to/repo.git[/]".expand.each do |p|
  it { should allow_value(p).for(:url) }
end

有哪些方法可以在 Ruby 中实现这一点?

编辑 我尝试的第一件事是basscomp,但我无法让它在 1.9.3 中工作。

[1] pry(main)> require 'bracecomp'
[2] pry(main)> 'server-{a,b}-{07..10}'.expand
TypeError: scan() yielded Symbol (must be Array[2])
from bracecomp.y:66:in `scan'
4

2 回答 2

4

怎么样

%w[git ssh http https rsync].product(['user@', nil], [':123', nil]).each do |protocol, user, port|
  it { should allow_value("#{protocol}://#{user}host.xz#{port}/path/to/repo.git").for(:url) }
end

不依赖外部库,每个 Ruby 开发人员都可以理解。

尽管这确实需要规范助手或自定义匹配器,但我认为。

于 2013-01-07T16:06:11.683 回答
1

大括号comp-0.1.2可用于执行大括号扩展。下面是取自 gem 主页的示例:

require 'bracecomp'
p 'server-{a,b}-{07..10}'.expand
#=> ["server-a-07", "server-a-08", "server-a-09", "server-a-10", "server-b-07", "server-b-08", "server-b-09", "server-b-10"]
p 'zone-{a..c}'.expand
#=> ["zone-a", "zone-b", "zone-c"]
于 2013-01-17T16:35:27.900 回答