1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
require 'spec_helper'
require 'r10k/source'
describe R10K::Source::Hash do
describe '.valid_environments_hash?' do
it "rejects strings" do
expect(R10K::Source::Hash.valid_environments_hash?('200 OK'))
.to eq false
end
end
let(:environments_hash) do
{
'production' => {
'remote' => 'https://git.example.com/puppet/control-repo.git',
'ref' => 'release-141',
'modules' => {
'puppetlabs-stdlib' => '6.1.0',
'puppetlabs-ntp' => '8.1.0',
'example-myapp1' => {
'git' => 'https://git.example.com/puppet/example-myapp1.git',
'ref' => 'v1.3.0'
}
}
},
'development' => {
'remote' => 'https://git.example.com/puppet/control-repo.git',
'ref' => 'master',
'modules' => {
'puppetlabs-stdlib' => '6.1.0',
'puppetlabs-ntp' => '8.1.0',
'example-myapp1' => {
'git' => 'https://git.example.com/puppet/example-myapp1.git',
'ref' => 'v1.3.1'
}
}
}
}
end
describe "with a prefix" do
subject do
described_class.new('hashsource', '/some/nonexistent/dir',
prefix: 'prefixed', environments: environments_hash)
end
it "prepends environment names with a prefix" do
environments = subject.environments
expect(environments[0].dirname).to eq 'prefixed_production'
expect(environments[1].dirname).to eq 'prefixed_development'
end
end
end
|