Created
August 13, 2013 23:10
-
-
Save mgagne/6226631 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
describe 'swift::storage::node' do | |
let :facts do | |
{ :operatingsystem => 'Ubuntu', | |
:osfamily => 'Debian', | |
:processorcount => 1, | |
:concat_basedir => '/var/lib/puppet/concat', | |
} | |
end | |
let :pre_condition do | |
"class { 'ssh::server::install': } | |
class { 'swift': swift_hash_suffix => 'foo' } | |
class { 'swift::storage': storage_local_net_ip => '127.0.0.1' }" | |
end | |
context 'creating a storage node' do | |
let(:title) { '1' } | |
let :params do | |
{ :zone => '1', | |
:mnt_base_dir => '/srv/node' } | |
end | |
it { | |
should contain_ring_object_device('127.0.0.1:6010/1') | |
should contain_ring_container_device('127.0.0.1:6011/1') | |
should contain_ring_account_device('127.0.0.1:6012/1') | |
} | |
end | |
context 'when zone is not a number' do | |
let(:title) { '1' } | |
let :params do | |
{ :zone => 'invalid', | |
:mnt_base_dir => '/srv/node' } | |
end | |
it 'should raise an error' do | |
expect { | |
subject | |
}.to raise_error(Puppet::Error, /zone parameter must be an integer/) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment