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
177
178
|
# frozen_string_literal: true
RSpec.shared_examples 'packages list' do |check_project_name: false|
it 'shows a list of packages' do
wait_for_requests
packages.each_with_index do |pkg, index|
package_row = package_table_row(index)
expect(package_row).to have_content(pkg.name)
expect(package_row).to have_content(pkg.version)
expect(package_row).to have_content(pkg.project.path) if check_project_name
end
end
def package_table_row(index)
page.all("#{packages_table_selector} [data-testid=\"package-row\"]")[index].text
end
end
RSpec.shared_examples 'pipelines on packages list' do
let_it_be(:pipelines) do
%w[c83d6e391c22777fca1ed3012fce84f633d7fed0
d83d6e391c22777fca1ed3012fce84f633d7fed0].map do |sha|
create(:ci_pipeline, project: project, sha: sha)
end
end
before do
pipelines.each do |pipeline|
create(:package_build_info, package: package, pipeline: pipeline)
end
end
it 'shows the latest pipeline' do
# Test after reload
page.evaluate_script 'window.location.reload()'
wait_for_requests
expect(page).to have_content('d83d6e39')
end
end
RSpec.shared_examples 'package details link' do |property|
before do
stub_application_setting(npm_package_requests_forwarding: false)
end
it 'navigates to the correct url' do
page.within(packages_table_selector) do
click_link package.name
end
expect(page).to have_current_path(package_details_path)
expect(page).to have_css('.packages-app h2[data-testid="title"]', text: package.name)
expect(page).to have_content('Installation')
expect(page).to have_content('Registry setup')
expect(page).to have_content('Other versions 0')
end
context 'with other versions' do
let_it_be(:npm_package1) { create(:npm_package, project: project, name: 'zzz', version: '1.1.0') }
let_it_be(:npm_package2) { create(:npm_package, project: project, name: 'zzz', version: '1.2.0') }
before do
page.within(packages_table_selector) do
first(:link, package.name).click
end
end
it 'shows tab with count' do
expect(page).to have_content('Other versions 2')
end
it 'visiting tab shows total on page' do
click_link 'Other versions'
expect(page).to have_content('2 versions')
end
it 'deleting version updates count' do
click_link 'Other versions'
find('[data-testid="delete-dropdown"]', match: :first).click
find('[data-testid="action-delete"]', match: :first).click
click_button('Permanently delete')
expect(page).to have_content 'Package deleted successfully'
expect(page).to have_content('Other versions 1')
expect(page).to have_content('1 version')
expect(page).not_to have_content('1.0.0')
expect(page).to have_content('1.1.0')
expect(page).to have_content('1.2.0')
end
end
end
RSpec.shared_examples 'when there are no packages' do
it 'displays the empty message' do
expect(page).to have_content('There are no packages yet')
end
end
RSpec.shared_examples 'correctly sorted packages list' do |order_by, ascending: false|
context "ordered by #{order_by} and ascending #{ascending}" do
before do
click_sort_option(order_by, ascending)
end
it_behaves_like 'packages list'
end
end
RSpec.shared_examples 'shared package sorting' do
it_behaves_like 'correctly sorted packages list', 'Type' do
let(:packages) { [package_two, package_one] }
end
it_behaves_like 'correctly sorted packages list', 'Type', ascending: true do
let(:packages) { [package_one, package_two] }
end
it_behaves_like 'correctly sorted packages list', 'Name' do
let(:packages) { [package_two, package_one] }
end
it_behaves_like 'correctly sorted packages list', 'Name', ascending: true do
let(:packages) { [package_one, package_two] }
end
it_behaves_like 'correctly sorted packages list', 'Version' do
let(:packages) { [package_one, package_two] }
end
it_behaves_like 'correctly sorted packages list', 'Version', ascending: true do
let(:packages) { [package_two, package_one] }
end
it_behaves_like 'correctly sorted packages list', 'Published' do
let(:packages) { [package_two, package_one] }
end
it_behaves_like 'correctly sorted packages list', 'Published', ascending: true do
let(:packages) { [package_one, package_two] }
end
end
def packages_table_selector
'[data-testid="packages-table"]'
end
def click_sort_option(option, ascending)
wait_for_requests
# Reset the sort direction
if page.has_selector?('button[aria-label="Sorting Direction: Ascending"]', wait: 0) && !ascending
click_button 'Sort direction'
wait_for_requests
end
find('[data-testid="registry-sort-dropdown"]').click
page.within('[data-testid="registry-sort-dropdown"] .dropdown-menu') do
click_button option
end
if ascending
wait_for_requests
click_button 'Sort direction'
end
end
|