scinote-web/spec/controllers/project_comments_controller_spec.rb

76 lines
1.9 KiB
Ruby
Raw Normal View History

2019-03-08 00:26:42 +08:00
# frozen_string_literal: true
require 'rails_helper'
describe ProjectCommentsController, type: :controller do
include_context 'project_generator', {
project_comment: true
}
describe 'POST create' do
2019-03-08 00:26:42 +08:00
context 'in JSON format' do
let(:action) { post :create, params: params, format: :json }
2019-03-08 00:26:42 +08:00
let(:params) do
{ project_id: project.id,
comment: { message: 'test message' } }
end
it 'calls create activity service' do
expect(Activities::CreateActivityService).to receive(:call)
.with(hash_including(activity_type: :add_comment_to_project))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
2019-03-08 00:26:42 +08:00
end
end
end
describe 'PUT update' do
2019-03-08 00:26:42 +08:00
context 'in JSON format' do
let(:action) { put :update, params: params, format: :json }
2019-03-08 00:26:42 +08:00
let(:params) do
{ project_id: project.id,
id: project_comment.id,
comment: { message: 'test message updated' } }
end
it 'calls create activity service' do
expect(Activities::CreateActivityService).to receive(:call)
.with(hash_including(activity_type: :edit_project_comment))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
2019-03-08 00:26:42 +08:00
end
end
end
describe 'DELETE destroy' do
2019-03-08 00:26:42 +08:00
context 'in JSON format' do
let(:action) { delete :destroy, params: params, format: :json }
2019-03-08 00:26:42 +08:00
let(:params) do
{ project_id: project.id,
id: project_comment.id }
end
it 'calls create activity service' do
expect(Activities::CreateActivityService).to receive(:call)
.with(hash_including(activity_type: :delete_project_comment))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
2019-03-08 00:26:42 +08:00
end
end
end
end