Sha256: c163f43fdfea03f4cde9473a74b0c9e6c779c53abd145d75720d47480aa5403f

Contents?: true

Size: 1.34 KB

Versions: 34

Compression:

Stored size: 1.34 KB

Contents

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

  servers = Fog::Compute[:vsphere].servers
  server = servers.last

  tests('The server model should') do
    tests('have the action') do
      test('reload') { server.respond_to? 'reload' }
      %w{ stop start destroy reboot }.each do |action|
        test(action) { server.respond_to? action }
        test("#{action} returns successfully") { server.send(action.to_sym) ? true : false }
      end
    end
    tests('have attributes') do
      model_attribute_hash = server.attributes
      attributes = [ :id,
        :instance_uuid,
        :uuid,
        :power_state,
        :tools_state,
        :mo_ref,
        :tools_version,
        :hostname,
        :mac_addresses,
        :operatingsystem,
        :connection_state,
        :hypervisor,
        :name,
        :ipaddress,
        :is_a_template]
      tests("The server model should respond to") do
        attributes.each do |attribute|
          test("#{attribute}") { server.respond_to? attribute }
        end
      end
      tests("The attributes hash should have key") do
        attributes.each do |attribute|
          test("#{attribute}") { model_attribute_hash.has_key? attribute }
        end
      end
    end
    test('be a kind of Fog::Compute::Vsphere::Server') { server.kind_of? Fog::Compute::Vsphere::Server }
  end

end

Version data entries

34 entries across 34 versions & 11 rubygems

Version Path
fog-parser-fix-1.6.1 tests/vsphere/models/compute/server_tests.rb
fog-test-again-1.6.0 tests/vsphere/models/compute/server_tests.rb
fog-parser-fix-1.6.0 tests/vsphere/models/compute/server_tests.rb
fog-maestrodev-1.7.0.20121114190951 tests/vsphere/models/compute/server_tests.rb
fog-1.7.0 tests/vsphere/models/compute/server_tests.rb
fog-1.6.0 tests/vsphere/models/compute/server_tests.rb
fog-1.5.0 tests/vsphere/models/compute/server_tests.rb
rackspace-fog-1.4.2 tests/vsphere/models/compute/server_tests.rb
fog-1.4.0 tests/vsphere/models/compute/server_tests.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/tests/vsphere/models/compute/server_tests.rb
michiels-fog-1.3.1 tests/vsphere/models/compute/server_tests.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/tests/vsphere/models/compute/server_tests.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/tests/vsphere/models/compute/server_tests.rb
fog-1.3.1 tests/vsphere/models/compute/server_tests.rb
fog-1.3.0 tests/vsphere/models/compute/server_tests.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/tests/vsphere/models/compute/server_tests.rb
fog-1.2.0 tests/vsphere/models/compute/server_tests.rb
ktheory-fog-1.1.2 tests/vsphere/models/compute/server_tests.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/tests/vsphere/models/compute/server_tests.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/tests/vsphere/models/compute/server_tests.rb