Sha256: 332d222e0f1e70a6da852cc4b201962a54733d3ec19eeee71df82cafb8b2fda6

Contents?: true

Size: 1.15 KB

Versions: 14

Compression:

Stored size: 1.15 KB

Contents

Feature: Pio::Echo.read
  Scenario: echo_request.raw
    Given a packet data file "echo_request.raw"
    When I try to parse the file with "Echo::Request" class
    Then it should finish successfully
    And the parsed data have the following field and value:
    | field          |              value |
    | class          | Pio::Echo::Request |
    | ofp_version    |                  1 |
    | message_type   |                  2 |
    | message_length |                  8 |
    | transaction_id |                  0 |
    | xid            |                  0 |
    | body           |                    |

  Scenario: echo_reply.raw
    Given a packet data file "echo_reply.raw"
    When I try to parse the file with "Echo::Reply" class
    Then it should finish successfully
    And the parsed data have the following field and value:
    | field          |            value |
    | class          | Pio::Echo::Reply |
    | ofp_version    |                1 |
    | message_type   |                3 |
    | message_length |                8 |
    | transaction_id |                6 |
    | xid            |                6 |
    | body           |                  |

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
pio-0.18.2 features/echo_read.feature
pio-0.18.1 features/echo_read.feature
pio-0.18.0 features/echo_read.feature
pio-0.17.0 features/echo_read.feature
pio-0.16.0 features/echo_read.feature
pio-0.15.2 features/echo_read.feature
pio-0.15.1 features/echo_read.feature
pio-0.15.0 features/echo_read.feature
pio-0.14.0 features/echo_read.feature
pio-0.13.0 features/echo_read.feature
pio-0.12.0 features/echo_read.feature
pio-0.11.2 features/echo_read.feature
pio-0.11.1 features/echo_read.feature
pio-0.11.0 features/echo_read.feature