Sha256: dfadc5e60970955a2f9291bb607b34d44b94452fac0b75cb19d74733f7191734
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 KB
Contents
Feature: switch_disconnected handler Background: Given I set the environment variables to: | variable | value | | TREMA_LOG_DIR | . | | TREMA_PID_DIR | . | | TREMA_SOCKET_DIR | . | And a file named "switch_disconnected.rb" with: """ruby class SwitchDisconnected < Trema::Controller def switch_disconnected(dpid) logger.info "Switch #{dpid.to_hex} is disconnected." end end """ And a file named "trema.conf" with: """ruby vswitch { datapath_id 0xabc } """ @sudo Scenario: invoke switch_disconnected handler Given I use OpenFlow 1.0 And I trema run "switch_disconnected.rb" with the configuration "trema.conf" When I successfully run `trema stop 0xabc` Then the file "SwitchDisconnected.log" should contain: """ Switch 0xabc is disconnected. """ @sudo Scenario: invoke switch_disconnected handler (OpenFlow 1.3) Given I use OpenFlow 1.3 And I trema run "switch_disconnected.rb" with the configuration "trema.conf" When I successfully run `trema stop 0xabc` Then the file "SwitchDisconnected.log" should contain: """ Switch 0xabc is disconnected. """
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trema-0.10.1 | features/handlers/switch_disconnected.feature |
trema-0.10.0 | features/handlers/switch_disconnected.feature |
trema-0.9.0 | features/handlers/switch_disconnected.feature |