Sha256: 035b07c75b341a31f04ca4a2c5926a17dc22bd600d058dfec4a3c35551a8d441
Contents?: true
Size: 1.6 KB
Versions: 9
Compression:
Stored size: 1.6 KB
Contents
Shindo.tests('Fog::Compute[:opennebula] | flavor model', ['opennebula']) do flavors = Fog::Compute[:opennebula].flavors flavor = flavors.get_by_name('fogtest').last tests('The flavor model should') do tests('have the action') do test('reload') { flavor.respond_to? 'reload' } end tests('have attributes') do model_attribute_hash = flavor.attributes tests("The flavor model should respond to") do [:name, :id, :to_label, :to_s, :get_cpu, :get_vcpu, :get_memory, :get_raw, :get_disk, :get_os, :get_graphics, :get_nic, :get_sched_ds_requirements, :get_sched_ds_rank, :get_sched_requirements, :get_sched_rank, :get_context, :get_user_variables].each do |attribute| test("#{attribute}") { flavor.respond_to? attribute } end end tests("The attributes hash should have key") do [:name, :id, :content, :cpu, :vcpu, :memory, :os, :graphics, :context, :user_variables ].each do |attribute| test("#{attribute}") { model_attribute_hash.has_key? attribute } end end end test('be a kind of Fog::Compute::OpenNebula::Flavor') { flavor.kind_of? Fog::Compute::OpenNebula::Flavor } test('have a nic in network fogtest') { flavor.nic[0].vnet.name == "fogtest" } flavor.vcpu = 666 flavor.memory = 666 test('have a 666 MB memory') { flavor.get_memory == "MEMORY=666\n" } test('have a 666 CPUs') { flavor.get_vcpu == "VCPU=666\n" } test('raw parsed properly') { flavor.get_raw == %|RAW=["DATA"="<cpu match='exact'><model fallback='allow'>core2duo</model></cpu>", "TYPE"="kvm"]\n| } end end
Version data entries
9 entries across 7 versions & 2 rubygems