require 'rails_helper' require 'sunspot/rails/spec_helper' describe AgentMergeListsController do fixtures :all disconnect_sunspot describe 'GET index' do describe 'When logged in as Administrator' do login_admin it 'assigns all agent_merge_lists as @agent_merge_lists' do get :index assigns(:agent_merge_lists).should eq(AgentMergeList.page(1)) end end describe 'When logged in as Librarian' do login_librarian it 'assigns all agent_merge_lists as @agent_merge_lists' do get :index assigns(:agent_merge_lists).should eq(AgentMergeList.page(1)) end end describe 'When logged in as User' do login_user it 'assigns empty as @agent_merge_lists' do get :index assigns(:agent_merge_lists).should be_nil end end describe 'When not logged in' do it 'assigns empty as @agent_merge_lists' do get :index assigns(:agent_merge_lists).should be_nil end end end describe 'GET show' do before(:each) do @agent_merge_list = FactoryBot.create(:agent_merge_list) end describe 'When logged in as Administrator' do login_admin it 'assigns the requested agent_merge_list as @agent_merge_list' do get :show, id: @agent_merge_list.id assigns(:agent_merge_list).should eq(@agent_merge_list) response.should be_success end end describe 'When logged in as Librarian' do login_librarian it 'assigns the requested agent_merge_list as @agent_merge_list' do get :show, id: @agent_merge_list.id assigns(:agent_merge_list).should eq(@agent_merge_list) response.should be_success end end describe 'When logged in as User' do login_user it 'assigns the requested agent_merge_list as @agent_merge_list' do get :show, id: @agent_merge_list.id assigns(:agent_merge_list).should eq(@agent_merge_list) response.should be_forbidden end end describe 'When not logged in' do it 'assigns the requested agent_merge_list as @agent_merge_list' do get :show, id: @agent_merge_list.id assigns(:agent_merge_list).should eq(@agent_merge_list) response.should redirect_to new_user_session_url end end end describe 'GET new' do describe 'When logged in as Administrator' do login_admin it 'assigns the requested agent_merge_list as @agent_merge_list' do get :new assigns(:agent_merge_list).should_not be_valid end end describe 'When logged in as Librarian' do login_librarian it 'assigns the requested agent_merge_list as @agent_merge_list' do get :new assigns(:agent_merge_list).should_not be_valid end end describe 'When logged in as User' do login_user it 'should not assign the requested agent_merge_list as @agent_merge_list' do get :new assigns(:agent_merge_list).should be_nil response.should be_forbidden end end describe 'When not logged in' do it 'should not assign the requested agent_merge_list as @agent_merge_list' do get :new assigns(:agent_merge_list).should be_nil response.should redirect_to(new_user_session_url) end end end describe 'GET edit' do describe 'When logged in as Administrator' do login_admin it 'assigns the requested agent_merge_list as @agent_merge_list' do agent_merge_list = FactoryBot.create(:agent_merge_list) get :edit, id: agent_merge_list.id assigns(:agent_merge_list).should eq(agent_merge_list) end end describe 'When logged in as Librarian' do login_librarian it 'assigns the requested agent_merge_list as @agent_merge_list' do agent_merge_list = FactoryBot.create(:agent_merge_list) get :edit, id: agent_merge_list.id assigns(:agent_merge_list).should eq(agent_merge_list) end end describe 'When logged in as User' do login_user it 'assigns the requested agent_merge_list as @agent_merge_list' do agent_merge_list = FactoryBot.create(:agent_merge_list) get :edit, id: agent_merge_list.id response.should be_forbidden end end describe 'When not logged in' do it 'should not assign the requested agent_merge_list as @agent_merge_list' do agent_merge_list = FactoryBot.create(:agent_merge_list) get :edit, id: agent_merge_list.id response.should redirect_to(new_user_session_url) end end end describe 'POST create' do before(:each) do @attrs = FactoryBot.attributes_for(:agent_merge_list) @invalid_attrs = { title: '' } end describe 'When logged in as Administrator' do login_admin describe 'with valid params' do it 'assigns a newly created agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @attrs assigns(:agent_merge_list).should be_valid end it 'redirects to the created agent_merge_list' do post :create, agent_merge_list: @attrs response.should redirect_to(agent_merge_list_url(assigns(:agent_merge_list))) end end describe 'with invalid params' do it 'assigns a newly created but unsaved agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @invalid_attrs assigns(:agent_merge_list).should_not be_valid end it "re-renders the 'new' template" do post :create, agent_merge_list: @invalid_attrs response.should render_template('new') end end end describe 'When logged in as Librarian' do login_librarian describe 'with valid params' do it 'assigns a newly created agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @attrs assigns(:agent_merge_list).should be_valid end it 'redirects to the created agent_merge_list' do post :create, agent_merge_list: @attrs response.should redirect_to(agent_merge_list_url(assigns(:agent_merge_list))) end end describe 'with invalid params' do it 'assigns a newly created but unsaved agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @invalid_attrs assigns(:agent_merge_list).should_not be_valid end it "re-renders the 'new' template" do post :create, agent_merge_list: @invalid_attrs response.should render_template('new') end end end describe 'When logged in as User' do login_user describe 'with valid params' do it 'assigns a newly created agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @attrs assigns(:agent_merge_list).should be_nil end it 'should be forbidden' do post :create, agent_merge_list: @attrs response.should be_forbidden end end describe 'with invalid params' do it 'assigns a newly created but unsaved agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @invalid_attrs assigns(:agent_merge_list).should be_nil end it 'should be forbidden' do post :create, agent_merge_list: @invalid_attrs response.should be_forbidden end end end describe 'When not logged in' do describe 'with valid params' do it 'assigns a newly created agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @attrs assigns(:agent_merge_list).should be_nil end it 'should be forbidden' do post :create, agent_merge_list: @attrs response.should redirect_to(new_user_session_url) end end describe 'with invalid params' do it 'assigns a newly created but unsaved agent_merge_list as @agent_merge_list' do post :create, agent_merge_list: @invalid_attrs assigns(:agent_merge_list).should be_nil end it 'should be forbidden' do post :create, agent_merge_list: @invalid_attrs response.should redirect_to(new_user_session_url) end end end end describe 'PUT update' do before(:each) do @agent_merge_list = FactoryBot.create(:agent_merge_list) @attrs = FactoryBot.attributes_for(:agent_merge_list) @invalid_attrs = { title: '' } end describe 'When logged in as Administrator' do login_admin describe 'with valid params' do it 'updates the requested agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs end it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs assigns(:agent_merge_list).should eq(@agent_merge_list) response.should redirect_to(@agent_merge_list) end end describe 'with invalid params' do it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs end it "re-renders the 'edit' template" do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs response.should render_template('edit') end end end describe 'When logged in as Librarian' do login_librarian describe 'with valid params' do it 'updates the requested agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs end it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs assigns(:agent_merge_list).should eq(@agent_merge_list) response.should redirect_to(@agent_merge_list) end end describe 'with invalid params' do it 'assigns the agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs assigns(:agent_merge_list).should_not be_valid end it "re-renders the 'edit' template" do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs response.should render_template('edit') end end it 'should not merge agents without selected_agent_id' do put :update, id: agent_merge_lists(:agent_merge_list_00001).id, mode: 'merge' flash[:notice].should eq I18n.t('merge_list.specify_id', model: I18n.t('activerecord.models.agent')) response.should redirect_to agent_merge_list_url(assigns(:agent_merge_list)) end it 'should merge agents with selected_agent_idand merge_mode' do put :update, id: agent_merge_lists(:agent_merge_list_00001).id, selected_agent_id: 3, mode: 'merge' flash[:notice].should eq I18n.t('merge_list.successfully_merged', model: I18n.t('activerecord.models.agent')) response.should redirect_to agent_merge_list_url(assigns(:agent_merge_list)) end end describe 'When logged in as User' do login_user describe 'with valid params' do it 'updates the requested agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs end it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs assigns(:agent_merge_list).should eq(@agent_merge_list) response.should be_forbidden end end describe 'with invalid params' do it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs response.should be_forbidden end end end describe 'When not logged in' do describe 'with valid params' do it 'updates the requested agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs end it 'should be forbidden' do put :update, id: @agent_merge_list.id, agent_merge_list: @attrs response.should redirect_to(new_user_session_url) end end describe 'with invalid params' do it 'assigns the requested agent_merge_list as @agent_merge_list' do put :update, id: @agent_merge_list.id, agent_merge_list: @invalid_attrs response.should redirect_to(new_user_session_url) end end end end describe 'DELETE destroy' do before(:each) do @agent_merge_list = FactoryBot.create(:agent_merge_list) end describe 'When logged in as Administrator' do login_admin it 'destroys the requested agent_merge_list' do delete :destroy, id: @agent_merge_list.id end it 'redirects to the agent_merge_lists list' do delete :destroy, id: @agent_merge_list.id response.should redirect_to(agent_merge_lists_url) end end describe 'When logged in as Librarian' do login_librarian it 'destroys the requested agent_merge_list' do delete :destroy, id: @agent_merge_list.id end it 'redirects to the agent_merge_lists list' do delete :destroy, id: @agent_merge_list.id response.should redirect_to(agent_merge_lists_url) end end describe 'When logged in as User' do login_user it 'destroys the requested agent_merge_list' do delete :destroy, id: @agent_merge_list.id end it 'should be forbidden' do delete :destroy, id: @agent_merge_list.id response.should be_forbidden end end describe 'When not logged in' do it 'destroys the requested agent_merge_list' do delete :destroy, id: @agent_merge_list.id end it 'should be forbidden' do delete :destroy, id: @agent_merge_list.id response.should redirect_to(new_user_session_url) end end end end