Sha256: f8aeb9905a450b4edba355fbcd29aa1451d12b30bec50e9b2ef0d1162d900805

Contents?: true

Size: 1.47 KB

Versions: 59

Compression:

Stored size: 1.47 KB

Contents

require 'spec_helper'

include Serverspec::Helper::Solaris

describe host('127.0.0.1') do
  it { should be_resolvable }
  its(:command) { should eq "getent hosts 127.0.0.1" }
end

describe host('invalid-name') do
  it { should_not be_resolvable }
end

describe host('127.0.0.1') do
  it { should be_resolvable.by('hosts') }
  its(:command) { should eq "grep -w -- 127.0.0.1 /etc/hosts" }
end

describe host('invalid-name') do
  it { should_not be_resolvable.by('hosts') }
end

describe host('127.0.0.1') do
  it { should be_resolvable.by('dns') }
  its(:command) { should eq "nslookup -timeout=1 127.0.0.1" }
end

describe host('invalid-name') do
  it { should_not be_resolvable.by('dns') }
end

describe host('127.0.0.1') do
  it { should be_reachable }
  its(:command) { should eq "ping -n 127.0.0.1 5" }
end

describe host('invalid-host') do
  it { should_not be_reachable }
end

describe host('127.0.0.1') do
  it { should be_reachable.with(:proto => "icmp", :timeout=> 1) }
  its(:command) { should eq "ping -n 127.0.0.1 1" }
end

describe host('127.0.0.1') do
  it { should be_reachable.with(:proto => "tcp", :port => 22, :timeout=> 1) }
  its(:command) { should eq "nc -vvvvzt -w 1 127.0.0.1 22" }
end

describe host('127.0.0.1') do
  it { should be_reachable.with(:proto => "udp", :port => 53, :timeout=> 1) }
  its(:command) { should eq "nc -vvvvzu -w 1 127.0.0.1 53" }
end

describe host('invalid-host') do
  it { should_not be_reachable.with(:proto => "udp", :port => 53, :timeout=> 1) }
end

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
serverspec-0.11.5 spec/solaris/host_spec.rb
serverspec-0.11.4 spec/solaris/host_spec.rb
serverspec-0.11.3 spec/solaris/host_spec.rb
serverspec-0.11.2 spec/solaris/host_spec.rb
serverspec-0.11.1 spec/solaris/host_spec.rb
serverspec-0.11.0 spec/solaris/host_spec.rb
serverspec-0.10.13 spec/solaris/host_spec.rb
serverspec-0.10.12 spec/solaris/host_spec.rb
serverspec-0.10.11 spec/solaris/host_spec.rb
serverspec-0.10.10 spec/solaris/host_spec.rb
serverspec-0.10.9 spec/solaris/host_spec.rb
serverspec-0.10.8 spec/solaris/host_spec.rb
serverspec-0.10.7 spec/solaris/host_spec.rb
serverspec-0.10.6 spec/solaris/host_spec.rb
serverspec-0.10.5 spec/solaris/host_spec.rb
serverspec-0.10.4 spec/solaris/host_spec.rb
serverspec-0.10.3 spec/solaris/host_spec.rb
serverspec-0.10.2 spec/solaris/host_spec.rb
serverspec-0.10.1 spec/solaris/host_spec.rb
serverspec-0.10.0 spec/solaris/host_spec.rb