Sha256: a997ac4c35223f798680be2376a4bd5c62b57163cfda66bdf9b059d74e19f5cc

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

require 'pio/open_flow10/set_transport_port'

describe Pio::OpenFlow10::SetTransportDestinationPort do
  describe '.new' do
    When(:set_transport_destination_port) do
      Pio::OpenFlow10::SetTransportDestinationPort.new(port)
    end

    context 'with 100' do
      When(:port) { 100 }

      describe '#port' do
        Then { set_transport_destination_port.port == 100 }
      end

      describe '#action_type' do
        Then { set_transport_destination_port.action_type == 10 }
      end

      describe '#action_length' do
        Then { set_transport_destination_port.action_length == 8 }
      end

      describe '#to_binary' do
        Then { set_transport_destination_port.to_binary.length == 8 }
      end
    end

    context 'with -1' do
      When(:port) { -1 }
      Then { set_transport_destination_port == Failure(ArgumentError) }
    end

    context 'with 2**16' do
      When(:port) { 2**16 }
      Then { set_transport_destination_port == Failure(ArgumentError) }
    end

    context 'with :INVALID_PORT_NUMBER' do
      When(:port) { :INVALID_PORT_NUMBER }
      Then { set_transport_destination_port == Failure(TypeError) }
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pio-0.30.1 spec/pio/open_flow10/set_transport_destination_port_spec.rb
pio-0.30.0 spec/pio/open_flow10/set_transport_destination_port_spec.rb
pio-0.29.0 spec/pio/open_flow10/set_transport_destination_port_spec.rb
pio-0.28.1 spec/pio/open_flow10/set_transport_destination_port_spec.rb
pio-0.28.0 spec/pio/open_flow10/set_transport_destination_port_spec.rb