scinote-web/spec/controllers/my_module_comments_controller_spec.rb
2022-08-31 16:37:00 +02:00

71 lines
1.9 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe MyModuleCommentsController, type: :controller do
login_user
include_context 'reference_project_structure' , {
team_role: :normal_user,
my_module_comment: true
}
describe 'POST create' do
let(:action) { post :create, params: params, format: :json }
let(:params) do
{ my_module_id: my_module.id, comment: { message: 'comment created' } }
end
it 'calls create activity for adding comment to task' do
expect(Activities::CreateActivityService)
.to(receive(:call)
.with(hash_including(activity_type: :add_comment_to_module)))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
end
end
describe 'PUT update' do
let(:action) { put :update, params: params, format: :json }
let(:params) do
{ my_module_id: my_module.id,
id: my_module_comment.id,
comment: { message: 'comment updated' } }
end
it 'calls create activity for editing comment on task' do
expect(Activities::CreateActivityService)
.to(receive(:call)
.with(hash_including(activity_type: :edit_module_comment)))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
end
end
describe 'DELETE destroy' do
let(:action) { delete :destroy, params: params, format: :json }
let(:params) do
{ my_module_id: my_module.id, id: my_module_comment.id }
end
it 'calls create activity for deleting comment on task' do
expect(Activities::CreateActivityService)
.to(receive(:call)
.with(hash_including(activity_type: :delete_module_comment)))
action
end
it 'adds activity in DB' do
expect { action }
.to(change { Activity.count })
end
end
end