Sha256: 0a393f6fc663f37732f9a8cd57f07fba2436254c9fc69ea2f9db860587986601

Contents?: true

Size: 1.84 KB

Versions: 13

Compression:

Stored size: 1.84 KB

Contents

Shindo.tests('Fog::Compute[:xenserver] | StorageRepository model', ['xenserver']) do

  storage_repositories = Fog::Compute[:xenserver].storage_repositories
  storage_repository = storage_repositories.first

  tests('The StorageRepository model should') do
    tests('have the action') do
      test('reload') { storage_repository.respond_to? 'reload' }
    end
    tests('have attributes') do
      model_attribute_hash = storage_repository.attributes
      attributes = [ 
        :reference,
        :name,
        :uuid,
        :description,
        :uuid,
        :allowed_operations,
        :current_operations,
        :content_type,
        :other_config,
        :__pbds,
        :shared,
        :type,
        :tags,
        :__vdis,
        :physical_size,
        :physical_utilisation
      ]
      tests("The StorageRepository model should respond to") do
        attributes.each do |attribute|
          test("#{attribute}") { storage_repository.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::XenServer::StorageRepository') { storage_repository.kind_of? Fog::Compute::XenServer::StorageRepository }

  end

  tests("A real StorageRepository should") do
    tests("return a valid list of VDIs") do
      storage_repository.vdis.each do |vdi| 
        test("where #{vdi.uuid} is a Fog::Compute::XenServer::VDI") {
          vdi.is_a? Fog::Compute::XenServer::VDI
        }
      end
    end
    tests("return a valid list of PBDs") do
      storage_repository.pbds.each do |pbd| 
        test("where #{pbd.uuid} is a Fog::Compute::XenServer::PBD") {
          pbd.is_a? Fog::Compute::XenServer::PBD
        }
      end
    end
  end

end

Version data entries

13 entries across 13 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 tests/xenserver/models/compute/storage_repository_tests.rb
fog-nirvanix-1.8.1 tests/xenserver/models/compute/storage_repository_tests.rb
fog-parser-fix-1.6.1 tests/xenserver/models/compute/storage_repository_tests.rb
fog-test-again-1.6.0 tests/xenserver/models/compute/storage_repository_tests.rb
fog-parser-fix-1.6.0 tests/xenserver/models/compute/storage_repository_tests.rb
fog-sgonyea-1.8.1 tests/xenserver/models/compute/storage_repository_tests.rb
fog-1.8.0 tests/xenserver/models/compute/storage_repository_tests.rb
fog-maestrodev-1.7.0.20121114190951 tests/xenserver/models/compute/storage_repository_tests.rb
fog-1.7.0 tests/xenserver/models/compute/storage_repository_tests.rb
fog-1.6.0 tests/xenserver/models/compute/storage_repository_tests.rb
fog-1.5.0 tests/xenserver/models/compute/storage_repository_tests.rb
rackspace-fog-1.4.2 tests/xenserver/models/compute/storage_repository_tests.rb
fog-1.4.0 tests/xenserver/models/compute/storage_repository_tests.rb