require 'rails_helper' require 'sunspot/rails/spec_helper' describe SubjectTypesController do fixtures :all disconnect_sunspot def valid_attributes FactoryBot.attributes_for(:subject_type) end describe 'GET index' do before(:each) do FactoryBot.create(:subject_type) end describe 'When logged in as Administrator' do login_admin it 'assigns all subject_types as @subject_types' do get :index expect(assigns(:subject_types)).to eq(SubjectType.order(:position)) end end describe 'When logged in as Librarian' do login_librarian it 'assigns all subject_types as @subject_types' do get :index expect(assigns(:subject_types)).to eq(SubjectType.order(:position)) end end describe 'When logged in as User' do login_user it 'assigns all subject_types as @subject_types' do get :index expect(assigns(:subject_types)).to be_nil response.should be_forbidden end end describe 'When not logged in' do it 'assigns all subject_types as @subject_types' do get :index expect(assigns(:subject_types)).to be_nil response.should redirect_to(new_user_session_url) end end end describe 'GET show' do describe 'When logged in as Administrator' do login_admin it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :show, params: { id: subject_type.id } expect(assigns(:subject_type)).to eq(subject_type) end end describe 'When logged in as Librarian' do login_librarian it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :show, params: { id: subject_type.id } expect(assigns(:subject_type)).to eq(subject_type) end end describe 'When logged in as User' do login_user it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :show, params: { id: subject_type.id } expect(assigns(:subject_type)).to eq(subject_type) end end describe 'When not logged in' do it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :show, params: { id: subject_type.id } expect(assigns(:subject_type)).to eq(subject_type) end end end describe 'GET new' do describe 'When logged in as Administrator' do login_admin it 'assigns the requested subject_type as @subject_type' do get :new expect(assigns(:subject_type)).not_to be_valid response.should be_success end end describe 'When logged in as Librarian' do login_librarian it 'should not assign the requested subject_type as @subject_type' do get :new expect(assigns(:subject_type)).to be_nil response.should be_forbidden end end describe 'When logged in as User' do login_user it 'should not assign the requested subject_type as @subject_type' do get :new expect(assigns(:subject_type)).to be_nil response.should be_forbidden end end describe 'When not logged in' do it 'should not assign the requested subject_type as @subject_type' do get :new expect(assigns(:subject_type)).to 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 subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :edit, params: { id: subject_type.id } expect(assigns(:subject_type)).to eq(subject_type) end end describe 'When logged in as Librarian' do login_librarian it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :edit, params: { id: subject_type.id } response.should be_forbidden end end describe 'When logged in as User' do login_user it 'assigns the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :edit, params: { id: subject_type.id } response.should be_forbidden end end describe 'When not logged in' do it 'should not assign the requested subject_type as @subject_type' do subject_type = FactoryBot.create(:subject_type) get :edit, params: { id: subject_type.id } response.should redirect_to(new_user_session_url) end end end describe 'POST create' do before(:each) do @attrs = valid_attributes @invalid_attrs = { name: '' } end describe 'When logged in as Administrator' do login_admin describe 'with valid params' do it 'assigns a newly created subject_type as @subject_type' do post :create, params: { subject_type: @attrs } expect(assigns(:subject_type)).to be_valid end it 'redirects to the created agent' do post :create, params: { subject_type: @attrs } response.should redirect_to(assigns(:subject_type)) end end describe 'with invalid params' do it 'assigns a newly created but unsaved subject_type as @subject_type' do post :create, params: { subject_type: @invalid_attrs } expect(assigns(:subject_type)).not_to be_valid end it 'should be successful' do post :create, params: { subject_type: @invalid_attrs } response.should be_success end end end describe 'When logged in as Librarian' do login_librarian describe 'with valid params' do it 'assigns a newly created subject_type as @subject_type' do post :create, params: { subject_type: @attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @attrs } response.should be_forbidden end end describe 'with invalid params' do it 'assigns a newly created but unsaved subject_type as @subject_type' do post :create, params: { subject_type: @invalid_attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @invalid_attrs } response.should be_forbidden end end end describe 'When logged in as User' do login_user describe 'with valid params' do it 'assigns a newly created subject_type as @subject_type' do post :create, params: { subject_type: @attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @attrs } response.should be_forbidden end end describe 'with invalid params' do it 'assigns a newly created but unsaved subject_type as @subject_type' do post :create, params: { subject_type: @invalid_attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @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 subject_type as @subject_type' do post :create, params: { subject_type: @attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @attrs } response.should redirect_to(new_user_session_url) end end describe 'with invalid params' do it 'assigns a newly created but unsaved subject_type as @subject_type' do post :create, params: { subject_type: @invalid_attrs } expect(assigns(:subject_type)).to be_nil end it 'should be forbidden' do post :create, params: { subject_type: @invalid_attrs } response.should redirect_to(new_user_session_url) end end end end describe 'PUT update' do before(:each) do @subject_type = FactoryBot.create(:subject_type) @attrs = valid_attributes @invalid_attrs = { name: '' } end describe 'When logged in as Administrator' do login_admin describe 'with valid params' do it 'updates the requested subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } end it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } expect(assigns(:subject_type)).to eq(@subject_type) end it 'moves its position when specified' do put :update, params: { id: @subject_type.id, subject_type: @attrs, move: 'lower' } response.should redirect_to(subject_types_url) end end describe 'with invalid params' do it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @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 subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } end it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } expect(assigns(:subject_type)).to eq(@subject_type) response.should be_forbidden end end describe 'with invalid params' do it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @invalid_attrs } response.should be_forbidden end end end describe 'When logged in as User' do login_user describe 'with valid params' do it 'updates the requested subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } end it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } expect(assigns(:subject_type)).to eq(@subject_type) response.should be_forbidden end end describe 'with invalid params' do it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @invalid_attrs } response.should be_forbidden end end end describe 'When not logged in' do describe 'with valid params' do it 'updates the requested subject_type' do put :update, params: { id: @subject_type.id, subject_type: @attrs } end it 'should be forbidden' do put :update, params: { id: @subject_type.id, subject_type: @attrs } response.should redirect_to(new_user_session_url) end end describe 'with invalid params' do it 'assigns the requested subject_type as @subject_type' do put :update, params: { id: @subject_type.id, subject_type: @invalid_attrs } response.should redirect_to(new_user_session_url) end end end end describe 'DELETE destroy' do before(:each) do @subject_type = FactoryBot.create(:subject_type) end describe 'When logged in as Administrator' do login_admin it 'destroys the requested subject_type' do delete :destroy, params: { id: @subject_type.id } end it 'redirects to the subject_types list' do delete :destroy, params: { id: @subject_type.id } response.should redirect_to(subject_types_url) end end describe 'When logged in as Librarian' do login_librarian it 'destroys the requested subject_type' do delete :destroy, params: { id: @subject_type.id } end it 'should be forbidden' do delete :destroy, params: { id: @subject_type.id } response.should be_forbidden end end describe 'When logged in as User' do login_user it 'destroys the requested subject_type' do delete :destroy, params: { id: @subject_type.id } end it 'should be forbidden' do delete :destroy, params: { id: @subject_type.id } response.should be_forbidden end end describe 'When not logged in' do it 'destroys the requested subject_type' do delete :destroy, params: { id: @subject_type.id } end it 'should be forbidden' do delete :destroy, params: { id: @subject_type.id } response.should redirect_to(new_user_session_url) end end end end