debian-mirror-gitlab/spec/services/customer_relations/contacts/update_service_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.1 KiB
Ruby
Raw Normal View History

2021-11-18 22:05:49 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe CustomerRelations::Contacts::UpdateService, feature_category: :service_desk do
2021-11-18 22:05:49 +05:30
let_it_be(:user) { create(:user) }
2022-07-16 23:28:13 +05:30
let(:contact) { create(:contact, first_name: 'Mark', group: group, state: 'active') }
2021-11-18 22:05:49 +05:30
subject(:update) { described_class.new(group: group, current_user: user, params: params).execute(contact) }
describe '#execute' do
context 'when the user has no permission' do
2022-03-02 08:16:31 +05:30
let_it_be(:group) { create(:group, :crm_enabled) }
2021-11-18 22:05:49 +05:30
let(:params) { { first_name: 'Gary' } }
it 'returns an error' do
response = update
expect(response).to be_error
2022-07-16 23:28:13 +05:30
expect(response.message).to match_array(['You have insufficient permissions to manage contacts for this group'])
2021-11-18 22:05:49 +05:30
end
end
context 'when user has permission' do
2022-03-02 08:16:31 +05:30
let_it_be(:group) { create(:group, :crm_enabled) }
2021-11-18 22:05:49 +05:30
before_all do
group.add_developer(user)
end
context 'when first_name is changed' do
let(:params) { { first_name: 'Gary' } }
it 'updates the contact' do
response = update
expect(response).to be_success
expect(response.payload.first_name).to eq('Gary')
end
end
2022-07-16 23:28:13 +05:30
context 'when activating' do
let(:contact) { create(:contact, state: 'inactive') }
let(:params) { { active: true } }
it 'updates the contact' do
response = update
expect(response).to be_success
expect(response.payload.active?).to be_truthy
end
end
context 'when deactivating' do
let(:params) { { active: false } }
it 'updates the contact' do
response = update
expect(response).to be_success
expect(response.payload.active?).to be_falsy
end
end
2021-11-18 22:05:49 +05:30
context 'when the contact is invalid' do
let(:params) { { first_name: nil } }
it 'returns an error' do
response = update
expect(response).to be_error
expect(response.message).to match_array(["First name can't be blank"])
end
end
end
end
end