require 'rails_helper' describe AcceptsController do fixtures :all def mock_user(stubs = {}) (@mock_user ||= mock_model(Accept).as_null_object).tap do |user| user.stub(stubs) unless stubs.empty? end end describe 'GET index' do describe 'When logged in as Administrator' do login_fixture_admin it 'assigns all accepts as @accepts' do get :index assigns(:accepts).should_not be_nil response.should be_successful end describe 'When basket_id is specified' do it 'assigns all accepts as @accepts' do get :index, params: { basket_id: 10 } assigns(:accepts).should eq baskets(:basket_00010).accepts.order('accepts.created_at DESC').page(1) response.should be_successful end end end describe 'When logged in as Librarian' do login_fixture_librarian it 'assigns all accepts as @accepts' do get :index assigns(:accepts).should_not be_nil response.should be_successful end describe 'When basket_id is specified' do it 'assigns all accepts as @accepts' do get :index, params: { basket_id: 9 } assigns(:accepts).should eq baskets(:basket_00009).accepts.order('accepts.created_at DESC').page(1) response.should be_successful end end end describe 'When logged in as User' do login_fixture_user it 'should not assign all accepts as @accepts' do get :index assigns(:accepts).should be_nil response.should be_forbidden end end end describe 'GET show' do describe 'When logged in as Administrator' do login_fixture_admin it 'assigns the requested accept as @accept' do accept = FactoryBot.create(:accept) get :show, params: { id: accept.id } assigns(:accept).should eq(accept) end end describe 'When logged in as Librarian' do login_fixture_librarian it 'assigns the requested accept as @accept' do accept = FactoryBot.create(:accept) get :show, params: { id: accept.id } assigns(:accept).should eq(accept) end end describe 'When logged in as User' do login_fixture_user it 'assigns the requested accept as @accept' do accept = FactoryBot.create(:accept) get :show, params: { id: accept.id } assigns(:accept).should eq(accept) response.should be_forbidden end end describe 'When not logged in' do it 'assigns the requested accept as @accept' do accept = FactoryBot.create(:accept) get :show, params: { id: accept.id } assigns(:accept).should eq(accept) response.should redirect_to new_user_session_url end end end describe 'GET new' do describe 'When logged in as Administrator' do login_fixture_admin it 'assigns the requested accept as @accept' do get :new assigns(:accept).should_not be_valid end end describe 'When logged in as Librarian' do login_fixture_librarian it 'assigns the requested accept as @accept' do get :new assigns(:accept).should_not be_valid end end describe 'When logged in as User' do login_fixture_user it 'should not assign the requested accept as @accept' do get :new assigns(:accept).should be_nil response.should be_forbidden end end describe 'When not logged in' do it 'should not assign the requested accept as @accept' do get :new assigns(:accept).should be_nil response.should redirect_to(new_user_session_url) end end end describe 'POST create' do before(:each) do @attrs = { item_identifier: '00003' } @invalid_attrs = { item_identifier: 'invalid' } end describe 'When logged in as Administrator' do login_fixture_admin describe 'with valid params' do it 'assigns a newly created accept as @accept' do post :create, params: { accept: @attrs } assigns(:accept).should be_nil end it 'should not create a new accept without basket_id' do post :create, params: { accept: @attrs } response.should be_forbidden end end describe 'with invalid params' do it 'assigns a newly created but unsaved accept as @accept' do post :create, params: { accept: @invalid_attrs } assigns(:accept).should be_nil end it 'should be forbidden' do post :create, params: { accept: @invalid_attrs } response.should be_forbidden end end it 'should not create accept without item_id' do post :create, params: { accept: { item_identifier: nil }, basket_id: 9 } assigns(:accept).should_not be_valid response.should be_successful end end describe 'When logged in as Librarian' do login_fixture_librarian describe 'with valid params' do it 'assigns a newly created accept as @accept' do post :create, params: { accept: @attrs } assigns(:accept).should be_nil end it 'should not create a new accept without basket_id' do post :create, params: { accept: @attrs } response.should be_forbidden end end end describe 'When logged in as User' do login_fixture_user describe 'with valid params' do it 'assigns a newly created accept as @accept' do post :create, params: { accept: @attrs } assigns(:accept).should be_nil end it 'should be forbidden' do post :create, params: { accept: @attrs } response.should be_forbidden end end end describe 'When not logged in' do before(:each) do @attrs = { item_identifier: '00003' } @invalid_attrs = { item_identifier: 'invalid' } end describe 'with valid params' do it 'assigns a newly created accept as @accept' do post :create, params: { accept: @attrs } end it 'should redirect to new session url' do post :create, params: { accept: @attrs } response.should redirect_to new_user_session_url end end end end describe 'DELETE destroy' do before(:each) do @accept = FactoryBot.create(:accept) end describe 'When logged in as Administrator' do login_fixture_admin it 'destroys the requested accept' do delete :destroy, params: { id: @accept.id } end it 'redirects to the accepts list' do delete :destroy, params: { id: @accept.id } response.should redirect_to(accepts_url) end end describe 'When logged in as Librarian' do login_fixture_librarian it 'destroys the requested accept' do delete :destroy, params: { id: @accept.id } end it 'redirects to the accepts list' do delete :destroy, params: { id: @accept.id } response.should redirect_to(accepts_url) end end describe 'When logged in as User' do login_fixture_user it 'destroys the requested accept' do delete :destroy, params: { id: @accept.id } end it 'should be forbidden' do delete :destroy, params: { id: @accept.id } response.should be_forbidden end end describe 'When not logged in' do it 'destroys the requested accept' do delete :destroy, params: { id: @accept.id } end it 'should be forbidden' do delete :destroy, params: { id: @accept.id } response.should redirect_to(new_user_session_url) end end end end