require 'rspec' require 'tms_bridge' require File.expand_path(File.dirname(__FILE__) + '/mocks') describe TmsBridge::ControllerSupport::Security do include IronCacher class SecuritiesController@cache_key, 'tms_id'=>@tms_id} controller.should be_valid_bridge_request end it "should be false if the hash does not match" do controller.json = {'cache_key'=>Digest::SHA2.hexdigest("---#{ENV['CC_BRIDGE_SALT']}--#{@tms_id}--does_not_match--#{IronCacher::CACHE_NAME}--"), 'tms_id'=>@tms_id} controller.should_not be_valid_bridge_request end it "should be false if the cache value is not found" do iron_cache(IronCacher::CACHE_NAME).delete(@cache_key) controller.should_not be_valid_bridge_request end it "should be false if json is null" do iron_cache(IronCacher::CACHE_NAME).delete(@cache_key) controller.json = nil controller.should_not be_valid_bridge_request end it "should be false if no cache_key was passed" do iron_cache(IronCacher::CACHE_NAME).delete(@cache_key) controller.json = {'tms_id'=>@tms_id} controller.should_not be_valid_bridge_request end end describe "parse_iron_mq_json" do def controller @controller ||= SecuritiesController.new end it "should set the json attribute and return nil" do controller.request.raw_post=({tms_id: 17}.to_json) controller.send(:parse_iron_mq_json).should be_nil controller.json.class.should eq(Hash) end it "should return false and call head with :ok, if tms_id is not present" do controller.request.raw_post= nil controller.should_receive(:head).with(:ok) controller.send(:parse_iron_mq_json).should == false end end end describe TmsBridge::ControllerSupport::Redact do include IronCacher class MockRedactionsController 'MockModel'} controller.bridged_resource_class.should == MockModel end it "should return nil if the json attribute a record_class is not in MockRedactionsController.bridged_resource_names" do controller.json = {'record_class' => 'raise'} controller.bridged_resource_class.should be_nil end end end describe "create" do describe "bridged_resource_class return a class" do before(:each) do controller.json={'record_class'=>'MockModel', 'tms_id'=>MockModel::FOUND} controller.stub(:bridged_resource_class).and_return(MockModel) end it "should call controller#bridged_resource_class" do controller.should_receive(:bridged_resource_class) controller.create end it "should assign to record class" do controller.create controller.record_class.should == MockModel end it "should call MockModel.find_by_tms_id" do MockModel.should_receive(:find_by_tms_id).with(MockModel::FOUND) controller.create end it "should assign to record if found" do controller.create controller.record.should be_is_a(FoundMockPublishing) end it "should call destroy on the found record" do controller.create controller.record.called_destroy.should == true end it "should call render" do controller.should_receive(:render).with(text: 'success') controller.create end it "should not throw an error if the record is not found" do controller.json={'record_class'=>'MockModel', 'tms_id'=>MockModel::NOT_FOUND} controller.record.should be_nil controller.should_receive(:render).with(text: 'success') controller.create end end end describe "if an invalid record class is passed" do before(:each) do controller.stub(:bridged_resource_class).and_return(nil) end it "should call head :ok and" do controller.should_receive(:head).with(:ok) controller.create controller.record.should be_nil end end end describe TmsBridge::ControllerSupport::Publish do class MockPublishingsController'some value'} @tms_id = MockPublishing::NOT_FOUND @bridge_id = 'somebridgeid' controller.json = {'mock_publishing'=>@attributes, 'tms_id'=>@tms_id, 'bridge_id'=>@bridge_id} end it "should assign to the mock_publishing attribute" do controller.create controller.mock_publishing.should_not be_nil end it "should assign to attributes" do controller.create controller.mock_publishing.attributes.should == @attributes end it "it should call MockPublishing.find_by_tms_id" do MockPublishing.should_receive(:find_by_tms_id).with(@tms_id) controller.create end it "it should call MockPublishing.new if MockPublishing.find_by_tms_id returns nil" do MockPublishing.should_receive(:new) controller.create end it "should not pass attributes to the mock model taht are not supported" do MockPublishing.should_receive(:published_attribute_names){['some_key']} controller.create end it "it should call MockPublishing.new if MockPublishing.find_by_tms_id returns nothing" do controller.json = {'mock_publishing'=>@attributes, 'tms_id'=>MockPublishing::NOT_FOUND} MockPublishing.should_receive(:new) controller.create end it "it should call MockPublishing.new if MockPublishing.find_by_tms_id returns nothing and update_only? == true" do controller.json = {'mock_publishing'=>@attributes, 'tms_id'=>MockPublishing::NOT_FOUND} MockPublishing.should_not_receive(:new) controller.stub(:update_only?){true} controller.create end it "should call save on the mock_publishing model" do controller.create controller.mock_publishing.called_save.should == true end it "should call render " do controller.should_receive(:render).with(text: 'success') controller.create end it "should attempt a lookup of the model with bridge_id if not found by tms_id an supports bridge_id" do MockPublishing.should_receive(:find_by_tms_id).with(@tms_id){nil} column_names = MockPublishing.column_names + ['bridge_id'] MockPublishing.stub(:column_names){column_names} MockPublishing.should_receive(:find_by_bridge_id).with(@bridge_id) controller.create end it "should attempt a lookup of the model with bridge_id if not found by tms_id an supports bridge_id, but bridge_id is blank" do MockPublishing.should_receive(:find_by_tms_id).with(@tms_id){nil} column_names = MockPublishing.column_names + ['bridge_id'] MockPublishing.stub(:column_names){column_names} MockPublishing.should_not_receive(:find_by_bridge_id).with(@bridge_id) controller.json['bridge_id'] = nil controller.create end end end