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.91.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.90.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.90.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.89.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.88.2 spec/helper/detect_os/aix_spec.rb
specinfra-2.88.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.88.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.87.2 spec/helper/detect_os/aix_spec.rb
specinfra-2.87.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.87.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.86.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.85.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.85.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.84.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.84.0 spec/helper/detect_os/aix_spec.rb
specinfra-2.83.4 spec/helper/detect_os/aix_spec.rb
specinfra-2.83.3 spec/helper/detect_os/aix_spec.rb
specinfra-2.83.2 spec/helper/detect_os/aix_spec.rb
specinfra-2.83.1 spec/helper/detect_os/aix_spec.rb
specinfra-2.83.0 spec/helper/detect_os/aix_spec.rb