Anons79 Mini Shell

Directory : /opt/puppetlabs/puppet/vendor_modules/zone_core/spec/unit/provider/zone/
Upload File :
Current File : //opt/puppetlabs/puppet/vendor_modules/zone_core/spec/unit/provider/zone/solaris_spec.rb

#! /usr/bin/env ruby
require 'spec_helper'

describe Puppet::Type.type(:zone).provider(:solaris) do
  let(:resource) { Puppet::Type.type(:zone).new(name: 'dummy', path: '/', provider: :solaris) }
  let(:provider) { described_class.new(resource) }

  context '#configure' do
    it 'adds the create args to the create str' do
      resource.stubs(:properties).returns([])
      resource[:create_args] = 'create_args'
      provider.expects(:setconfig).with('create -b create_args')
      provider.configure
    end
    it 'adds the create args to the create str with properties' do
      iptype = stub 'property'
      iptype.stubs(:name).with.returns(:iptype)
      iptype.stubs(:safe_insync?).with(iptype).returns(false)
      provider.stubs(:properties).returns(iptype: iptype)
      resource.stubs(:properties).with.returns([iptype])
      resource[:create_args] = 'create_args'
      provider.expects(:setconfig).with("create -b create_args\nset ip-type=shared")
      provider.configure
    end
  end

  context '#install' do
    context 'clone' do
      it 'calls zoneadm' do
        provider.expects(:zoneadm).with(:install)
        provider.install
      end

      it "with the resource's clone attribute" do
        resource[:clone] = :clone_argument
        provider.expects(:zoneadm).with(:clone, :clone_argument)
        provider.install
      end
    end

    context 'not clone' do
      it 'justs install if there are no install args' do
        # there is a nil check in type.rb:[]= so we cannot directly set nil.
        resource.stubs(:[]).with(:clone).returns(nil)
        resource.stubs(:[]).with(:install_args).returns(nil)
        provider.expects(:zoneadm).with(:install)
        provider.install
      end

      it 'adds the install args to the command if they exist' do
        # there is a nil check in type.rb:[]= so we cannot directly set nil.
        resource.stubs(:[]).with(:clone).returns(nil)
        resource.stubs(:[]).with(:install_args).returns('install args')
        provider.expects(:zoneadm).with(:install, ['install', 'args'])
        provider.install
      end
    end
  end
  context '#instances' do
    it 'lists the instances correctly' do
      described_class.expects(:adm).with(:list, '-cp').returns('0:dummy:running:/::native:shared')
      instances = described_class.instances.map { |p| { name: p.get(:name), ensure: p.get(:ensure) } }
      expect(instances.size).to eq(1)
      expect(instances[0]).to eq(name: 'dummy',
                                 ensure: :running)
    end
  end
  context '#setconfig' do
    it 'correctlies set configuration' do
      provider.expects(:command).with(:cfg).returns('/usr/sbin/zonecfg')
      provider.expects(:exec_cmd).with(input: "set zonepath=/\ncommit\nexit", cmd: '/usr/sbin/zonecfg -z dummy -f -').returns(out: '', exit: 0)
      provider.setconfig("set zonepath=\/")
      provider.flush
    end

    it "correctlies warn on 'not allowed'" do
      provider.expects(:command).with(:cfg).returns('/usr/sbin/zonecfg')
      provider.expects(:exec_cmd).with(input: "set zonepath=/\ncommit\nexit", cmd: '/usr/sbin/zonecfg -z dummy -f -').returns(out: "Zone z2 already installed; set zonepath not allowed.\n", exit: 0)
      provider.setconfig("set zonepath=\/")
      expect {
        provider.flush
      }.to raise_error(ArgumentError, %r{Failed to apply configuration})
    end
  end
  context '#getconfig' do
    describe 'with a shared iptype zone' do
      zone_info = <<-EOF
zonename: dummy
zonepath: /dummy/z
brand: native
autoboot: true
bootargs:
pool:
limitpriv:
scheduling-class:
ip-type: shared
hostid:
net:
        address: 1.1.1.1
        physical: ex0001
        defrouter not specified
net:
        address: 1.1.1.2
        physical: ex0002
        defrouter not specified
      EOF
      it 'correctlies parse zone info' do
        provider.expects(:zonecfg).with(:info).returns(zone_info)
        expect(provider.getconfig).to eq(:brand => 'native',
                                         :autoboot => 'true',
                                         :"ip-type" => 'shared',
                                         :zonename => 'dummy',
                                         'net' => [{ physical: 'ex0001', address: '1.1.1.1' }, { physical: 'ex0002', address: '1.1.1.2' }],
                                         :zonepath => '/dummy/z')
      end
    end
    describe 'with an exclusive iptype zone' do
      zone_info = <<-EOF
zonename: dummy
zonepath: /dummy/z
brand: native
autoboot: true
bootargs:
pool:
limitpriv:
scheduling-class:
ip-type: exclusive
hostid:
net:
        address not specified
        allowed-address not specified
        configure-allowed-address: true
        physical: net1
        defrouter not specified
      EOF
      it 'correctlies parse zone info' do
        provider.expects(:zonecfg).with(:info).returns(zone_info)
        expect(provider.getconfig).to eq(:brand => 'native',
                                         :autoboot => 'true',
                                         :"ip-type" => 'exclusive',
                                         :zonename => 'dummy',
                                         'net' => [{ :physical => 'net1', :'configure-allowed-address' => 'true' }],
                                         :zonepath => '/dummy/z')
      end
    end
    describe 'with an invalid or unrecognized config' do
      it 'produces an error message with provider context when given an invalid config' do
        erroneous_zone_info = <<-EOF
          physical: net1'
        EOF

        provider.expects(:zonecfg).with(:info).returns(erroneous_zone_info)
        provider.expects('err').with("Ignoring '          physical: net1''")
        provider.getconfig
      end

      it 'produces a debugging message with provider context when given an unrecognized config' do
        unrecognized_zone_info = 'dummy'
        provider.expects(:zonecfg).with(:info).returns(unrecognized_zone_info)
        provider.expects('debug').with("Ignoring zone output 'dummy'")
        provider.getconfig
      end
    end
  end
  context '#flush' do
    it 'correctlies execute pending commands' do
      provider.expects(:command).with(:cfg).returns('/usr/sbin/zonecfg')
      provider.expects(:exec_cmd).with(input: "set iptype=shared\ncommit\nexit", cmd: '/usr/sbin/zonecfg -z dummy -f -').returns(out: '', exit: 0)
      provider.setconfig('set iptype=shared')
      provider.flush
    end

    it 'correctlies raise error on failure' do
      provider.expects(:command).with(:cfg).returns('/usr/sbin/zonecfg')
      provider.expects(:exec_cmd).with(input: "set iptype=shared\ncommit\nexit", cmd: '/usr/sbin/zonecfg -z dummy -f -').returns(out: '', exit: 1)
      provider.setconfig('set iptype=shared')
      expect {
        provider.flush
      }.to raise_error(ArgumentError, %r{Failed to apply})
    end
  end
  context '#start' do
    it 'does not require path if sysidcfg is specified' do
      resource[:path] = '/mypath'
      resource[:sysidcfg] = 'dummy'
      Puppet::FileSystem.stubs(:exist?).with('/mypath/root/etc/sysidcfg').returns true
      File.stubs(:directory?).with('/mypath/root/etc').returns true
      provider.expects(:zoneadm).with(:boot)
      provider.start
    end

    it 'requires path if sysidcfg is specified' do
      resource.stubs(:[]).with(:path).returns nil
      resource.stubs(:[]).with(:sysidcfg).returns 'dummy'
      expect {
        provider.start
      }.to raise_error(Puppet::Error, %r{Path is required})
    end
  end
  context '#line2hash' do
    it 'parses lines correctly' do
      expect(described_class.line2hash('0:dummy:running:/z::native:shared')).to eq(ensure: :running, iptype: 'shared', path: '/z', name: 'dummy', id: '0')
    end
    it 'parses lines correctly(2)' do
      expect(described_class.line2hash('0:dummy:running:/z:ipkg:native:shared')).to eq(ensure: :running, iptype: 'shared', path: '/z', name: 'dummy', id: '0')
    end
    it 'parses lines correctly(3)' do
      expect(described_class.line2hash('-:dummy:running:/z:ipkg:native:shared')).to eq(ensure: :running, iptype: 'shared', path: '/z', name: 'dummy')
    end
    it 'parses lines correctly(4)' do
      expect(described_class.line2hash('-:dummy:running:/z:ipkg:native:exclusive')).to eq(ensure: :running, iptype: 'exclusive', path: '/z', name: 'dummy')
    end
  end
  context '#multi_conf' do
    it 'correctlies add and remove properties' do
      provider.stubs(:properties).with.returns(ip: ['1.1.1.1', '2.2.2.2'])
      should = ['1.1.1.1', '3.3.3.3']
      p = proc do |a, str|
        case a
        when :add then 'add:' + str
        when :rm then 'rm:' + str
        end
      end
      expect(provider.multi_conf(:ip, should, &p)).to eq("rm:2.2.2.2\nadd:3.3.3.3")
    end
  end
  context 'single props' do
    { iptype: %r{set ip-type}, autoboot: %r{set autoboot}, path: %r{set zonepath}, pool: %r{set pool}, shares: %r{add rctl} }.each do |p, v|
      it "#{p}: should correctly return conf string" do
        expect(provider.send(p.to_s + '_conf', 'dummy')).to match(v)
      end
      it "#{p}: should correctly set property string" do
        provider.expects((p.to_s + '_conf').to_sym).returns('dummy')
        provider.expects(:setconfig).with('dummy').returns('dummy2')
        expect(provider.send(p.to_s + '=', 'dummy')).to eq('dummy2')
      end
    end
  end
end

Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]