2015-10-12 03:37:44 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
RSpec.describe MappingsController, type: :controller do
|
2016-01-26 10:42:24 +00:00
|
|
|
let!(:mapping) { create(:mapping) }
|
|
|
|
let(:valid_attributes) { mapping.attributes.except('id') }
|
|
|
|
let(:invalid_attributes) { { xloc: 0 } }
|
2016-01-26 10:14:32 +00:00
|
|
|
before :each do
|
|
|
|
sign_in
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'assigns the requested mapping as @mapping' do
|
2016-01-26 10:14:32 +00:00
|
|
|
get :show, { id: mapping.to_param }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:mapping)).to eq(mapping)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'POST #create' do
|
|
|
|
context 'with valid params' do
|
|
|
|
it 'creates a new Mapping' do
|
|
|
|
expect do
|
2016-01-26 10:14:32 +00:00
|
|
|
post :create, { mapping: valid_attributes }
|
2015-12-16 14:19:58 +00:00
|
|
|
end.to change(Mapping, :count).by(1)
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
it 'assigns a newly created mapping as @mapping' do
|
2016-01-26 10:14:32 +00:00
|
|
|
post :create, { mapping: valid_attributes }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:mapping)).to be_a(Mapping)
|
|
|
|
expect(assigns(:mapping)).to be_persisted
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
context 'with invalid params' do
|
|
|
|
it 'assigns a newly created but unsaved mapping as @mapping' do
|
2016-01-26 10:14:32 +00:00
|
|
|
post :create, { mapping: invalid_attributes }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:mapping)).to be_a_new(Mapping)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'PUT #update' do
|
|
|
|
context 'with valid params' do
|
2016-01-26 10:42:24 +00:00
|
|
|
let(:new_attributes) { build(:mapping_random_location).attributes.except('id') }
|
2015-10-12 03:37:44 +00:00
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
it 'updates the requested mapping' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-01-26 10:14:32 +00:00
|
|
|
{ id: mapping.to_param, mapping: new_attributes }
|
2015-10-12 03:37:44 +00:00
|
|
|
mapping.reload
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
it 'assigns the requested mapping as @mapping' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-01-26 10:14:32 +00:00
|
|
|
{ id: mapping.to_param, mapping: valid_attributes }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:mapping)).to eq(mapping)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
context 'with invalid params' do
|
|
|
|
it 'assigns the mapping as @mapping' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-01-26 10:14:32 +00:00
|
|
|
{ id: mapping.to_param, mapping: invalid_attributes }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:mapping)).to eq(mapping)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'DELETE #destroy' do
|
|
|
|
it 'destroys the requested mapping' do
|
|
|
|
expect do
|
2016-01-26 10:14:32 +00:00
|
|
|
delete :destroy, { id: mapping.to_param }
|
2015-12-16 14:19:58 +00:00
|
|
|
end.to change(Mapping, :count).by(-1)
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|