Sha256: 5b4fd99e94d4749299b9a86e82f8f4e45270fab5d9494c023e97adcd38f39d2c
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
Feature: trema stop command 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_controller.rb" with: """ class SwitchDisconnectedController < Trema::Controller def switch_disconnected(dpid) logger.info "Switch #{dpid.to_hex} is disconnected." end end """ And a file named "trema.conf" with: """ vswitch { datapath_id 0xabc } vhost('host1') { ip '192.168.0.1' } vhost('host2') { ip '192.168.0.2' } link '0xabc', 'host1' link '0xabc', 'host2' """ And I run `trema run switch_disconnected_controller.rb -c trema.conf -d` @sudo Scenario: stop switch_name When I successfully run `trema stop 0xabc` And I successfully run `sleep 10` Then the file "SwitchDisconnectedController.log" should contain: """ Switch 0xabc is disconnected. """ @sudo Scenario: stop host_name When I successfully run `trema stop host1` And I successfully run `sleep 5` Then the file "vhost.host1.pid" should not exist @sudo Scenario: stop NO_SUCH_NAME When I run `trema stop NO_SUCH_NAME` Then the exit status should not be 0 And the output should contain: """ "NO_SUCH_NAME" does not exist. """
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trema-0.5.1 | features/trema_stop.feature |
trema-0.5.0 | features/trema_stop.feature |
trema-0.4.8 | features/trema_stop.feature |