spec/fog_interface_spec.rb in vcloud-walker-3.2.2 vs spec/fog_interface_spec.rb in vcloud-walker-3.2.3

- old
+ new

@@ -6,88 +6,83 @@ let(:org) { double(:fog_org, :id => 'org-123') } let(:organizations) { double(:orgs) } let(:session) { double(:fog_session, :org_name => 'org-123', :organizations => organizations) } before(:each) do - Vcloud::Walker::VcloudSession.should_receive(:instance).with(any_args()).at_least(:once).and_return(session) - organizations.should_receive(:get_by_name).and_return(org) + expect(Vcloud::Walker::VcloudSession).to receive(:instance).with(any_args()).at_least(:once).and_return(session) + expect(organizations).to receive(:get_by_name).and_return(org) end it "should get catalogs for given org id" do mock_catalogs = [double(:catalog1), double(:catalog2)] - org.should_receive(:catalogs).and_return(double(:catalogs, :all => mock_catalogs)) - + expect(org).to receive(:catalogs).and_return(double(:catalogs, :all => mock_catalogs)) catalogs = Vcloud::Walker::FogInterface.get_catalogs - - catalogs.count.should == 2 - catalogs.should == mock_catalogs - + expect(catalogs.count).to eq(2) + expect(catalogs).to eq(mock_catalogs) end it "should get networks for given org id" do mock_networks = [double(:network1), double(:network2)] - org.should_receive(:networks).and_return(double(:networks, :all => mock_networks)) - + expect(org).to receive(:networks).and_return(double(:networks, :all => mock_networks)) networks = Vcloud::Walker::FogInterface.get_networks - networks.count.should == 2 - networks.should == mock_networks + expect(networks.count).to eq(2) + expect(networks).to eq(mock_networks) end it "should get vdcs for given org id" do mock_vdcs = [double(:vdc1), double(:vdc2), double(:vdc3)] - org.should_receive(:vdcs).and_return(double(:vdcs, :all => mock_vdcs)) - + expect(org).to receive(:vdcs).and_return(double(:vdcs, :all => mock_vdcs)) vdcs = Vcloud::Walker::FogInterface.get_vdcs - vdcs.count.should == 3 - vdcs.should == mock_vdcs + expect(vdcs.count).to eq(3) + expect(vdcs).to eq(mock_vdcs) end it "should get edge gateways for given org" do mock_vdc1 = double(:vdc, :id => 1) get_edge_gateway_result = double('Excon::Response', :body => {:EdgeGatewayRecord => {:href => '/sausage'}}) - org.should_receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1 ])) - session.should_receive(:get_org_vdc_gateways).with(1).and_return(get_edge_gateway_result) - session.should_receive(:get_edge_gateway).with('sausage').and_return(double(:eg, :body => :eg1)) + expect(org).to receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1 ])) + expect(session).to receive(:get_org_vdc_gateways).with(1).and_return(get_edge_gateway_result) + expect(session).to receive(:get_edge_gateway).with('sausage').and_return(double(:eg, :body => :eg1)) edge_gateways = Vcloud::Walker::FogInterface.get_edge_gateways - edge_gateways.count.should == 1 - edge_gateways.should == [:eg1] + expect(edge_gateways.count).to eq(1) + expect(edge_gateways).to eq([:eg1]) end it "should get edge gateways for given org with complex set up of 2 vdcs and 3 edge gateways" do mock_vdc1 = double(:vdc, :id => 1) get_edge_gateway_vdc_1_result = double('Excon::Response', :body => {:EdgeGatewayRecord => {:href => '/sausage'}}) mock_vdc2 = double(:vdc, :id => 2) get_edge_gateway_vdc_2_result = double('Excon::Response', :body => {:EdgeGatewayRecord => [{:href => '/beans'}, {:href => '/hashbrown'}]}) - org.should_receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1, mock_vdc2 ])) + expect(org).to receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1, mock_vdc2 ])) - session.should_receive(:get_org_vdc_gateways).with(1).and_return(get_edge_gateway_vdc_1_result) - session.should_receive(:get_org_vdc_gateways).with(2).and_return(get_edge_gateway_vdc_2_result) - session.should_receive(:get_edge_gateway).with('sausage').and_return(double(:eg, :body => :eg1)) - session.should_receive(:get_edge_gateway).with('beans').and_return(double(:eg, :body => :eg2)) - session.should_receive(:get_edge_gateway).with('hashbrown').and_return(double(:eg, :body => :eg3)) + expect(session).to receive(:get_org_vdc_gateways).with(1).and_return(get_edge_gateway_vdc_1_result) + expect(session).to receive(:get_org_vdc_gateways).with(2).and_return(get_edge_gateway_vdc_2_result) + expect(session).to receive(:get_edge_gateway).with('sausage').and_return(double(:eg, :body => :eg1)) + expect(session).to receive(:get_edge_gateway).with('beans').and_return(double(:eg, :body => :eg2)) + expect(session).to receive(:get_edge_gateway).with('hashbrown').and_return(double(:eg, :body => :eg3)) edge_gateways = Vcloud::Walker::FogInterface.get_edge_gateways - edge_gateways.count.should == 3 - edge_gateways.should == [:eg1, :eg2, :eg3] + expect(edge_gateways.count).to eq(3) + expect(edge_gateways).to eq([:eg1, :eg2, :eg3]) end it "get_edge_gateways should be happy if there are no edge gateways" do mock_vdc1 = double(:vdc, :id => 1) # no edge gateways means no entries to find in the results, just some other noise vdc_1_search_result = double('Excon::Response', :body => {:Link => {:href => 's'}}) - org.should_receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1 ])) - session.should_receive(:get_org_vdc_gateways).with(1).and_return(vdc_1_search_result) + expect(org).to receive(:vdcs).and_return(double(:vdcs, :all => [ mock_vdc1 ])) + expect(session).to receive(:get_org_vdc_gateways).with(1).and_return(vdc_1_search_result) edge_gateways = Vcloud::Walker::FogInterface.get_edge_gateways - edge_gateways.count.should == 0 + expect(edge_gateways.count).to eq(0) end end -end \ No newline at end of file +end