Sha256: aa9f7b7dbbc19763ca0c44b36b6c9587f2be73024ec95735c0c4cd2f0fcf0645

Contents?: true

Size: 857 Bytes

Versions: 2

Compression:

Stored size: 857 Bytes

Contents

@open_flow10
Feature: Hello

  Hello messages are exchanged between the switch and controller upon
  connection startup. Hello messages have the version field set to the
  highest OpenFlow protocol version supported by the sender.

  Scenario: new
    When I create an OpenFlow message with:
      """
      Pio::Hello.new
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     1 |
      | transaction_id |     0 |
      | xid            |     0 |

  Scenario: new(transaction_id: 123)
    When I create an OpenFlow message with:
      """
      Pio::Hello.new(transaction_id: 123)
      """
    Then the message has the following fields and values:
      | field          | value |
      | version        |     1 |
      | transaction_id |   123 |
      | xid            |   123 |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pio-0.30.2 features/open_flow10/hello.feature
pio-0.30.1 features/open_flow10/hello.feature