2015-10-12 03:37:44 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
RSpec.describe SynapsesController, type: :controller do
|
2016-02-08 03:56:46 +00:00
|
|
|
let(:synapse) { create(:synapse) }
|
2016-02-09 06:25:39 +00:00
|
|
|
let(:valid_attributes) { synapse.attributes.except('id') }
|
|
|
|
let(:invalid_attributes) { { permission: :invalid_lol } }
|
2016-02-08 03:56:46 +00:00
|
|
|
before :each do
|
|
|
|
sign_in
|
2015-12-16 14:19:58 +00:00
|
|
|
end
|
2015-10-12 03:37:44 +00:00
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'GET #show' do
|
|
|
|
it 'assigns the requested synapse as @synapse' do
|
2016-02-09 06:25:39 +00:00
|
|
|
get :show, { id: synapse.to_param, format: :json }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:synapse)).to eq(synapse)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'POST #create' do
|
|
|
|
context 'with valid params' do
|
|
|
|
it 'creates a new Synapse' do
|
2016-02-09 06:25:39 +00:00
|
|
|
synapse.reload # ensure it's present
|
2015-12-16 14:19:58 +00:00
|
|
|
expect do
|
2016-02-09 06:25:39 +00:00
|
|
|
post :create, { synapse: valid_attributes, format: :json }
|
2015-12-16 14:19:58 +00:00
|
|
|
end.to change(Synapse, :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 synapse as @synapse' do
|
2016-02-09 06:25:39 +00:00
|
|
|
post :create, { synapse: valid_attributes, format: :json }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:synapse)).to be_a(Synapse)
|
|
|
|
expect(assigns(:synapse)).to be_persisted
|
|
|
|
end
|
|
|
|
|
2016-02-09 06:25:39 +00:00
|
|
|
it 'returns 201 CREATED' do
|
|
|
|
post :create, { synapse: valid_attributes, format: :json }
|
|
|
|
expect(response.status).to eq 201
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
context 'with invalid params' do
|
2016-02-09 06:25:39 +00:00
|
|
|
it 'returns 422 UNPROCESSABLE ENTITY' do
|
|
|
|
post :create, { synapse: invalid_attributes, format: :json }
|
|
|
|
expect(response.status).to eq 422
|
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
|
|
|
|
let(:new_attributes) do
|
2016-02-09 06:25:39 +00:00
|
|
|
{ desc: 'My new description',
|
|
|
|
category: 'both',
|
|
|
|
permission: :public }
|
2015-12-16 14:19:58 +00:00
|
|
|
end
|
2015-10-12 03:37:44 +00:00
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
it 'updates the requested synapse' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-02-09 06:25:39 +00:00
|
|
|
{ id: synapse.to_param, synapse: new_attributes, format: :json }
|
2015-10-12 03:37:44 +00:00
|
|
|
synapse.reload
|
2016-02-09 06:25:39 +00:00
|
|
|
expect(synapse.desc).to eq 'My new description'
|
|
|
|
expect(synapse.category).to eq 'both'
|
|
|
|
expect(synapse.permission).to eq 'public'
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
|
2016-02-09 06:25:39 +00:00
|
|
|
it 'returns 204 NO CONTENT' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-02-09 06:25:39 +00:00
|
|
|
{ id: synapse.to_param, synapse: valid_attributes, format: :json }
|
|
|
|
expect(response.status).to eq 204
|
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 synapse as @synapse' do
|
2015-12-16 14:33:29 +00:00
|
|
|
put :update,
|
2016-02-09 06:25:39 +00:00
|
|
|
{ id: synapse.to_param, synapse: invalid_attributes, format: :json }
|
2015-10-12 03:37:44 +00:00
|
|
|
expect(assigns(:synapse)).to eq(synapse)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
describe 'DELETE #destroy' do
|
2016-02-09 06:25:39 +00:00
|
|
|
let(:synapse) { create(:synapse, user: controller.current_user) }
|
|
|
|
|
2015-12-16 14:19:58 +00:00
|
|
|
it 'destroys the requested synapse' do
|
2016-02-09 06:25:39 +00:00
|
|
|
synapse.reload # ensure it's present
|
2015-12-16 14:19:58 +00:00
|
|
|
expect do
|
2016-02-09 06:25:39 +00:00
|
|
|
delete :destroy, { id: synapse.to_param, format: :json }
|
2015-12-16 14:19:58 +00:00
|
|
|
end.to change(Synapse, :count).by(-1)
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
|
2016-02-09 06:25:39 +00:00
|
|
|
it 'returns 204 NO CONTENT' do
|
|
|
|
delete :destroy, { id: synapse.to_param, format: :json }
|
|
|
|
expect(response.status).to eq 204
|
2015-10-12 03:37:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|