2022-04-04 11:22:00 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe 'shared/issuable/_sidebar.html.haml' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
subject(:rendered) do
|
|
|
|
render 'shared/issuable/sidebar', issuable_sidebar: IssueSerializer.new(current_user: user)
|
|
|
|
.represent(issuable, serializer: 'sidebar'), assignees: []
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'project in a group' do
|
2022-05-07 20:08:51 +05:30
|
|
|
let_it_be(:group) { create(:group, :crm_enabled) }
|
2022-04-04 11:22:00 +05:30
|
|
|
let_it_be(:project) { create(:project, group: group) }
|
|
|
|
let_it_be(:issue) { create(:issue, project: project) }
|
|
|
|
let_it_be(:incident) { create(:incident, project: project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
assign(:project, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'issuable that does not support escalations' do
|
|
|
|
let(:issuable) { incident }
|
|
|
|
|
|
|
|
it 'shows escalation policy dropdown' do
|
|
|
|
expect(rendered).to have_css('[data-testid="escalation_status_container"]')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'issuable that supports escalations' do
|
|
|
|
let(:issuable) { issue }
|
|
|
|
|
|
|
|
it 'does not show escalation policy dropdown' do
|
|
|
|
expect(rendered).not_to have_css('[data-testid="escalation_status_container"]')
|
|
|
|
end
|
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
|
|
|
|
context 'crm contacts widget' do
|
|
|
|
let(:issuable) { issue }
|
|
|
|
|
|
|
|
context 'without permission' do
|
|
|
|
it 'is expected not to be shown' do
|
|
|
|
create(:contact, group: group)
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expect(rendered).not_to have_css('.js-sidebar-crm-contacts-root')
|
2022-05-07 20:08:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without contacts' do
|
|
|
|
it 'is expected not to be shown' do
|
|
|
|
group.add_developer(user)
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expect(rendered).not_to have_css('.js-sidebar-crm-contacts-root')
|
2022-05-07 20:08:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with permission and contacts' do
|
|
|
|
it 'is expected to be shown' do
|
|
|
|
create(:contact, group: group)
|
|
|
|
group.add_developer(user)
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expect(rendered).to have_css('.js-sidebar-crm-contacts-root')
|
2022-05-07 20:08:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
end
|
|
|
|
end
|