Sha256: 7fff6ec1f708fc1ad19f67a1257a02617dd21783c26786a34b6dbcbde898a2ca

Contents?: true

Size: 1.17 KB

Versions: 53

Compression:

Stored size: 1.17 KB

Contents

Shindo.tests("Fog::Compute[:openvz] | server model", ['openvz', 'compute']) do

  server  = openvz_fog_test_server

  tests('The server model should') do

    tests('have the action') do
      test('reload') { server.respond_to? 'reload' }
      %w{
        destroy
        mount
        umount
        restart
        stop
        start
        quotaon
        quotaoff
        quotainit
        suspend
        resume
      }.each do |action|
        test(action) { server.respond_to? action }
      end
    end
    tests('have attributes') do
      model_attribute_hash = server.attributes
      attributes = [
        :ctid,
        :description
      ]
      tests("The server model should respond to") do
        attributes.each do |attribute|
          test("#{attribute}") { server.respond_to? attribute }
        end
      end
    end
    test('#stop') do
      pending if Fog.mocking?
      server.stop
      server.wait_for { server.status == 'stopped' }
      server.status == 'stopped'
    end
    test('#start') do
      pending if Fog.mocking?
      server.start
      server.wait_for { ready? }
      server.ready?
    end

  end

  # restore server status
  server.start

end

Version data entries

53 entries across 53 versions & 3 rubygems

Version Path
fog-maestrodev-1.15.0.20130927082724 tests/openvz/models/compute/server_tests.rb
fog-maestrodev-1.15.0.20130829165835 tests/openvz/models/compute/server_tests.rb
fog-1.15.0 tests/openvz/models/compute/server_tests.rb
gapinc-fog-1.14.0 tests/openvz/models/compute/server_tests.rb
fog-maestrodev-1.14.0.20130806165225 tests/openvz/models/compute/server_tests.rb
fog-1.14.0 tests/openvz/models/compute/server_tests.rb
fog-1.13.0 tests/openvz/models/compute/server_tests.rb
gapinc-fog-1.12.1.2 tests/openvz/models/compute/server_tests.rb
gapinc-fog-1.12.1.1 tests/openvz/models/compute/server_tests.rb
gapinc-fog-1.12.1a tests/openvz/models/compute/server_tests.rb
gapinc-fog-1.12.1 tests/openvz/models/compute/server_tests.rb
fog-1.12.1 tests/openvz/models/compute/server_tests.rb
fog-1.12.0 tests/openvz/models/compute/server_tests.rb