require 'puppet-openstack_infra_spec_helper/spec_helper_acceptance' describe 'custom pip provider' do pp = File.read(File.join(File.dirname(__FILE__), 'fixtures/openstack_pip.pp')) context 'using mirrors' do before :all do # Set up pip.conf for testers playing at home pip_conf =< /etc/pip.conf ; fi") shell("iptables -S") # Block pypi.org so we know the mirror is working shell("iptables -A OUTPUT -d pypi.org -j DROP") shell("iptables -S") # Remove the python-ipaddress distro package so that pip 10 won't fail to # install shade if os[:family] == 'redhat' shell('yum remove python-ipaddress -y') end end it 'should work with no errors' do apply_manifest(pp, catch_failures: true) end # This is where latest will be checked it 'should be idempotent' do apply_manifest(pp, catch_changes: true) end end context 'without mirrors' do before :all do shell("iptables -S") shell("iptables -D OUTPUT -d pypi.org -j DROP") shell("iptables -S") shell("rm /etc/pip.conf") end it 'should be idempotent' do apply_manifest(pp, catch_changes: true) end end end