puppet-openstack_extras/spec/acceptance/openstack_extras_repo_spec.rb
Takashi Kajinami 8359663751 CentOS: Use dnf to install packages
dnf replaced yum and yum command is no longer available by default.

Change-Id: I91e97082864dfd4fb159e41b8719fc2c25ba9cb2
2023-05-25 12:02:13 +09:00

31 lines
1008 B
Ruby

require 'spec_helper_acceptance'
describe 'openstack_extras::repo::*' do
context 'default parameters' do
release = 'mitaka'
it 'should work with no errors' do
pp= <<-EOS
include openstack_integration
include openstack_integration::repos
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
it 'should be able to install openstack packages' do
if os[:family] == 'Debian'
expect(command('apt-get install -y python-openstackclient').exit_code).to be_zero
expect(command('apt-cache policy python-openstackclient | grep -A 1 \*\*\*').stdout).to match(/#{release}/)
elsif os[:family] == 'RedHat'
expect(command('dnf install -y python-openstackclient').exit_code).to be_zero
expect(command('dnf list python-openstackclient | grep -A 1 "Installed Packages"').stdout).to match(/@rdo-release/)
end
end
end
end