Project

General

Profile

« Previous | Next » 

Revision 4269abbd

Added by Tomáš Strachota almost 9 years ago

Fixes #10248 - cloning volume information for virtual machines

View differences:

test/unit/compute_resources/ec2_test.rb
require 'test_helper'
require 'unit/compute_resources/compute_resource_test_helpers'
class EC2Test < ActiveSupport::TestCase
include ComputeResourceTestHelpers
test "#associated_host matches any NIC" do
host = FactoryGirl.create(:host, :ip => '10.0.0.154')
cr = FactoryGirl.build(:ec2_cr)
iface = mock('iface1', :public_ip_address => '10.0.0.154', :private_ip_address => "10.1.1.1")
assert_equal host, as_admin { cr.associated_host(iface) }
end
end
describe "find_vm_by_uuid" do
it "raises RecordNotFound when the vm does not exist" do
cr = mock_cr_servers(Foreman::Model::EC2.new, empty_servers)
assert_find_by_uuid_raises(ActiveRecord::RecordNotFound, cr)
end
it "raises RecordNotFound when the compute raises rackspace error" do
cr = mock_cr_servers(Foreman::Model::EC2.new, servers_raising_exception(Fog::Compute::AWS::Error))
assert_find_by_uuid_raises(ActiveRecord::RecordNotFound, cr)
end
end
end

Also available in: Unified diff