Sha256: 8ee30e87493ca425d0b5aaff476067626ae8218751cfe51bc1ac16e51135ccc0

Contents?: true

Size: 1.07 KB

Versions: 56

Compression:

Stored size: 1.07 KB

Contents

Shindo.tests('Fog::Orchestration[:openstack] | stack requests', ['openstack']) do
  @stack_format = {
    'links'               => Array,
    'id'                  => String,
    'stack_name'          => String,
    'description'         => Fog::Nullable::String,
    'stack_status'        => String,
    'stack_status_reason' => String,
    'creation_time'       => Time,
    'updated_time'        => Time
  }

  @create_format = {
    'id'                  => String,
    'links'               => Array,
  }

  tests('success') do
    tests('#create_stack("teststack")').formats(@create_format) do
      Fog::Orchestration[:openstack].create_stack("teststack").body
    end

    tests('#list_stacks').formats({'stacks' => [@stack_format]}) do
      Fog::Orchestration[:openstack].list_stacks.body
    end

    tests('#update_stack("teststack")').formats({}) do
      Fog::Orchestration[:openstack].update_stack("teststack").body
    end

    tests('#delete_stack("teststack", "id")').formats({}) do
      Fog::Orchestration[:openstack].delete_stack("teststack", "id").body
    end
  end
end

Version data entries

56 entries across 56 versions & 5 rubygems

Version Path
fog-maestrodev-1.18.0.20131127194823 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/openstack/requests/orchestration/stack_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/openstack/requests/orchestration/stack_tests.rb
fog-1.18.0 tests/openstack/requests/orchestration/stack_tests.rb
fog-1.17.0 tests/openstack/requests/orchestration/stack_tests.rb
fog-1.16.0 tests/openstack/requests/orchestration/stack_tests.rb