Sha256: bb667e2f4d4ee24c472cfa8d4902c6c904acdde28ed81502c99f3033573240ee

Contents?: true

Size: 1007 Bytes

Versions: 4

Compression:

Stored size: 1007 Bytes

Contents

require 'spec_helper'

include Serverspec::Helper::Debian

describe port(80) do
  it { should be_listening }
  its(:command) { should eq 'netstat -tunl | grep -- :80\\ ' }
end

describe port('invalid') do
  it { should_not be_listening }
end

describe port(80) do
  it { should be_listening.with("tcp") }
  its(:command) { should eq 'netstat -tunl | grep -- \\^tcp\\ .\\*:80\\ ' }
end

describe port(123) do
  it { should be_listening.with("udp") }
  its(:command) { should eq 'netstat -tunl | grep -- \\^udp\\ .\\*:123\\ ' }
end

describe port(81) do
  it { should be_listening.with("tcp6") }
  its(:command) { should eq 'netstat -tunl | grep -- \\^tcp6\\ .\\*:81\\ ' }
end

describe port(1234) do
  it { should be_listening.with("udp6") }
  its(:command) { should eq 'netstat -tunl | grep -- \\^udp6\\ .\\*:1234\\ ' }
end

describe port(80) do
  it {
    expect {
      should be_listening.with('not implemented')
    }.to raise_error(ArgumentError, %r/\A`be_listening` matcher doesn\'t support/)
  }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
serverspec-0.11.5 spec/debian/port_spec.rb
serverspec-0.11.4 spec/debian/port_spec.rb
serverspec-0.11.3 spec/debian/port_spec.rb
serverspec-0.11.2 spec/debian/port_spec.rb