Sha256: ffaa864a25aba28e2af1bb3f171e1681b98c68e795f6cdbc8fe52650a1e3f72b

Contents?: true

Size: 803 Bytes

Versions: 9

Compression:

Stored size: 803 Bytes

Contents

Feature: trema up command

  In order to restart killed processes
  As a developer using Trema
  I want to execute "trema up" command

  Background:
    Given a file named "switch_monitor.conf" with:
      """
      vswitch { datapath_id 0x1 }
      vswitch { datapath_id 0x2 }
      vswitch { datapath_id 0x3 }

      vhost "host1"
      vhost "host2"
      vhost "host3"

      link "0x1", "host1"
      link "0x2", "host2"
      link "0x3", "host3"
      """
    And I successfully run `trema run ../../src/examples/switch_monitor/switch-monitor.rb -c switch_monitor.conf -d`
    And I run `trema kill 0x1 0x2 0x3`
    And I run `trema kill host1 host2 host3`

  @slow_process
  Scenario: up a switch
    When I run `trema up 0x1`
    Then the vswitch "0x1" is running

  @wip
  Scenario: up a host

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
trema-0.3.5 features/trema.up.feature
trema-0.3.4 features/trema.up.feature
trema-0.3.3 features/trema.up.feature
trema-0.3.2 features/trema.up.feature
trema-0.3.1 features/trema.up.feature
trema-0.3.0 features/trema.up.feature
trema-0.2.8 features/trema.up.feature
trema-0.2.7 features/trema.up.feature
trema-0.2.6 features/trema.up.feature