1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Work item linked items', :js, feature_category: :team_planning do
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, :public, namespace: group) }
let_it_be(:user) { create(:user) }
let_it_be(:work_item) { create(:work_item, project: project) }
let(:work_items_path) { project_work_item_path(project, work_item.iid) }
let_it_be(:task) { create(:work_item, :task, project: project, title: 'Task 1') }
let_it_be(:milestone) { create(:milestone, project: project, title: '1.0') }
let_it_be(:label) { create(:label, project: project) }
let_it_be(:objective) do
create(:work_item, :objective, project: project, milestone: milestone,
title: 'Objective 1', labels: [label])
end
context 'for signed in user' do
let(:token_input_selector) { '[data-testid="work-item-token-select-input"] .gl-token-selector-input' }
before_all do
project.add_developer(user)
end
before do
sign_in(user)
stub_feature_flags(work_items: true)
visit work_items_path
wait_for_requests
end
it 'are not displayed when issue does not have work item links', :aggregate_failures do
within_testid('work-item-relationships') do
expect(page).to have_selector('[data-testid="link-item-add-button"]')
expect(page).not_to have_selector('[data-testid="link-work-item-form"]')
expect(page).not_to have_selector('[data-testid="work-item-linked-items-list"]')
end
end
it 'toggles widget body', :aggregate_failures do
within_testid('work-item-relationships') do
expect(page).to have_selector('[data-testid="crud-empty"]')
click_button 'Collapse'
expect(page).not_to have_selector('[data-testid="crud-empty"]')
click_button 'Expand'
expect(page).to have_selector('[data-testid="crud-empty"]')
end
end
it 'toggles form', :aggregate_failures do
within_testid('work-item-relationships') do
expect(page).not_to have_selector('[data-testid="link-work-item-form"]')
click_button 'Add'
expect(page).to have_selector('[data-testid="link-work-item-form"]')
click_button 'Cancel'
expect(page).not_to have_selector('[data-testid="link-work-item-form"]')
end
end
it 'links a new item with work item text', :aggregate_failures,
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444980' do
verify_linked_item_added(task.title)
end
it 'links a new item with work item iid', :aggregate_failures,
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444751' do
verify_linked_item_added(task.iid)
end
it 'links a new item with work item wildcard iid', :aggregate_failures,
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/444914' do
verify_linked_item_added("##{task.iid}")
end
it 'links a new item with work item reference', :aggregate_failures,
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/445635' do
verify_linked_item_added(task.to_reference(full: true))
end
it 'links a new item with work item url', :aggregate_failures,
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/438014' do
verify_linked_item_added("#{Gitlab.config.gitlab.url}/#{task.project.full_path}/-/work_items/#{task.iid}")
end
it 'removes a linked item', :aggregate_failures do
within_testid('work-item-relationships') do
click_button 'Add'
within_testid('link-work-item-form') do
expect(page).to have_button('Add', disabled: true)
find_by_testid('work-item-token-select-input').set(task.title)
wait_for_all_requests
click_button task.title
expect(page).to have_button('Add', disabled: false)
click_button 'Add'
wait_for_all_requests
end
expect(find('.work-items-list')).to have_content('Task 1')
find_by_testid('links-child').hover
find_by_testid('remove-work-item-link').click
wait_for_all_requests
expect(page).not_to have_content('Task 1')
end
end
it 'passes axe automated accessibility testing for linked items empty state' do
selector = '[data-testid="work-item-relationships"]'
expect(page).to be_axe_clean.within(selector).skipping :'link-in-text-block'
end
it 'passes axe automated accessibility testing for linked items' do
within_testid('work-item-relationships') do
click_button 'Add'
find_by_testid('work-item-token-select-input').set(objective.title)
wait_for_all_requests
form_selector = '[data-testid="work-item-relationships"]'
expect(page).to be_axe_clean.within(form_selector).skipping :'aria-input-field-name',
:'aria-required-children'
within_testid('link-work-item-form') do
click_button objective.title
click_button 'Add'
end
wait_for_all_requests
expect(page).to be_axe_clean.within(form_selector)
end
end
end
def verify_linked_item_added(input)
within_testid('work-item-relationships') do
click_button 'Add'
within_testid('link-work-item-form') do
expect(page).to have_button('Add', disabled: true)
find(token_input_selector).set(input)
wait_for_all_requests
click_button task.title
expect(page).to have_button('Add', disabled: false)
click_button 'Add'
wait_for_all_requests
end
expect(find('.work-items-list')).to have_content('Task 1')
end
end
end
|