Sha256: a783d6dd25f71b7cdd83dfcf8ede3057c017673848d59f16521fd0c158f3288e

Contents?: true

Size: 1.95 KB

Versions: 206

Compression:

Stored size: 1.95 KB

Contents

require 'spec_helper'
require 'specinfra/helper/detect_os/aix'

describe Specinfra::Helper::DetectOs::Aix do
  aix = Specinfra::Helper::DetectOs::Aix.new(:exec)
  it 'Should return aix 10.11 powerpc when (fictional) AIX 10.11 is installed.' do
    allow(aix).to receive(:run_command).with('uname -s') {
      CommandResult.new(:stdout => 'AIX', :exit_status => 0)
    }
    allow(aix).to receive(:run_command).with('uname -rvp') {
      CommandResult.new(:stdout => '11 10 powerpc', :exit_status => 0)
    }
    expect(aix.detect).to include(
      :family  => 'aix',
      :release => '10.11',
      :arch    => 'powerpc'
    )
  end
  it 'Should return aix 7.1 powerpc when AIX 7.1 is installed.' do
    allow(aix).to receive(:run_command).with('uname -s') {
      CommandResult.new(:stdout => 'AIX', :exit_status => 0)
    }
    allow(aix).to receive(:run_command).with('uname -rvp') {
      CommandResult.new(:stdout => '1 7 powerpc', :exit_status => 0)
    }
    expect(aix.detect).to include(
      :family  => 'aix',
      :release => '7.1',
      :arch    => 'powerpc'
    )
  end
  it 'Should return aix 6.1 powerpc when AIX 6.1 is installed.' do
    allow(aix).to receive(:run_command).with('uname -s') {
      CommandResult.new(:stdout => 'AIX', :exit_status => 0)
    }
    allow(aix).to receive(:run_command).with('uname -rvp') {
      CommandResult.new(:stdout => '1 6 powerpc', :exit_status => 0)
    }
    expect(aix.detect).to include(
      :family  => 'aix',
      :release => '6.1',
      :arch    => 'powerpc'
    )
  end
  it 'Should return aix nil nil when AIX FooBar is installed.' do
    allow(aix).to receive(:run_command).with('uname -s') {
      CommandResult.new(:stdout => 'AIX', :exit_status => 0)
    }
    allow(aix).to receive(:run_command).with('uname -rvp') {
      CommandResult.new(:stdout => 'Foo Bar batz', :exit_status => 1)
    }
    expect(aix.detect).to include(
      :family  => 'aix',
      :release => nil,
      :arch    => nil
    )
  end
end

Version data entries

206 entries across 206 versions & 3 rubygems

Version Path
specinfra-2.82.25 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.24 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.23 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.22 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.21 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.20 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.19 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.18 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.17 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.16 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.15 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.14 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.13 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.12 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.11 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.10 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.9 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.8 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.7 spec/helper/detect_os/aix_spec.rb
specinfra-2.82.6 spec/helper/detect_os/aix_spec.rb