Sha256: 41577134d44e2e61a5953d55552a35e47a20f650b09c74f426e42b033f9fb4ed

Contents?: true

Size: 1.32 KB

Versions: 27

Compression:

Stored size: 1.32 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,
        :public_ip_address]
      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.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

27 entries across 27 versions & 4 rubygems

Version Path
fog-1.35.0 tests/vsphere/models/compute/server_tests.rb
fog-2.0.0.pre.0 tests/vsphere/models/compute/server_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/vsphere/models/compute/server_tests.rb
fog-1.34.0 tests/vsphere/models/compute/server_tests.rb
fog-1.33.0 tests/vsphere/models/compute/server_tests.rb
fog-1.32.0 tests/vsphere/models/compute/server_tests.rb
fog-1.31.0 tests/vsphere/models/compute/server_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/vsphere/models/compute/server_tests.rb
fog-1.30.0 tests/vsphere/models/compute/server_tests.rb
fog-1.29.0 tests/vsphere/models/compute/server_tests.rb
fog-1.28.0 tests/vsphere/models/compute/server_tests.rb
fog-1.27.0 tests/vsphere/models/compute/server_tests.rb
fog-1.26.0 tests/vsphere/models/compute/server_tests.rb
fog-1.25.0 tests/vsphere/models/compute/server_tests.rb
nsidc-fog-1.24.1 tests/vsphere/models/compute/server_tests.rb
fog-1.24.0 tests/vsphere/models/compute/server_tests.rb
ns-fog-1.22.11 tests/vsphere/models/compute/server_tests.rb
ns-fog-1.22.10 tests/vsphere/models/compute/server_tests.rb
ns-fog-1.22.9 tests/vsphere/models/compute/server_tests.rb
ns-fog-1.22.8 tests/vsphere/models/compute/server_tests.rb