debian-mirror-gitlab/spec/models/work_item_spec.rb

372 lines
13 KiB
Ruby
Raw Normal View History

2022-04-04 11:22:00 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-03-04 22:38:38 +05:30
RSpec.describe WorkItem, feature_category: :portfolio_management do
2022-08-13 15:12:31 +05:30
let_it_be(:reusable_project) { create(:project) }
2022-07-23 23:45:48 +05:30
describe 'associations' do
2022-08-13 15:12:31 +05:30
it { is_expected.to belong_to(:namespace) }
2022-07-23 23:45:48 +05:30
it { is_expected.to have_one(:work_item_parent).class_name('WorkItem') }
it 'has one `parent_link`' do
is_expected.to have_one(:parent_link)
.class_name('::WorkItems::ParentLink')
.with_foreign_key('work_item_id')
end
it 'has many `work_item_children`' do
is_expected.to have_many(:work_item_children)
.class_name('WorkItem')
.with_foreign_key('work_item_id')
end
2023-04-23 21:23:45 +05:30
it 'has many `work_item_children_by_relative_position`' do
is_expected.to have_many(:work_item_children_by_relative_position)
2023-03-17 16:20:25 +05:30
.class_name('WorkItem')
.with_foreign_key('work_item_id')
end
2022-07-23 23:45:48 +05:30
it 'has many `child_links`' do
is_expected.to have_many(:child_links)
.class_name('::WorkItems::ParentLink')
.with_foreign_key('work_item_parent_id')
end
end
2023-04-23 21:23:45 +05:30
describe '.work_item_children_by_relative_position' do
subject { parent_item.reload.work_item_children_by_relative_position }
let_it_be(:parent_item) { create(:work_item, :objective, project: reusable_project) }
let_it_be(:oldest_item) { create(:work_item, :objective, created_at: 5.hours.ago, project: reusable_project) }
let_it_be(:middle_item) { create(:work_item, :objective, project: reusable_project) }
let_it_be(:newest_item) { create(:work_item, :objective, created_at: 5.hours.from_now, project: reusable_project) }
let_it_be_with_reload(:link_to_oldest_item) do
create(:parent_link, work_item_parent: parent_item, work_item: oldest_item)
end
let_it_be_with_reload(:link_to_middle_item) do
create(:parent_link, work_item_parent: parent_item, work_item: middle_item)
end
let_it_be_with_reload(:link_to_newest_item) do
create(:parent_link, work_item_parent: parent_item, work_item: newest_item)
end
context 'when ordered by relative position and created_at' do
using RSpec::Parameterized::TableSyntax
where(:oldest_item_position, :middle_item_position, :newest_item_position, :expected_order) do
nil | nil | nil | lazy { [oldest_item, middle_item, newest_item] }
nil | nil | 1 | lazy { [newest_item, oldest_item, middle_item] }
nil | 1 | 2 | lazy { [middle_item, newest_item, oldest_item] }
2 | 3 | 1 | lazy { [newest_item, oldest_item, middle_item] }
1 | 2 | 3 | lazy { [oldest_item, middle_item, newest_item] }
end
with_them do
before do
link_to_oldest_item.update!(relative_position: oldest_item_position)
link_to_middle_item.update!(relative_position: middle_item_position)
link_to_newest_item.update!(relative_position: newest_item_position)
end
it { is_expected.to eq(expected_order) }
end
end
end
2022-04-04 11:22:00 +05:30
describe '#noteable_target_type_name' do
it 'returns `issue` as the target name' do
work_item = build(:work_item)
expect(work_item.noteable_target_type_name).to eq('issue')
end
end
2022-05-07 20:08:51 +05:30
2022-07-23 23:45:48 +05:30
describe '#widgets' do
subject { build(:work_item).widgets }
it 'returns instances of supported widgets' do
2022-08-27 11:52:29 +05:30
is_expected.to include(
instance_of(WorkItems::Widgets::Description),
instance_of(WorkItems::Widgets::Hierarchy),
instance_of(WorkItems::Widgets::Labels),
instance_of(WorkItems::Widgets::Assignees),
instance_of(WorkItems::Widgets::StartAndDueDate)
)
2022-07-23 23:45:48 +05:30
end
end
2023-04-23 21:23:45 +05:30
describe '#supports_assignee?' do
let(:work_item) { build(:work_item, :task) }
before do
allow(work_item.work_item_type).to receive(:supports_assignee?).and_return(false)
end
it 'delegates the call to its work item type' do
expect(work_item.supports_assignee?).to be(false)
end
end
describe '#supported_quick_action_commands' do
let(:work_item) { build(:work_item, :task) }
subject { work_item.supported_quick_action_commands }
it 'returns quick action commands supported for all work items' do
is_expected.to include(:title, :reopen, :close, :cc, :tableflip, :shrug)
end
context 'when work item supports the assignee widget' do
it 'returns assignee related quick action commands' do
is_expected.to include(:assign, :unassign, :reassign)
end
end
context 'when work item does not the assignee widget' do
let(:work_item) { build(:work_item, :incident) }
it 'omits assignee related quick action commands' do
is_expected.not_to include(:assign, :unassign, :reassign)
end
end
context 'when work item supports the labels widget' do
it 'returns labels related quick action commands' do
is_expected.to include(:label, :labels, :relabel, :remove_label, :unlabel)
end
end
context 'when work item does not support the labels widget' do
let(:work_item) { build(:work_item, :incident) }
it 'omits labels related quick action commands' do
is_expected.not_to include(:label, :labels, :relabel, :remove_label, :unlabel)
end
end
context 'when work item supports the start and due date widget' do
it 'returns due date related quick action commands' do
is_expected.to include(:due, :remove_due_date)
end
end
context 'when work item does not support the start and due date widget' do
let(:work_item) { build(:work_item, :incident) }
it 'omits due date related quick action commands' do
is_expected.not_to include(:due, :remove_due_date)
end
end
end
2023-05-27 22:25:52 +05:30
describe 'transform_quick_action_params' do
let(:work_item) { build(:work_item, :task) }
subject(:transformed_params) do
work_item.transform_quick_action_params({
title: 'bar',
assignee_ids: ['foo']
})
end
it 'correctly separates widget params from regular params' do
expect(transformed_params).to eq({
common: {
title: 'bar'
},
widgets: {
assignees_widget: {
assignee_ids: ['foo']
}
}
})
end
end
2022-05-07 20:08:51 +05:30
describe 'callbacks' do
describe 'record_create_action' do
it 'records the creation action after saving' do
expect(Gitlab::UsageDataCounters::WorkItemActivityUniqueCounter).to receive(:track_work_item_created_action)
# During the work item transition we also want to track work items as issues
expect(Gitlab::UsageDataCounters::IssueActivityUniqueCounter).to receive(:track_issue_created_action)
create(:work_item)
end
2022-10-11 01:57:18 +05:30
it_behaves_like 'issue_edit snowplow tracking' do
let(:work_item) { create(:work_item) }
let(:property) { Gitlab::UsageDataCounters::IssueActivityUniqueCounter::ISSUE_CREATED }
let(:project) { work_item.project }
let(:user) { work_item.author }
subject(:service_action) { work_item }
end
2022-05-07 20:08:51 +05:30
end
2022-08-13 15:12:31 +05:30
context 'work item namespace' do
let(:work_item) { build(:work_item, project: reusable_project) }
it 'sets the namespace_id' do
expect(work_item).to be_valid
expect(work_item.namespace).to eq(reusable_project.project_namespace)
end
context 'when work item is saved' do
it 'sets the namespace_id' do
work_item.save!
expect(work_item.reload.namespace).to eq(reusable_project.project_namespace)
end
end
context 'when existing work item is saved' do
let(:work_item) { create(:work_item) }
before do
work_item.update!(namespace_id: nil)
end
it 'sets the namespace id' do
work_item.update!(title: "#{work_item.title} and something extra")
expect(work_item.namespace).to eq(work_item.project.project_namespace)
end
end
end
end
describe 'validations' do
subject { work_item.valid? }
describe 'issue_type' do
let(:work_item) { build(:work_item, issue_type: issue_type) }
context 'when a valid type' do
let(:issue_type) { :issue }
it { is_expected.to eq(true) }
end
context 'empty type' do
let(:issue_type) { nil }
it { is_expected.to eq(false) }
end
end
2022-08-27 11:52:29 +05:30
describe 'confidentiality' do
let_it_be(:project) { create(:project) }
context 'when parent and child are confidential' do
let_it_be(:parent) { create(:work_item, confidential: true, project: project) }
let_it_be(:child) { create(:work_item, :task, confidential: true, project: project) }
let_it_be(:link) { create(:parent_link, work_item: child, work_item_parent: parent) }
it 'does not allow to make child non-confidential' do
child.confidential = false
expect(child).not_to be_valid
2022-10-11 01:57:18 +05:30
expect(child.errors[:base])
.to include(_('A non-confidential work item cannot have a confidential parent.'))
2022-08-27 11:52:29 +05:30
end
it 'allows to make parent non-confidential' do
parent.confidential = false
expect(parent).to be_valid
end
end
context 'when parent and child are non-confidential' do
let_it_be(:parent) { create(:work_item, project: project) }
let_it_be(:child) { create(:work_item, :task, project: project) }
let_it_be(:link) { create(:parent_link, work_item: child, work_item_parent: parent) }
it 'does not allow to make parent confidential' do
parent.confidential = true
expect(parent).not_to be_valid
2022-10-11 01:57:18 +05:30
expect(parent.errors[:base]).to include(
_('A confidential work item cannot have a parent that already has non-confidential children.')
)
2022-08-27 11:52:29 +05:30
end
it 'allows to make child confidential' do
child.confidential = true
expect(child).to be_valid
end
end
context 'when creating new child' do
let_it_be(:child) { build(:work_item, project: project) }
it 'does not allow to set confidential parent' do
child.work_item_parent = create(:work_item, confidential: true, project: project)
expect(child).not_to be_valid
2022-10-11 01:57:18 +05:30
expect(child.errors[:base])
.to include('A non-confidential work item cannot have a confidential parent.')
2022-08-27 11:52:29 +05:30
end
end
end
2022-05-07 20:08:51 +05:30
end
2023-03-04 22:38:38 +05:30
context 'with hierarchy' do
let_it_be(:type1) { create(:work_item_type, namespace: reusable_project.namespace) }
let_it_be(:type2) { create(:work_item_type, namespace: reusable_project.namespace) }
let_it_be(:type3) { create(:work_item_type, namespace: reusable_project.namespace) }
let_it_be(:type4) { create(:work_item_type, namespace: reusable_project.namespace) }
let_it_be(:hierarchy_restriction1) { create(:hierarchy_restriction, parent_type: type1, child_type: type2) }
let_it_be(:hierarchy_restriction2) { create(:hierarchy_restriction, parent_type: type2, child_type: type2) }
let_it_be(:hierarchy_restriction3) { create(:hierarchy_restriction, parent_type: type2, child_type: type3) }
let_it_be(:hierarchy_restriction4) { create(:hierarchy_restriction, parent_type: type3, child_type: type3) }
let_it_be(:hierarchy_restriction5) { create(:hierarchy_restriction, parent_type: type3, child_type: type4) }
let_it_be(:item1) { create(:work_item, work_item_type: type1, project: reusable_project) }
let_it_be(:item2_1) { create(:work_item, work_item_type: type2, project: reusable_project) }
let_it_be(:item2_2) { create(:work_item, work_item_type: type2, project: reusable_project) }
let_it_be(:item3_1) { create(:work_item, work_item_type: type3, project: reusable_project) }
let_it_be(:item3_2) { create(:work_item, work_item_type: type3, project: reusable_project) }
let_it_be(:item4) { create(:work_item, work_item_type: type4, project: reusable_project) }
let_it_be(:ignored_ancestor) { create(:work_item, work_item_type: type1, project: reusable_project) }
let_it_be(:ignored_descendant) { create(:work_item, work_item_type: type4, project: reusable_project) }
let_it_be(:link1) { create(:parent_link, work_item_parent: item1, work_item: item2_1) }
let_it_be(:link2) { create(:parent_link, work_item_parent: item2_1, work_item: item2_2) }
let_it_be(:link3) { create(:parent_link, work_item_parent: item2_2, work_item: item3_1) }
let_it_be(:link4) { create(:parent_link, work_item_parent: item3_1, work_item: item3_2) }
let_it_be(:link5) { create(:parent_link, work_item_parent: item3_2, work_item: item4) }
describe '#ancestors' do
it 'returns all ancestors in ascending order' do
expect(item3_1.ancestors).to eq([item2_2, item2_1, item1])
end
it 'returns an empty array if there are no ancestors' do
expect(item1.ancestors).to be_empty
end
end
describe '#same_type_base_and_ancestors' do
it 'returns self and all ancestors of the same type in ascending order' do
expect(item3_2.same_type_base_and_ancestors).to eq([item3_2, item3_1])
end
it 'returns self if there are no ancestors of the same type' do
expect(item3_1.same_type_base_and_ancestors).to match_array([item3_1])
end
end
describe '#same_type_descendants_depth' do
it 'returns max descendants depth including self' do
expect(item3_1.same_type_descendants_depth).to eq(2)
end
it 'returns 1 if there are no descendants' do
expect(item1.same_type_descendants_depth).to eq(1)
end
end
end
2022-04-04 11:22:00 +05:30
end