Sha256: b56c7da3f5aa288a6db7d8041b5750dcab3a5b26e4103886aa7c9b9b1ae6ff7b

Contents?: true

Size: 1.48 KB

Versions: 39

Compression:

Stored size: 1.48 KB

Contents

require 'spec_helper'

include Serverspec::Helper::Darwin

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 -w 5 -c 2" }
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 -w 1 -c 2" }
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 127.0.0.1 22 -w 1" }
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 127.0.0.1 53 -w 1" }
end

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

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
serverspec-0.7.4 spec/darwin/host_spec.rb
serverspec-0.7.3 spec/darwin/host_spec.rb
serverspec-0.7.2 spec/darwin/host_spec.rb
serverspec-0.7.1 spec/darwin/host_spec.rb
serverspec-0.7.0 spec/darwin/host_spec.rb
serverspec-0.6.30 spec/darwin/host_spec.rb
serverspec-0.6.29 spec/darwin/host_spec.rb
serverspec-0.6.28 spec/darwin/host_spec.rb
serverspec-0.6.27 spec/darwin/host_spec.rb
serverspec-0.6.26 spec/darwin/host_spec.rb
serverspec-0.6.25 spec/darwin/host_spec.rb
serverspec-0.6.24 spec/darwin/host_spec.rb
serverspec-0.6.23 spec/darwin/host_spec.rb
serverspec-0.6.22 spec/darwin/host_spec.rb
serverspec-0.6.21 spec/darwin/host_spec.rb
serverspec-0.6.20 spec/darwin/host_spec.rb
serverspec-0.6.19 spec/darwin/host_spec.rb
serverspec-0.6.18 spec/darwin/host_spec.rb
serverspec-0.6.17 spec/darwin/host_spec.rb