PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /opt/puppetlabs/puppet/vendor_modules/zone_core/spec/acceptance/tests/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : //opt/puppetlabs/puppet/vendor_modules/zone_core/spec/acceptance/tests/zone_configured_spec.rb |
require 'spec_helper_acceptance'
require 'zone_util'
RSpec.context 'zone manages path' do
after(:all) do
solaris_agents.each do |agent|
ZoneUtils.clean(agent)
end
end
# inherit /sbin on solaris10 until PUP-3722
def config_inherit_string(agent)
if agent['platform'].include?('solaris-10')
"inherit => '/sbin'"
else
''
end
end
solaris_agents.each do |agent|
context "on #{agent}" do
it 'transitions between configured, installed and configured' do
step 'Zone: steps - create'
apply_manifest_on(agent, "zone {tstzone : ensure=>configured, iptype=>shared, path=>'/tstzones/mnt', #{config_inherit_string(agent)} }") do |result|
assert_match(%r{ensure: created}, result.stdout, "err: #{agent}")
end
step 'Zone: steps - verify (create)'
on(agent, 'zoneadm -z tstzone verify') do |result|
refute_match(%r{could not verify}, result.stdout, "err: #{agent}")
end
step 'Zone: steps - configured -> installed'
step 'progress would be logged to agent:/var/log/zones/zoneadm.<date>.<zonename>.install'
step 'install log would be at agent:/system/volatile/install.<id>/install_log'
apply_manifest_on(agent, "zone {tstzone : ensure=>installed, iptype=>shared, path=>'/tstzones/mnt' }") do |result|
assert_match(%r{ensure changed 'configured' to 'installed'}, result.stdout, "err: #{agent}")
end
step 'Zone: steps - installed -> running'
apply_manifest_on(agent, "zone {tstzone : ensure=>running, iptype=>shared, path=>'/tstzones/mnt' }") do |result|
assert_match(%r{ensure changed 'installed' to 'running'}, result.stdout, "err: #{agent}")
end
step 'Zone: steps - running -> installed'
apply_manifest_on(agent, "zone {tstzone : ensure=>installed, iptype=>shared, path=>'/tstzones/mnt' }") do |result|
assert_match(%r{ensure changed 'running' to 'installed'}, result.stdout, "err: #{agent}")
end
step 'Zone: steps - installed -> configured'
apply_manifest_on(agent, "zone {tstzone : ensure=>configured, iptype=>shared, path=>'/tstzones/mnt' }") do |result|
assert_match(%r{ensure changed 'installed' to 'configured'}, result.stdout, "err: #{agent}")
end
end
end
end
end