403Webshell
Server IP : 66.29.132.122  /  Your IP : 3.145.66.66
Web Server : LiteSpeed
System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : admazpex ( 531)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/puppetlabs/puppet/vendor_modules/zone_core/spec/acceptance/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/puppetlabs/puppet/vendor_modules/zone_core/spec/acceptance/tests/zone_running_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 'starts and stops a zone' do
        step 'Zone: statemachine - create zone and make it running'
        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, <<-MANIFEST) do |result|
          zone { 'tstzone':
            ensure => running,
            iptype => shared,
            path => '/tstzones/mnt',
            #{config_inherit_string(agent)}
          }
          MANIFEST
          assert_match(%r{ensure: created}, result.stdout, "err: #{agent}")
        end

        step 'Zone: statemachine - ensure zone is correct'
        on(agent, 'zoneadm -z tstzone verify') do |result|
          refute_match(%r{could not verify}, result.stdout, "err: #{agent}")
        end

        step 'Zone: statemachine - ensure zone is running'
        on(agent, 'zoneadm -z tstzone list -v') do |result|
          assert_match(%r{running}, result.stdout, "err: #{agent}")
        end

        step 'Zone: statemachine - stop and uninstall zone'
        apply_manifest_on(agent, <<-MANIFEST) do |result|
          zone { 'tstzone':
            ensure => configured,
            iptype => shared,
            path => '/tstzones/mnt'
          }
          MANIFEST
          assert_match(%r{ensure changed 'running' to 'configured'}, result.stdout, "err: #{agent}")
        end

        on(agent, 'zoneadm -z tstzone list -v') do |result|
          assert_match(%r{configured}, result.stdout, "err: #{agent}")
        end
      end
    end
  end
end

Youez - 2016 - github.com/yon3zu
LinuXploit