2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
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-09-21 17:22:40 +00:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let!(:mapping) { create(:mapping, user: user) }
|
2016-01-26 10:42:24 +00:00
|
|
|
let(:valid_attributes) { mapping.attributes.except('id') }
|
2016-09-21 17:22:40 +00:00
|
|
|
let(:invalid_attributes) { { id: mapping.id } }
|
2016-01-26 10:14:32 +00:00
|
|
|
before :each do
|
2016-09-21 17:22:40 +00:00
|
|
|
sign_in user
|
2015-10-12 03:37:44 +00:00
|
|
|
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-09-21 17:22:40 +00:00
|
|
|
post :create, params: {
|
|
|
|
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-09-21 17:22:40 +00:00
|
|
|
post :create, params: {
|
|
|
|
mapping: valid_attributes
|
|
|
|
}
|
|
|
|
expect(comparable(Mapping.last)).to eq comparable(mapping)
|
2015-10-12 03:37:44 +00:00
|
|
|
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-09-21 17:22:40 +00:00
|
|
|
post :create, params: {
|
|
|
|
mapping: invalid_attributes
|
|
|
|
}
|
|
|
|
# for some reason, the first mapping is still persisted
|
|
|
|
# TODO: fixme??
|
|
|
|
expect(Mapping.count).to eq 1
|
2015-10-12 03:37:44 +00:00
|
|
|
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
|
2016-09-21 17:22:40 +00:00
|
|
|
put :update, params: {
|
|
|
|
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
|
2016-09-21 17:22:40 +00:00
|
|
|
put :update, params: {
|
|
|
|
id: mapping.to_param, mapping: valid_attributes
|
|
|
|
}
|
|
|
|
expect(Mapping.last).to eq mapping
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
context 'with invalid params' do
|
|
|
|
it 'assigns the mapping as @mapping' do
|
2016-09-21 17:22:40 +00:00
|
|
|
put :update, params: {
|
|
|
|
id: mapping.to_param, mapping: invalid_attributes
|
|
|
|
}
|
|
|
|
expect(Mapping.last).to eq mapping
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'DELETE #destroy' do
|
|
|
|
it 'destroys the requested mapping' do
|
|
|
|
expect do
|
2016-09-21 17:22:40 +00:00
|
|
|
delete :destroy, params: {
|
|
|
|
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
|