
For some of the boxes a new version has come out, for others there was an upgrade in the minor release. Change-Id: I1ff13eefdaa6676536b9ac38c15beba9849c3751
162 lines
4.4 KiB
Ruby
162 lines
4.4 KiB
Ruby
#
|
|
# Copyright (C) 2014 Catalyst IT Limited.
|
|
# Copyright (C) 2014 Nine Internet Solutions AG
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# Author: Ricardo Rocha <ricardo@catalyst.net.nz>
|
|
# Author: David Gurtner <aldavud@crimson.ch>
|
|
#
|
|
require 'spec_helper_system'
|
|
|
|
describe 'ceph::pool' do
|
|
|
|
releases = ENV['RELEASES'] ? ENV['RELEASES'].split : [ 'dumpling', 'firefly', 'giant' ]
|
|
fsid = 'a4807c9a-e76f-4666-a297-6d6cbc922e3a'
|
|
mon_host = '$::ipaddress'
|
|
# passing it directly as unqoted array is not supported everywhere
|
|
packages = "[ 'python-ceph', 'ceph-common', 'librados2', 'librbd1', 'libcephfs1' ]"
|
|
|
|
releases.each do |release|
|
|
describe release do
|
|
before(:all) do
|
|
pp = <<-EOS
|
|
class { 'ceph::repo':
|
|
release => '#{release}',
|
|
}
|
|
class { 'ceph':
|
|
fsid => '#{fsid}',
|
|
mon_host => #{mon_host},
|
|
authentication_type => 'none',
|
|
}
|
|
ceph::mon { 'a':
|
|
public_addr => #{mon_host},
|
|
authentication_type => 'none',
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should_not == 1
|
|
end
|
|
end
|
|
|
|
after(:all) do
|
|
pp = <<-EOS
|
|
ceph::mon { 'a': ensure => absent }
|
|
->
|
|
file { '/var/lib/ceph/bootstrap-osd/ceph.keyring': ensure => absent }
|
|
->
|
|
package { #{packages}:
|
|
ensure => purged
|
|
}
|
|
class { 'ceph::repo':
|
|
ensure => absent,
|
|
release => '#{release}',
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should_not == 1
|
|
end
|
|
end
|
|
|
|
it 'should install and create pool volumes' do
|
|
pp = <<-EOS
|
|
ceph::pool { 'volumes':
|
|
pg_num => 64,
|
|
pgp_num => 64,
|
|
size => 3,
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should_not == 1
|
|
r.refresh
|
|
r.exit_code.should == 0
|
|
end
|
|
|
|
shell 'ceph osd pool get volumes pg_num' do |r|
|
|
r.stdout.should =~ /pg_num: 64/
|
|
r.stderr.should be_empty
|
|
r.exit_code.should be_zero
|
|
end
|
|
|
|
shell 'ceph osd pool get volumes pgp_num' do |r|
|
|
r.stdout.should =~ /pgp_num: 64/
|
|
r.stderr.should be_empty
|
|
r.exit_code.should be_zero
|
|
end
|
|
|
|
shell 'ceph osd pool get volumes size' do |r|
|
|
r.stdout.should =~ /size: 3/
|
|
r.stderr.should be_empty
|
|
r.exit_code.should be_zero
|
|
end
|
|
|
|
end
|
|
|
|
it 'should install and delete pool volumes' do
|
|
pp = <<-EOS
|
|
Exec { path => [ '/bin/', '/sbin/' , '/usr/bin/', '/usr/sbin/' ] }
|
|
exec { 'create-volumes':
|
|
command => 'ceph osd pool create volumes 64',
|
|
unless => 'ceph osd lspools | grep volumes',
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should_not == 1
|
|
r.refresh
|
|
r.exit_code.should == 0
|
|
end
|
|
|
|
pp2 = <<-EOS
|
|
ceph::pool { 'volumes':
|
|
ensure => absent,
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp2) do |r|
|
|
r.exit_code.should_not == 1
|
|
r.refresh
|
|
r.exit_code.should == 0
|
|
end
|
|
|
|
shell 'ceph osd lspools | grep volumes' do |r|
|
|
r.stdout.should be_empty
|
|
r.stderr.should be_empty
|
|
r.exit_code.should_not be_zero
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
# Local Variables:
|
|
# compile-command: "cd ../..
|
|
# (
|
|
# cd .rspec_system/vagrant_projects/ubuntu-server-1204-x64
|
|
# vagrant destroy --force
|
|
# )
|
|
# cp -a Gemfile-rspec-system Gemfile
|
|
# BUNDLE_PATH=/tmp/vendor bundle install --no-deployment
|
|
# MACHINES=first \
|
|
# RELEASES=dumpling \
|
|
# RS_DESTROY=no \
|
|
# RS_SET=ubuntu-server-1204-x64 \
|
|
# BUNDLE_PATH=/tmp/vendor \
|
|
# bundle exec rake spec:system SPEC=spec/system/ceph_pool_spec.rb &&
|
|
# git checkout Gemfile
|
|
# "
|
|
# End:
|