pio 0.30.0 → 0.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +6 -49
- data/Rakefile +4 -4
- data/features/{arp.feature → arp/arp.feature} +14 -30
- data/features/arp/arp_reply.feature +69 -0
- data/features/arp/arp_request.feature +67 -0
- data/features/dhcp.feature +157 -162
- data/features/ethernet_header.feature +149 -0
- data/features/icmp/icmp.feature +47 -0
- data/features/icmp/icmp_reply.feature +93 -0
- data/features/icmp/icmp_request.feature +89 -0
- data/features/ipv4_header.feature +89 -0
- data/features/lldp.feature +5 -8
- data/features/open_flow/header.feature +13 -0
- data/features/open_flow/nicira_resubmit.feature +4 -22
- data/features/open_flow/nicira_resubmit_table.feature +6 -16
- data/features/open_flow10/aggregate_stats_reply.feature +5 -7
- data/features/open_flow10/aggregate_stats_request.feature +12 -14
- data/features/open_flow10/bad_request.feature +7 -24
- data/features/open_flow10/barrier_reply.feature +14 -25
- data/features/open_flow10/barrier_request.feature +12 -25
- data/features/open_flow10/description_stats_reply.feature +9 -7
- data/features/open_flow10/description_stats_request.feature +12 -25
- data/features/open_flow10/echo_reply.feature +14 -35
- data/features/open_flow10/echo_request.feature +16 -39
- data/features/open_flow10/enqueue.feature +3 -4
- data/features/open_flow10/exact_match.feature +5 -5
- data/features/open_flow10/features_reply.feature +28 -73
- data/features/open_flow10/features_request.feature +10 -28
- data/features/open_flow10/flow_mod.feature +4 -188
- data/features/open_flow10/flow_removed.feature +28 -30
- data/features/open_flow10/flow_stats_reply.feature +5 -89
- data/features/open_flow10/flow_stats_request.feature +12 -42
- data/features/open_flow10/hello.feature +10 -32
- data/features/open_flow10/hello_failed.feature +7 -57
- data/features/open_flow10/packet_in.feature +130 -49
- data/features/open_flow10/packet_out.feature +29 -18
- data/features/open_flow10/port_stats_request.feature +8 -29
- data/features/open_flow10/port_status.feature +22 -21
- data/features/open_flow10/queue_stats_request.feature +12 -30
- data/features/open_flow10/send_out_port.feature +17 -25
- data/features/open_flow10/set_destination_mac_address.feature +3 -4
- data/features/open_flow10/set_ip_destination_address.feature +3 -4
- data/features/open_flow10/set_source_ip_address.feature +3 -4
- data/features/open_flow10/set_source_mac_address.feature +3 -4
- data/features/open_flow10/set_tos.feature +3 -4
- data/features/open_flow10/set_transport_destination_port.feature +3 -4
- data/features/open_flow10/set_transport_source_port.feature +3 -4
- data/features/open_flow10/set_vlan_priority.feature +3 -4
- data/features/open_flow10/set_vlan_vid.feature +3 -4
- data/features/open_flow10/strip_vlan_header.feature +3 -4
- data/features/open_flow10/table_stats_request.feature +11 -13
- data/features/open_flow10/vendor_action.feature +4 -5
- data/features/open_flow13/apply_actions.feature +15 -18
- data/features/open_flow13/bad_request.feature +7 -13
- data/features/open_flow13/copy_ttl_inwards.feature +13 -0
- data/features/open_flow13/copy_ttl_outwards.feature +13 -0
- data/features/open_flow13/decrement_ip_ttl.feature +11 -0
- data/features/open_flow13/echo_reply.feature +16 -42
- data/features/open_flow13/echo_request.feature +16 -42
- data/features/open_flow13/features_reply.feature +4 -25
- data/features/open_flow13/features_request.feature +7 -36
- data/features/open_flow13/flow_mod.feature +16 -76
- data/features/open_flow13/goto_table.feature +18 -20
- data/features/open_flow13/hello.feature +7 -37
- data/features/open_flow13/hello_failed.feature +7 -30
- data/features/open_flow13/match.feature +239 -248
- data/features/open_flow13/meter.feature +18 -20
- data/features/open_flow13/nicira_conjunction.feature +15 -0
- data/features/open_flow13/nicira_reg_load.feature +27 -42
- data/features/open_flow13/nicira_reg_move.feature +41 -35
- data/features/open_flow13/nicira_send_out_port.feature +21 -13
- data/features/open_flow13/nicira_stack_pop.feature +26 -0
- data/features/open_flow13/nicira_stack_push.feature +26 -0
- data/features/open_flow13/packet_in.feature +7 -34
- data/features/open_flow13/packet_out.feature +7 -45
- data/features/open_flow13/send_out_port.feature +19 -28
- data/features/open_flow13/set_arp_operation.feature +4 -5
- data/features/open_flow13/set_arp_sender_hardware_address.feature +3 -4
- data/features/open_flow13/set_arp_sender_protocol_address.feature +3 -4
- data/features/open_flow13/set_destination_mac_address.feature +3 -4
- data/features/open_flow13/set_ip_ttl.feature +12 -0
- data/features/open_flow13/set_metadata.feature +3 -4
- data/features/open_flow13/set_source_mac_address.feature +3 -4
- data/features/open_flow13/stats_request.feature +4 -7
- data/features/open_flow13/write_metadata.feature +20 -22
- data/features/open_flow_read.feature +24 -5
- data/features/open_flow_version.feature +1 -1
- data/features/parser.feature +8 -9
- data/features/step_definitions/open_flow_steps.rb +11 -16
- data/features/step_definitions/packet_data_steps.rb +16 -32
- data/features/step_definitions/ruby_steps.rb +7 -0
- data/features/step_definitions/show_stats_steps.rb +3 -3
- data/features/support/env.rb +1 -0
- data/features/support/hooks.rb +2 -2
- data/features/udp.feature +26 -27
- data/lib/pio.rb +1 -1
- data/lib/pio/arp.rb +9 -6
- data/lib/pio/arp/format.rb +3 -7
- data/lib/pio/arp/message.rb +8 -4
- data/lib/pio/arp/reply.rb +9 -32
- data/lib/pio/arp/request.rb +9 -33
- data/lib/pio/class_inspector.rb +18 -0
- data/lib/pio/dhcp.rb +2 -2
- data/lib/pio/dhcp/frame.rb +4 -4
- data/lib/pio/dhcp/optional_tlv.rb +3 -3
- data/lib/pio/ethernet_frame.rb +20 -0
- data/lib/pio/ethernet_header.rb +35 -13
- data/lib/pio/icmp.rb +8 -5
- data/lib/pio/icmp/format.rb +19 -22
- data/lib/pio/icmp/message.rb +18 -4
- data/lib/pio/icmp/reply.rb +8 -34
- data/lib/pio/icmp/request.rb +8 -43
- data/lib/pio/instance_inspector.rb +14 -0
- data/lib/pio/ipv4_address.rb +11 -11
- data/lib/pio/ipv4_header.rb +24 -2
- data/lib/pio/lldp/frame.rb +2 -2
- data/lib/pio/lldp/optional_tlv.rb +2 -2
- data/lib/pio/mac.rb +7 -3
- data/lib/pio/message.rb +50 -0
- data/lib/pio/monkey_patch/bindata_record.rb +6 -0
- data/lib/pio/monkey_patch/bindata_string.rb +10 -0
- data/lib/pio/monkey_patch/integer/base_conversions.rb +1 -1
- data/lib/pio/monkey_patch/uint.rb +9 -0
- data/lib/pio/monkey_patch/uint/base_conversions.rb +14 -0
- data/lib/pio/open_flow.rb +38 -52
- data/lib/pio/open_flow/action.rb +8 -4
- data/lib/pio/open_flow/buffer_id.rb +19 -0
- data/lib/pio/open_flow/datapath_id.rb +3 -3
- data/lib/pio/open_flow/error_message.rb +32 -0
- data/lib/pio/open_flow/flags.rb +15 -6
- data/lib/pio/open_flow/flow_match.rb +10 -0
- data/lib/pio/open_flow/header.rb +26 -0
- data/lib/pio/open_flow/hello_failed_code.rb +1 -1
- data/lib/pio/open_flow/instruction.rb +10 -0
- data/lib/pio/open_flow/message.rb +49 -14
- data/lib/pio/open_flow/nicira_resubmit.rb +13 -11
- data/lib/pio/open_flow/nicira_resubmit_table.rb +17 -10
- data/lib/pio/open_flow/parser.rb +19 -0
- data/lib/pio/open_flow/port.rb +2 -2
- data/lib/pio/open_flow/transaction_id.rb +2 -2
- data/lib/pio/open_flow/version.rb +22 -0
- data/lib/pio/open_flow10/actions.rb +16 -16
- data/lib/pio/open_flow10/aggregate_stats/reply.rb +2 -1
- data/lib/pio/open_flow10/aggregate_stats/request.rb +1 -3
- data/lib/pio/open_flow10/barrier/reply.rb +1 -1
- data/lib/pio/open_flow10/barrier/request.rb +1 -1
- data/lib/pio/open_flow10/description_stats/reply.rb +1 -1
- data/lib/pio/open_flow10/description_stats/request.rb +1 -3
- data/lib/pio/open_flow10/echo/reply.rb +3 -3
- data/lib/pio/open_flow10/echo/request.rb +3 -3
- data/lib/pio/open_flow10/enqueue.rb +3 -3
- data/lib/pio/open_flow10/error.rb +3 -13
- data/lib/pio/open_flow10/error/bad_request.rb +5 -29
- data/lib/pio/open_flow10/error/bad_request/bad_request_code.rb +35 -0
- data/lib/pio/open_flow10/error/error_type10.rb +1 -1
- data/lib/pio/open_flow10/error/hello_failed.rb +6 -4
- data/lib/pio/open_flow10/exact_match.rb +12 -10
- data/lib/pio/open_flow10/features/reply.rb +16 -31
- data/lib/pio/open_flow10/features/request.rb +1 -4
- data/lib/pio/open_flow10/flow_mod.rb +8 -33
- data/lib/pio/open_flow10/flow_mod/command.rb +28 -0
- data/lib/pio/open_flow10/flow_removed.rb +2 -17
- data/lib/pio/open_flow10/flow_removed/reason.rb +22 -0
- data/lib/pio/open_flow10/flow_stats/reply.rb +3 -4
- data/lib/pio/open_flow10/flow_stats/request.rb +1 -3
- data/lib/pio/open_flow10/hello.rb +1 -4
- data/lib/pio/open_flow10/match.rb +13 -12
- data/lib/pio/open_flow10/packet_in.rb +32 -28
- data/lib/pio/open_flow10/packet_in/reason.rb +25 -0
- data/lib/pio/open_flow10/packet_out.rb +5 -6
- data/lib/pio/open_flow10/phy_port16.rb +36 -58
- data/lib/pio/open_flow10/port_stats/request.rb +1 -3
- data/lib/pio/open_flow10/port_status.rb +23 -30
- data/lib/pio/open_flow10/port_status/reason.rb +21 -0
- data/lib/pio/open_flow10/queue_stats/request.rb +1 -3
- data/lib/pio/open_flow10/send_out_port.rb +2 -2
- data/lib/pio/open_flow10/set_tos.rb +2 -2
- data/lib/pio/open_flow10/set_transport_port.rb +4 -2
- data/lib/pio/open_flow10/set_vlan_priority.rb +1 -1
- data/lib/pio/open_flow10/set_vlan_vid.rb +1 -1
- data/lib/pio/open_flow10/stats_reply.rb +7 -10
- data/lib/pio/open_flow10/stats_request.rb +16 -15
- data/lib/pio/open_flow10/stats_type.rb +1 -1
- data/lib/pio/open_flow10/table_stats/request.rb +1 -3
- data/lib/pio/open_flow10/vendor_action.rb +22 -20
- data/lib/pio/open_flow13.rb +7 -0
- data/lib/pio/open_flow13/actions.rb +34 -32
- data/lib/pio/open_flow13/apply.rb +25 -22
- data/lib/pio/open_flow13/copy_ttl_inwards.rb +15 -0
- data/lib/pio/open_flow13/copy_ttl_outwards.rb +15 -0
- data/lib/pio/open_flow13/decrement_ip_ttl.rb +15 -0
- data/lib/pio/open_flow13/echo/reply.rb +3 -3
- data/lib/pio/open_flow13/echo/request.rb +3 -3
- data/lib/pio/open_flow13/error.rb +7 -18
- data/lib/pio/open_flow13/error/bad_request.rb +4 -3
- data/lib/pio/open_flow13/error/error_type13.rb +1 -1
- data/lib/pio/open_flow13/error/hello_failed.rb +3 -2
- data/lib/pio/open_flow13/features/reply.rb +9 -16
- data/lib/pio/open_flow13/features/request.rb +1 -1
- data/lib/pio/open_flow13/flow_mod.rb +14 -19
- data/lib/pio/open_flow13/goto_table.rb +26 -24
- data/lib/pio/open_flow13/hello.rb +3 -4
- data/lib/pio/open_flow13/match.rb +173 -9
- data/lib/pio/open_flow13/meter.rb +23 -20
- data/lib/pio/open_flow13/nicira_conjunction.rb +26 -0
- data/lib/pio/open_flow13/nicira_reg_load.rb +44 -24
- data/lib/pio/open_flow13/nicira_reg_move.rb +77 -35
- data/lib/pio/open_flow13/nicira_send_out_port.rb +37 -21
- data/lib/pio/open_flow13/nicira_stack_pop.rb +49 -0
- data/lib/pio/open_flow13/nicira_stack_push.rb +49 -0
- data/lib/pio/open_flow13/packet_in.rb +11 -8
- data/lib/pio/open_flow13/packet_out.rb +9 -8
- data/lib/pio/open_flow13/set_ip_ttl.rb +16 -0
- data/lib/pio/open_flow13/stats_request.rb +2 -4
- data/lib/pio/open_flow13/write_metadata.rb +40 -38
- data/lib/pio/options.rb +8 -3
- data/lib/pio/parser.rb +7 -16
- data/lib/pio/ruby_dumper.rb +69 -0
- data/lib/pio/type/ether_type.rb +31 -0
- data/lib/pio/type/ip_address.rb +8 -0
- data/lib/pio/type/mac_address.rb +10 -0
- data/lib/pio/udp.rb +3 -3
- data/lib/pio/udp_header.rb +1 -1
- data/lib/pio/version.rb +1 -1
- data/pio.gemspec +5 -38
- data/spec/pio/arp/reply_spec.rb +0 -4
- data/spec/pio/arp/request_spec.rb +0 -4
- data/spec/pio/arp_spec.rb +0 -4
- data/spec/pio/icmp/reply_spec.rb +4 -8
- data/spec/pio/icmp/request_spec.rb +6 -10
- data/spec/pio/icmp_spec.rb +8 -12
- data/spec/pio/monkey_patch/integer_spec.rb +23 -0
- data/spec/pio/open_flow/nicira_resubmit_spec.rb +19 -0
- data/spec/pio/open_flow/nicira_resubmit_table_spec.rb +20 -0
- data/spec/pio/open_flow10/error/hello_failed_spec.rb +2 -2
- data/spec/pio/open_flow10/flow_mod_spec.rb +24 -24
- data/spec/pio/open_flow10/flow_stats_request_spec.rb +3 -3
- data/spec/pio/open_flow10/hello_spec.rb +0 -2
- data/spec/pio/open_flow10/match_spec.rb +38 -38
- data/spec/pio/open_flow10/packet_out_spec.rb +0 -349
- data/spec/pio/open_flow10/phy_port16_spec.rb +5 -5
- data/spec/pio/open_flow13/error/hello_failed_spec.rb +2 -2
- data/spec/pio/open_flow13/goto_table_spec.rb +2 -2
- data/spec/pio/open_flow13/hello_spec.rb +15 -15
- data/spec/pio/open_flow13/match_spec.rb +29 -29
- data/spec/pio/open_flow13/meter_spec.rb +2 -2
- data/spec/pio/open_flow13/nicira_reg_load_spec.rb +71 -0
- data/spec/pio/open_flow13/nicira_reg_move_spec.rb +40 -0
- data/spec/pio/open_flow13/nicira_send_out_port_spec.rb +29 -0
- data/spec/pio/open_flow13/write_metadata_spec.rb +3 -3
- data/spec/pio/open_flow_spec.rb +6 -6
- data/spec/spec_helper.rb +1 -1
- data/spec/support/shared_examples_for_openflow_messages.rb +5 -13
- metadata +191 -790
- data/LICENSE +0 -674
- data/bin/_guard-core +0 -16
- data/bin/byebug +0 -16
- data/bin/cc-tddium-post-worker +0 -16
- data/bin/cdiff +0 -16
- data/bin/coderay +0 -16
- data/bin/colortab +0 -16
- data/bin/coveralls +0 -16
- data/bin/cucumber +0 -16
- data/bin/decolor +0 -16
- data/bin/flay +0 -16
- data/bin/flog +0 -16
- data/bin/guard +0 -16
- data/bin/htmldiff +0 -16
- data/bin/inch +0 -16
- data/bin/ldiff +0 -16
- data/bin/listen +0 -16
- data/bin/minitar +0 -16
- data/bin/pry +0 -16
- data/bin/rake +0 -16
- data/bin/reek +0 -16
- data/bin/relish +0 -16
- data/bin/restclient +0 -16
- data/bin/rspec +0 -16
- data/bin/rubocop +0 -16
- data/bin/ruby-parse +0 -16
- data/bin/ruby-rewrite +0 -16
- data/bin/ruby_parse +0 -16
- data/bin/ruby_parse_extract_error +0 -16
- data/bin/sparkr +0 -16
- data/bin/term_display +0 -16
- data/bin/term_mandel +0 -16
- data/bin/terminal-notifier +0 -16
- data/bin/thor +0 -16
- data/bin/unparser +0 -16
- data/bin/yard +0 -16
- data/bin/yardoc +0 -16
- data/bin/yri +0 -16
- data/features/arp-storm.pcap +0 -0
- data/features/arp.pcap +0 -0
- data/features/dhcp.pcap +0 -0
- data/features/icmp.feature +0 -130
- data/features/icmp.pcap +0 -0
- data/features/icmpv6.pcap +0 -0
- data/features/lldp.detailed.pcap +0 -0
- data/features/lldp.minimal.pcap +0 -0
- data/features/open_flow10/aggregate_stats_reply.raw +0 -0
- data/features/open_flow10/aggregate_stats_request.raw +0 -0
- data/features/open_flow10/bad_request.raw +0 -0
- data/features/open_flow10/barrier_reply.raw +0 -0
- data/features/open_flow10/barrier_request.raw +0 -0
- data/features/open_flow10/description_stats_reply.raw +0 -0
- data/features/open_flow10/description_stats_request.raw +0 -0
- data/features/open_flow10/echo_reply.raw +0 -0
- data/features/open_flow10/echo_request.raw +0 -0
- data/features/open_flow10/error.raw +0 -0
- data/features/open_flow10/features_reply.raw +0 -0
- data/features/open_flow10/features_request.raw +0 -0
- data/features/open_flow10/flow_mod_add.raw +0 -0
- data/features/open_flow10/flow_mod_delete.raw +0 -0
- data/features/open_flow10/flow_mod_delete_strict.raw +0 -0
- data/features/open_flow10/flow_mod_modify.raw +0 -0
- data/features/open_flow10/flow_mod_modify_strict.raw +0 -0
- data/features/open_flow10/flow_removed.raw +0 -0
- data/features/open_flow10/flow_stats_reply.raw +0 -0
- data/features/open_flow10/flow_stats_request.raw +0 -0
- data/features/open_flow10/get_config_reply.raw +0 -0
- data/features/open_flow10/get_config_request.raw +0 -0
- data/features/open_flow10/hello.raw +0 -0
- data/features/open_flow10/hello_failed.raw +0 -0
- data/features/open_flow10/nx_flow_mod_add.raw +0 -0
- data/features/open_flow10/nx_flow_mod_delete.raw +0 -0
- data/features/open_flow10/nx_flow_mod_delete_strict.raw +0 -0
- data/features/open_flow10/nx_flow_mod_modify.raw +0 -0
- data/features/open_flow10/nx_flow_mod_modify_strict.raw +0 -0
- data/features/open_flow10/nxast_learn.raw +0 -0
- data/features/open_flow10/packet_in.raw +0 -0
- data/features/open_flow10/packet_in_arp_reply.raw +0 -0
- data/features/open_flow10/packet_in_arp_request.raw +0 -0
- data/features/open_flow10/packet_in_cbench.raw +0 -0
- data/features/open_flow10/packet_out.raw +0 -0
- data/features/open_flow10/port_mod.raw +0 -0
- data/features/open_flow10/port_stats_reply.raw +0 -0
- data/features/open_flow10/port_stats_request.raw +0 -0
- data/features/open_flow10/port_status.raw +0 -0
- data/features/open_flow10/queue_get_config_reply.raw +0 -0
- data/features/open_flow10/queue_get_config_request.raw +0 -0
- data/features/open_flow10/queue_stats_request.raw +0 -0
- data/features/open_flow10/set_config.raw +0 -0
- data/features/open_flow10/table_stats_reply.raw +0 -0
- data/features/open_flow10/table_stats_request.raw +0 -0
- data/features/open_flow10/vendor.raw +0 -0
- data/features/open_flow10/vendor_stats_request.raw +0 -0
- data/features/open_flow13/action_copy_ttl_in.raw +0 -0
- data/features/open_flow13/action_copy_ttl_out.raw +0 -0
- data/features/open_flow13/action_dec_mpls_ttl.raw +0 -0
- data/features/open_flow13/action_dec_nw_ttl.raw +0 -0
- data/features/open_flow13/action_group.raw +0 -0
- data/features/open_flow13/action_pop_mpls.raw +0 -0
- data/features/open_flow13/action_pop_pbb.raw +0 -0
- data/features/open_flow13/action_pop_vlan.raw +0 -0
- data/features/open_flow13/action_push_mpls.raw +0 -0
- data/features/open_flow13/action_push_pbb.raw +0 -0
- data/features/open_flow13/action_push_vlan.raw +0 -0
- data/features/open_flow13/action_set_field.raw +0 -0
- data/features/open_flow13/action_set_mpls_ttl.raw +0 -0
- data/features/open_flow13/action_set_nw_ttl.raw +0 -0
- data/features/open_flow13/action_set_queue.raw +0 -0
- data/features/open_flow13/apply_actions.raw +0 -0
- data/features/open_flow13/bad_request.raw +0 -0
- data/features/open_flow13/echo_reply_body.raw +0 -0
- data/features/open_flow13/echo_reply_no_body.raw +0 -0
- data/features/open_flow13/echo_request_body.raw +0 -0
- data/features/open_flow13/echo_request_no_body.raw +0 -0
- data/features/open_flow13/features_reply.raw +0 -0
- data/features/open_flow13/features_request.raw +0 -0
- data/features/open_flow13/flow_add_apply_no_match.raw +0 -0
- data/features/open_flow13/flow_mod_add_apply_no_match.raw +0 -0
- data/features/open_flow13/flow_mod_no_match_or_instructions.raw +0 -0
- data/features/open_flow13/hello_failed.raw +0 -0
- data/features/open_flow13/hello_no_version_bitmap.raw +0 -0
- data/features/open_flow13/hello_version_bitmap.raw +0 -0
- data/features/open_flow13/instruction_clear_actions.raw +0 -0
- data/features/open_flow13/instruction_goto_table.raw +0 -0
- data/features/open_flow13/instruction_meter.raw +0 -0
- data/features/open_flow13/instruction_write_actions.raw +0 -0
- data/features/open_flow13/instruction_write_metadata.raw +0 -0
- data/features/open_flow13/oxm_arp_op_field.raw +0 -0
- data/features/open_flow13/oxm_arp_sha_field.raw +0 -0
- data/features/open_flow13/oxm_arp_spa_field.raw +0 -0
- data/features/open_flow13/oxm_arp_tha_field.raw +0 -0
- data/features/open_flow13/oxm_arp_tpa_field.raw +0 -0
- data/features/open_flow13/oxm_ether_destination_field.raw +0 -0
- data/features/open_flow13/oxm_ether_source_field.raw +0 -0
- data/features/open_flow13/oxm_ether_type_field.raw +0 -0
- data/features/open_flow13/oxm_experimenter_stratos_basic_dot11.raw +0 -0
- data/features/open_flow13/oxm_icmpv4_code_field.raw +0 -0
- data/features/open_flow13/oxm_icmpv4_type_field.raw +0 -0
- data/features/open_flow13/oxm_in_phy_port_field.raw +0 -0
- data/features/open_flow13/oxm_in_port_field.raw +0 -0
- data/features/open_flow13/oxm_invalid_field.raw +0 -0
- data/features/open_flow13/oxm_ip_dscp_field.raw +0 -0
- data/features/open_flow13/oxm_ip_ecn_field.raw +0 -0
- data/features/open_flow13/oxm_ipv4_destination_field.raw +0 -0
- data/features/open_flow13/oxm_ipv4_source_field.raw +0 -0
- data/features/open_flow13/oxm_ipv6_destination_field.raw +0 -0
- data/features/open_flow13/oxm_ipv6_source_field.raw +0 -0
- data/features/open_flow13/oxm_masked_arp_sha_field.raw +0 -0
- data/features/open_flow13/oxm_masked_arp_spa_field.raw +0 -0
- data/features/open_flow13/oxm_masked_arp_tha_field.raw +0 -0
- data/features/open_flow13/oxm_masked_arp_tpa_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ether_destination_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ether_source_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ipv4_destination_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ipv4_source_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ipv6_destination_field.raw +0 -0
- data/features/open_flow13/oxm_masked_ipv6_source_field.raw +0 -0
- data/features/open_flow13/oxm_masked_tunnel_id_field.raw +0 -0
- data/features/open_flow13/oxm_metadata_field.raw +0 -0
- data/features/open_flow13/oxm_metadata_masked_field.raw +0 -0
- data/features/open_flow13/oxm_no_fields.raw +0 -0
- data/features/open_flow13/oxm_sctp_destination_field.raw +0 -0
- data/features/open_flow13/oxm_sctp_source_field.raw +0 -0
- data/features/open_flow13/oxm_tcp_destination_field.raw +0 -0
- data/features/open_flow13/oxm_tcp_field.raw +0 -0
- data/features/open_flow13/oxm_tcp_source_field.raw +0 -0
- data/features/open_flow13/oxm_tunnel_id_field.raw +0 -0
- data/features/open_flow13/oxm_udp_destination_field.raw +0 -0
- data/features/open_flow13/oxm_udp_field.raw +0 -0
- data/features/open_flow13/oxm_udp_source_field.raw +0 -0
- data/features/open_flow13/oxm_vlan_pcp_field.raw +0 -0
- data/features/open_flow13/oxm_vlan_vid_field.raw +0 -0
- data/features/open_flow13/packet_in.raw +0 -0
- data/features/open_flow13/packet_out.raw +0 -0
- data/features/open_flow13/send_out_port.raw +0 -0
- data/features/open_flow13/table_stats_reply.raw +0 -0
- data/features/open_flow13/table_stats_request.raw +0 -0
- data/features/step_definitions/LICENSE +0 -675
- data/features/udp_no_payload.raw +0 -0
- data/features/udp_with_payload.raw +0 -0
- data/lib/pio/icmp/options.rb +0 -21
- data/lib/pio/open_flow/error.rb +0 -19
- data/lib/pio/open_flow/open_flow_header.rb +0 -31
- data/lib/pio/open_flow13/buffer_id.rb +0 -17
- data/spec/pio/arp/reply/options_spec.rb +0 -143
- data/spec/pio/arp/request/options_spec.rb +0 -113
|
@@ -1,66 +1,43 @@
|
|
|
1
1
|
@open_flow10
|
|
2
|
-
Feature:
|
|
2
|
+
Feature: Echo::Request
|
|
3
|
+
|
|
4
|
+
An Echo Request message consists of an OpenFlow header plus an
|
|
5
|
+
arbitrary-length data field. The data field might be a message
|
|
6
|
+
timestamp to check latency, various lengths to measure bandwidth, or
|
|
7
|
+
zero-size to verify liveness between the switch and controller.
|
|
8
|
+
|
|
3
9
|
Scenario: new
|
|
4
|
-
When I
|
|
10
|
+
When I create an OpenFlow message with:
|
|
5
11
|
"""
|
|
6
12
|
Pio::Echo::Request.new
|
|
7
13
|
"""
|
|
8
|
-
Then
|
|
9
|
-
And the message has the following fields and values:
|
|
14
|
+
Then the message has the following fields and values:
|
|
10
15
|
| field | value |
|
|
11
|
-
| ofp_version | 1 |
|
|
12
|
-
| message_type | 2 |
|
|
13
|
-
| message_length | 8 |
|
|
14
16
|
| transaction_id | 0 |
|
|
15
17
|
| xid | 0 |
|
|
16
18
|
| body | |
|
|
17
19
|
| user_data | |
|
|
18
20
|
|
|
19
21
|
Scenario: new(transaction_id: 123)
|
|
20
|
-
When I
|
|
22
|
+
When I create an OpenFlow message with:
|
|
21
23
|
"""
|
|
22
24
|
Pio::Echo::Request.new(transaction_id: 123)
|
|
23
25
|
"""
|
|
24
|
-
Then
|
|
25
|
-
And the message has the following fields and values:
|
|
26
|
+
Then the message has the following fields and values:
|
|
26
27
|
| field | value |
|
|
27
|
-
| ofp_version | 1 |
|
|
28
|
-
| message_type | 2 |
|
|
29
|
-
| message_length | 8 |
|
|
30
28
|
| transaction_id | 123 |
|
|
31
29
|
| xid | 123 |
|
|
32
30
|
| body | |
|
|
33
31
|
| user_data | |
|
|
34
32
|
|
|
35
33
|
Scenario: new(body: 'echo request body')
|
|
36
|
-
When I
|
|
34
|
+
When I create an OpenFlow message with:
|
|
37
35
|
"""
|
|
38
36
|
Pio::Echo::Request.new(body: 'echo request body')
|
|
39
37
|
"""
|
|
40
|
-
Then
|
|
41
|
-
|
|
42
|
-
|
|
|
43
|
-
|
|
|
44
|
-
| message_type | 2 |
|
|
45
|
-
| message_length | 25 |
|
|
46
|
-
| transaction_id | 0 |
|
|
47
|
-
| xid | 0 |
|
|
38
|
+
Then the message has the following fields and values:
|
|
39
|
+
| field | value |
|
|
40
|
+
| transaction_id | 0 |
|
|
41
|
+
| xid | 0 |
|
|
48
42
|
| body | echo request body |
|
|
49
43
|
| user_data | echo request body |
|
|
50
|
-
|
|
51
|
-
Scenario: read (no message body)
|
|
52
|
-
When I try to parse a file named "open_flow10/echo_request.raw" with "Pio::Echo::Request" class
|
|
53
|
-
Then it should finish successfully
|
|
54
|
-
And the message has the following fields and values:
|
|
55
|
-
| field | value |
|
|
56
|
-
| ofp_version | 1 |
|
|
57
|
-
| message_type | 2 |
|
|
58
|
-
| message_length | 8 |
|
|
59
|
-
| transaction_id | 0 |
|
|
60
|
-
| xid | 0 |
|
|
61
|
-
| body | |
|
|
62
|
-
| user_data | |
|
|
63
|
-
|
|
64
|
-
Scenario: parse error
|
|
65
|
-
When I try to parse a file named "open_flow10/features_request.raw" with "Pio::Echo::Request" class
|
|
66
|
-
Then it should fail with "Pio::ParseError", "Invalid OpenFlow10 Echo Request message."
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
@open_flow10
|
|
2
|
-
Feature:
|
|
2
|
+
Feature: Enqueue
|
|
3
3
|
|
|
4
4
|
Scenario: new(port: 1, queue_id: 2)
|
|
5
|
-
When I
|
|
5
|
+
When I create an OpenFlow action with:
|
|
6
6
|
"""
|
|
7
7
|
Pio::OpenFlow10::Enqueue.new(port: 1, queue_id: 2)
|
|
8
8
|
"""
|
|
9
|
-
Then
|
|
10
|
-
And the action has the following fields and values:
|
|
9
|
+
Then the action has the following fields and values:
|
|
11
10
|
| field | value |
|
|
12
11
|
| action_type | 11 |
|
|
13
12
|
| action_length | 16 |
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
Feature:
|
|
1
|
+
Feature: ExactMatch
|
|
2
2
|
Scenario: new (from ARP request Packet In)
|
|
3
|
-
When I create an exact match from "open_flow10/packet_in_arp_request.
|
|
3
|
+
When I create an exact match from "open_flow10/packet_in_arp_request.rb"
|
|
4
4
|
Then the message has the following fields and values:
|
|
5
5
|
| field | value |
|
|
6
6
|
| wildcards | {} |
|
|
7
7
|
| in_port | 1 |
|
|
8
|
-
| source_mac_address |
|
|
8
|
+
| source_mac_address | fa:ce:b0:00:00:cc |
|
|
9
9
|
| destination_mac_address | ff:ff:ff:ff:ff:ff |
|
|
10
10
|
| vlan_vid | 65535 |
|
|
11
11
|
| vlan_priority | 0 |
|
|
12
12
|
| ether_type | 2054 |
|
|
13
13
|
| tos | 0 |
|
|
14
14
|
| ip_protocol | 1 |
|
|
15
|
-
| source_ip_address |
|
|
16
|
-
| destination_ip_address | 192.168.2
|
|
15
|
+
| source_ip_address | 192.168.0.1 |
|
|
16
|
+
| destination_ip_address | 192.168.0.2 |
|
|
17
17
|
| transport_source_port | 0 |
|
|
18
18
|
| transport_destination_port | 0 |
|
|
19
19
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@open_flow10
|
|
2
|
-
Feature:
|
|
2
|
+
Feature: Features::Reply
|
|
3
3
|
Scenario: new
|
|
4
|
-
When I
|
|
4
|
+
When I create an OpenFlow message with:
|
|
5
5
|
"""
|
|
6
6
|
Pio::Features::Reply.new(
|
|
7
7
|
datapath_id: 0x123,
|
|
@@ -9,80 +9,35 @@ Feature: Pio::Features::Reply
|
|
|
9
9
|
n_tables: 0xfe,
|
|
10
10
|
capabilities: [:flow_stats, :table_stats, :port_stats, :queue_stats, :arp_match_ip],
|
|
11
11
|
actions: [:output, :set_source_mac_address, :set_destination_mac_address],
|
|
12
|
-
ports: [{
|
|
13
|
-
|
|
12
|
+
ports: [{ number: 1,
|
|
13
|
+
mac_address: '11:22:33:44:55:66',
|
|
14
14
|
name: 'port123',
|
|
15
15
|
config: [:port_down],
|
|
16
16
|
state: [:link_down],
|
|
17
17
|
curr: [:port_10gb_fd, :port_copper] }]
|
|
18
18
|
)
|
|
19
19
|
"""
|
|
20
|
-
Then
|
|
21
|
-
|
|
22
|
-
|
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
-
|
|
|
32
|
-
|
|
|
33
|
-
|
|
|
34
|
-
| ports.
|
|
35
|
-
| ports[0].
|
|
36
|
-
| ports[0].
|
|
37
|
-
| ports[0].
|
|
38
|
-
| ports[0].
|
|
39
|
-
| ports[0].
|
|
40
|
-
| ports[0].
|
|
41
|
-
| ports[0].
|
|
42
|
-
| ports[0].
|
|
43
|
-
| ports[0].
|
|
44
|
-
| ports[0].supported | [] |
|
|
45
|
-
| ports[0].peer | [] |
|
|
46
|
-
|
|
47
|
-
Scenario: read
|
|
48
|
-
When I try to parse a file named "open_flow10/features_reply.raw" with "Features::Reply" class
|
|
49
|
-
Then it should finish successfully
|
|
50
|
-
And the message has the following fields and values:
|
|
51
|
-
| field | value |
|
|
52
|
-
| ofp_version | 1 |
|
|
53
|
-
| message_type | 6 |
|
|
54
|
-
| message_length | 176 |
|
|
55
|
-
| transaction_id | 2 |
|
|
56
|
-
| xid | 2 |
|
|
57
|
-
| datapath_id | 1 |
|
|
58
|
-
| dpid | 1 |
|
|
59
|
-
| n_buffers | 256 |
|
|
60
|
-
| n_tables | 1 |
|
|
61
|
-
| capabilities | [:flow_stats, :table_stats, :port_stats, :arp_match_ip] |
|
|
62
|
-
| actions | [:output, :set_vlan_vid, :set_vlan_pcp, :strip_vlan, :set_source_mac_address, :set_destination_mac_address, :set_source_ip_address, :set_destination_ip_address, :set_tos, :set_transport_source_port, :set_transport_destination_port, :enqueue] |
|
|
63
|
-
| ports.length | 3 |
|
|
64
|
-
| ports[0].datapath_id | 1 |
|
|
65
|
-
| ports[0].port_no | 2 |
|
|
66
|
-
| ports[0].mac_address | 16:7d:a4:37:ba:10 |
|
|
67
|
-
| ports[0].hardware_address | 16:7d:a4:37:ba:10 |
|
|
68
|
-
| ports[0].name | trema0-0 |
|
|
69
|
-
| ports[0].config | [] |
|
|
70
|
-
| ports[0].state | [] |
|
|
71
|
-
| ports[0].curr | [:port_10gb_fd, :port_copper] |
|
|
72
|
-
| ports[0].advertised | [] |
|
|
73
|
-
| ports[0].supported | [] |
|
|
74
|
-
| ports[0].peer | [] |
|
|
75
|
-
| ports[2].port_no | 1 |
|
|
76
|
-
| ports[2].number | 1 |
|
|
77
|
-
| ports[2].mac_address | 62:94:3a:f6:40:db |
|
|
78
|
-
| ports[2].hardware_address | 62:94:3a:f6:40:db |
|
|
79
|
-
| ports[2].name | trema1-0 |
|
|
80
|
-
| ports[2].config | [] |
|
|
81
|
-
| ports[2].state | [] |
|
|
82
|
-
| ports[2].curr | [:port_10gb_fd, :port_copper] |
|
|
83
|
-
| ports[2].advertised | [] |
|
|
84
|
-
| ports[2].supported | [] |
|
|
85
|
-
| ports[2].peer | [] |
|
|
86
|
-
| ports[2].up? | true |
|
|
87
|
-
| ports[2].down? | false |
|
|
88
|
-
| ports[2].local? | false |
|
|
20
|
+
Then the message has the following fields and values:
|
|
21
|
+
| field | value |
|
|
22
|
+
| transaction_id | 0 |
|
|
23
|
+
| xid | 0 |
|
|
24
|
+
| datapath_id | 291 |
|
|
25
|
+
| dpid | 291 |
|
|
26
|
+
| n_buffers | 256 |
|
|
27
|
+
| n_tables | 254 |
|
|
28
|
+
| capabilities | [:flow_stats, :table_stats, :port_stats, :queue_stats, :arp_match_ip] |
|
|
29
|
+
| actions | [:output, :set_source_mac_address, :set_destination_mac_address] |
|
|
30
|
+
| ports.length | 1 |
|
|
31
|
+
| ports[0].datapath_id | 291 |
|
|
32
|
+
| ports[0].dpid | 291 |
|
|
33
|
+
| ports[0].number | 1 |
|
|
34
|
+
| ports[0].local? | false |
|
|
35
|
+
| ports[0].mac_address | 11:22:33:44:55:66 |
|
|
36
|
+
| ports[0].name | port123 |
|
|
37
|
+
| ports[0].config | [:port_down] |
|
|
38
|
+
| ports[0].state | [:link_down] |
|
|
39
|
+
| ports[0].down? | true |
|
|
40
|
+
| ports[0].curr | [:port_10gb_fd, :port_copper] |
|
|
41
|
+
| ports[0].advertised | [] |
|
|
42
|
+
| ports[0].supported | [] |
|
|
43
|
+
| ports[0].peer | [] |
|
|
@@ -1,43 +1,25 @@
|
|
|
1
1
|
@open_flow10
|
|
2
|
-
Feature:
|
|
2
|
+
Feature: Features::Request
|
|
3
|
+
|
|
4
|
+
Upon OpenFlow channel establishment, the controller sends a
|
|
5
|
+
Features::Request message.
|
|
6
|
+
|
|
3
7
|
Scenario: new
|
|
4
|
-
When I
|
|
8
|
+
When I create an OpenFlow message with:
|
|
5
9
|
"""
|
|
6
10
|
Pio::Features::Request.new
|
|
7
11
|
"""
|
|
8
|
-
Then
|
|
9
|
-
And the message has the following fields and values:
|
|
12
|
+
Then the message has the following fields and values:
|
|
10
13
|
| field | value |
|
|
11
|
-
| ofp_version | 1 |
|
|
12
|
-
| message_type | 5 |
|
|
13
|
-
| message_length | 8 |
|
|
14
14
|
| transaction_id | 0 |
|
|
15
15
|
| xid | 0 |
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
|
|
18
17
|
Scenario: new(transaction_id: 123)
|
|
19
|
-
When I
|
|
18
|
+
When I create an OpenFlow message with:
|
|
20
19
|
"""
|
|
21
20
|
Pio::Features::Request.new(transaction_id: 123)
|
|
22
21
|
"""
|
|
23
|
-
Then
|
|
24
|
-
And the message has the following fields and values:
|
|
22
|
+
Then the message has the following fields and values:
|
|
25
23
|
| field | value |
|
|
26
|
-
| ofp_version | 1 |
|
|
27
|
-
| message_type | 5 |
|
|
28
|
-
| message_length | 8 |
|
|
29
24
|
| transaction_id | 123 |
|
|
30
25
|
| xid | 123 |
|
|
31
|
-
| user_data | |
|
|
32
|
-
|
|
33
|
-
Scenario: read
|
|
34
|
-
When I try to parse a file named "open_flow10/features_request.raw" with "Pio::Features::Request" class
|
|
35
|
-
Then it should finish successfully
|
|
36
|
-
And the message has the following fields and values:
|
|
37
|
-
| field | value |
|
|
38
|
-
| ofp_version | 1 |
|
|
39
|
-
| message_type | 5 |
|
|
40
|
-
| message_length | 8 |
|
|
41
|
-
| transaction_id | 2 |
|
|
42
|
-
| xid | 2 |
|
|
43
|
-
| user_data | |
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@open_flow10
|
|
2
|
-
Feature:
|
|
2
|
+
Feature: FlowMod
|
|
3
3
|
Scenario: new
|
|
4
|
-
When I
|
|
4
|
+
When I create an OpenFlow message with:
|
|
5
5
|
"""
|
|
6
6
|
Pio::FlowMod.new(
|
|
7
7
|
actions: [],
|
|
@@ -10,16 +10,13 @@ Feature: Pio::FlowMod
|
|
|
10
10
|
flags: [],
|
|
11
11
|
hard_timeout: 0,
|
|
12
12
|
idle_timeout: 0,
|
|
13
|
-
match: Match.new(),
|
|
13
|
+
match: Pio::Match.new(),
|
|
14
14
|
out_port: 0,
|
|
15
15
|
priority: 0
|
|
16
16
|
)
|
|
17
17
|
"""
|
|
18
|
-
Then
|
|
19
|
-
And the message has the following fields and values:
|
|
18
|
+
Then the message has the following fields and values:
|
|
20
19
|
| field | value |
|
|
21
|
-
| ofp_version | 1 |
|
|
22
|
-
| message_type | 14 |
|
|
23
20
|
| actions | [] |
|
|
24
21
|
| buffer_id | 0 |
|
|
25
22
|
| command | :add |
|
|
@@ -41,184 +38,3 @@ Feature: Pio::FlowMod
|
|
|
41
38
|
| match.wildcards.key?(:tos) | true |
|
|
42
39
|
| out_port | 0 |
|
|
43
40
|
| priority | 0 |
|
|
44
|
-
|
|
45
|
-
Scenario: read (Flow Mod Add)
|
|
46
|
-
When I try to parse a file named "open_flow10/flow_mod_add.raw" with "Pio::FlowMod" class
|
|
47
|
-
Then it should finish successfully
|
|
48
|
-
And the message has the following fields and values:
|
|
49
|
-
| field | value |
|
|
50
|
-
| ofp_version | 1 |
|
|
51
|
-
| message_type | 14 |
|
|
52
|
-
| message_length | 192 |
|
|
53
|
-
| transaction_id | 0 |
|
|
54
|
-
| xid | 0 |
|
|
55
|
-
| match.wildcards | {:source_ip_address=>24, :destination_ip_address=>24} |
|
|
56
|
-
| match.in_port | 1 |
|
|
57
|
-
| match.source_mac_address | 00:00:00:00:00:0a |
|
|
58
|
-
| match.destination_mac_address | 00:00:00:00:00:14 |
|
|
59
|
-
| match.vlan_vid | 0 |
|
|
60
|
-
| match.vlan_priority | 0 |
|
|
61
|
-
| match.ether_type | 2048 |
|
|
62
|
-
| match.tos | 0 |
|
|
63
|
-
| match.ip_protocol | 1 |
|
|
64
|
-
| match.source_ip_address | 10.0.0.0 |
|
|
65
|
-
| match.source_ip_address.prefixlen | 8 |
|
|
66
|
-
| match.destination_ip_address | 20.0.0.0 |
|
|
67
|
-
| match.destination_ip_address.prefixlen | 8 |
|
|
68
|
-
| match.transport_source_port | 8 |
|
|
69
|
-
| match.transport_destination_port | 0 |
|
|
70
|
-
| cookie | 0 |
|
|
71
|
-
| command | :add |
|
|
72
|
-
| idle_timeout | 0 |
|
|
73
|
-
| hard_timeout | 0 |
|
|
74
|
-
| priority | 65535 |
|
|
75
|
-
| buffer_id | 4294967295 |
|
|
76
|
-
| out_port | 65535 |
|
|
77
|
-
| flags | [:send_flow_rem] |
|
|
78
|
-
| actions.length | 12 |
|
|
79
|
-
| actions.first.class | Pio::OpenFlow10::SetVlanVid |
|
|
80
|
-
| actions.first.vlan_id | 10 |
|
|
81
|
-
|
|
82
|
-
Scenario: read (Flow Mod Modify)
|
|
83
|
-
When I try to parse a file named "open_flow10/flow_mod_modify.raw" with "Pio::FlowMod" class
|
|
84
|
-
Then it should finish successfully
|
|
85
|
-
And the message has the following fields and values:
|
|
86
|
-
| field | value |
|
|
87
|
-
| ofp_version | 1 |
|
|
88
|
-
| message_type | 14 |
|
|
89
|
-
| message_length | 192 |
|
|
90
|
-
| transaction_id | 0 |
|
|
91
|
-
| xid | 0 |
|
|
92
|
-
| match.wildcards | {:source_ip_address=>24, :destination_ip_address=>24} |
|
|
93
|
-
| match.in_port | 1 |
|
|
94
|
-
| match.source_mac_address | 00:00:00:00:00:0a |
|
|
95
|
-
| match.destination_mac_address | 00:00:00:00:00:14 |
|
|
96
|
-
| match.vlan_vid | 0 |
|
|
97
|
-
| match.vlan_priority | 0 |
|
|
98
|
-
| match.ether_type | 2048 |
|
|
99
|
-
| match.tos | 0 |
|
|
100
|
-
| match.ip_protocol | 1 |
|
|
101
|
-
| match.source_ip_address | 10.0.0.0 |
|
|
102
|
-
| match.source_ip_address.prefixlen | 8 |
|
|
103
|
-
| match.destination_ip_address | 20.0.0.0 |
|
|
104
|
-
| match.destination_ip_address.prefixlen | 8 |
|
|
105
|
-
| match.transport_source_port | 8 |
|
|
106
|
-
| match.transport_destination_port | 0 |
|
|
107
|
-
| cookie | 0 |
|
|
108
|
-
| command | :modify |
|
|
109
|
-
| idle_timeout | 0 |
|
|
110
|
-
| hard_timeout | 0 |
|
|
111
|
-
| priority | 65535 |
|
|
112
|
-
| buffer_id | 4294967295 |
|
|
113
|
-
| out_port | 65535 |
|
|
114
|
-
| flags | [:send_flow_rem] |
|
|
115
|
-
| actions.length | 12 |
|
|
116
|
-
| actions.first.class | Pio::OpenFlow10::SetVlanVid |
|
|
117
|
-
| actions.first.vlan_id | 10 |
|
|
118
|
-
|
|
119
|
-
Scenario: read (Flow Mod Modify Strict)
|
|
120
|
-
When I try to parse a file named "open_flow10/flow_mod_modify_strict.raw" with "Pio::FlowMod" class
|
|
121
|
-
Then it should finish successfully
|
|
122
|
-
And the message has the following fields and values:
|
|
123
|
-
| field | value |
|
|
124
|
-
| ofp_version | 1 |
|
|
125
|
-
| message_type | 14 |
|
|
126
|
-
| message_length | 192 |
|
|
127
|
-
| transaction_id | 0 |
|
|
128
|
-
| xid | 0 |
|
|
129
|
-
| match.wildcards | {:source_ip_address=>24, :destination_ip_address=>24} |
|
|
130
|
-
| match.in_port | 1 |
|
|
131
|
-
| match.source_mac_address | 00:00:00:00:00:0a |
|
|
132
|
-
| match.destination_mac_address | 00:00:00:00:00:14 |
|
|
133
|
-
| match.vlan_vid | 0 |
|
|
134
|
-
| match.vlan_priority | 0 |
|
|
135
|
-
| match.ether_type | 2048 |
|
|
136
|
-
| match.tos | 0 |
|
|
137
|
-
| match.ip_protocol | 1 |
|
|
138
|
-
| match.source_ip_address | 10.0.0.0 |
|
|
139
|
-
| match.source_ip_address.prefixlen | 8 |
|
|
140
|
-
| match.destination_ip_address | 20.0.0.0 |
|
|
141
|
-
| match.destination_ip_address.prefixlen | 8 |
|
|
142
|
-
| match.transport_source_port | 8 |
|
|
143
|
-
| match.transport_destination_port | 0 |
|
|
144
|
-
| cookie | 0 |
|
|
145
|
-
| command | :modify_strict |
|
|
146
|
-
| idle_timeout | 0 |
|
|
147
|
-
| hard_timeout | 0 |
|
|
148
|
-
| priority | 65535 |
|
|
149
|
-
| buffer_id | 4294967295 |
|
|
150
|
-
| out_port | 65535 |
|
|
151
|
-
| flags | [:send_flow_rem] |
|
|
152
|
-
| actions.length | 12 |
|
|
153
|
-
| actions.first.class | Pio::OpenFlow10::SetVlanVid |
|
|
154
|
-
| actions.first.vlan_id | 10 |
|
|
155
|
-
|
|
156
|
-
Scenario: read (Flow Mod Delete)
|
|
157
|
-
When I try to parse a file named "open_flow10/flow_mod_delete.raw" with "Pio::FlowMod" class
|
|
158
|
-
Then it should finish successfully
|
|
159
|
-
And the message has the following fields and values:
|
|
160
|
-
| field | value |
|
|
161
|
-
| ofp_version | 1 |
|
|
162
|
-
| message_type | 14 |
|
|
163
|
-
| message_length | 72 |
|
|
164
|
-
| transaction_id | 0 |
|
|
165
|
-
| xid | 0 |
|
|
166
|
-
| match.wildcards | {:source_ip_address=>24, :destination_ip_address=>24} |
|
|
167
|
-
| match.in_port | 1 |
|
|
168
|
-
| match.source_mac_address | 00:00:00:00:00:0a |
|
|
169
|
-
| match.destination_mac_address | 00:00:00:00:00:00 |
|
|
170
|
-
| match.vlan_vid | 0 |
|
|
171
|
-
| match.vlan_priority | 0 |
|
|
172
|
-
| match.ether_type | 2048 |
|
|
173
|
-
| match.tos | 0 |
|
|
174
|
-
| match.ip_protocol | 1 |
|
|
175
|
-
| match.source_ip_address | 10.0.0.0 |
|
|
176
|
-
| match.source_ip_address.prefixlen | 8 |
|
|
177
|
-
| match.destination_ip_address | 20.0.0.0 |
|
|
178
|
-
| match.destination_ip_address.prefixlen | 8 |
|
|
179
|
-
| match.transport_source_port | 8 |
|
|
180
|
-
| match.transport_destination_port | 0 |
|
|
181
|
-
| cookie | 0 |
|
|
182
|
-
| command | :delete |
|
|
183
|
-
| idle_timeout | 0 |
|
|
184
|
-
| hard_timeout | 0 |
|
|
185
|
-
| priority | 65535 |
|
|
186
|
-
| buffer_id | 4294967295 |
|
|
187
|
-
| out_port | 65535 |
|
|
188
|
-
| flags | [] |
|
|
189
|
-
| actions | [] |
|
|
190
|
-
|
|
191
|
-
Scenario: read (Flow Mod Delete Strict)
|
|
192
|
-
When I try to parse a file named "open_flow10/flow_mod_delete_strict.raw" with "Pio::FlowMod" class
|
|
193
|
-
Then it should finish successfully
|
|
194
|
-
And the message has the following fields and values:
|
|
195
|
-
| field | value |
|
|
196
|
-
| ofp_version | 1 |
|
|
197
|
-
| message_type | 14 |
|
|
198
|
-
| message_length | 72 |
|
|
199
|
-
| transaction_id | 0 |
|
|
200
|
-
| xid | 0 |
|
|
201
|
-
| match.wildcards | {:source_ip_address=>24, :destination_ip_address=>24} |
|
|
202
|
-
| match.in_port | 1 |
|
|
203
|
-
| match.source_mac_address | 00:00:00:00:00:0a |
|
|
204
|
-
| match.destination_mac_address | 00:00:00:00:00:14 |
|
|
205
|
-
| match.vlan_vid | 0 |
|
|
206
|
-
| match.vlan_priority | 0 |
|
|
207
|
-
| match.ether_type | 2048 |
|
|
208
|
-
| match.tos | 0 |
|
|
209
|
-
| match.ip_protocol | 1 |
|
|
210
|
-
| match.source_ip_address | 10.0.0.0 |
|
|
211
|
-
| match.source_ip_address.prefixlen | 8 |
|
|
212
|
-
| match.destination_ip_address | 20.0.0.0 |
|
|
213
|
-
| match.destination_ip_address.prefixlen | 8 |
|
|
214
|
-
| match.transport_source_port | 8 |
|
|
215
|
-
| match.transport_destination_port | 0 |
|
|
216
|
-
| cookie | 1 |
|
|
217
|
-
| command | :delete_strict |
|
|
218
|
-
| idle_timeout | 0 |
|
|
219
|
-
| hard_timeout | 0 |
|
|
220
|
-
| priority | 65535 |
|
|
221
|
-
| buffer_id | 4294967295 |
|
|
222
|
-
| out_port | 65535 |
|
|
223
|
-
| flags | [] |
|
|
224
|
-
| actions | [] |
|