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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
# frozen_string_literal: true
module QA
module Page
module Component
module Snippet
extend QA::Page::PageConcern
def self.included(base)
super
base.class_eval do
include QA::Page::Component::ConfirmModal
end
base.view 'app/assets/javascripts/snippets/components/snippet_title.vue' do
element :snippet_title_content
end
base.view 'app/assets/javascripts/snippets/components/snippet_description_view.vue' do
element :snippet_description_content
end
base.view 'app/assets/javascripts/snippets/components/snippet_header.vue' do
element :snippet_container
end
base.view 'app/assets/javascripts/blob/components/blob_header_filepath.vue' do
element :file_title_content
end
base.view 'app/assets/javascripts/blob/components/blob_content.vue' do
element :blob_viewer_file_content
end
base.view 'app/assets/javascripts/snippets/components/snippet_header.vue' do
element :snippet_action_button
element :delete_snippet_button
end
base.view 'app/assets/javascripts/snippets/components/show.vue' do
element :clone_button
element :snippet_embed_dropdown
end
base.view 'app/assets/javascripts/vue_shared/components/clone_dropdown.vue' do
element :copy_http_url_button
element :copy_ssh_url_button
end
base.view 'app/views/shared/notes/_comment_button.html.haml' do
element :comment_button
end
base.view 'app/views/shared/notes/_form.html.haml' do
element :note_field
end
base.view 'app/views/snippets/notes/_actions.html.haml' do
element :edit_comment_button
end
base.view 'app/views/shared/notes/_edit_form.html.haml' do
element :edit_note_field
element :save_comment_button
end
base.view 'app/views/shared/notes/_note.html.haml' do
element :note_content
element :note_author_content
end
base.view 'app/views/projects/notes/_more_actions_dropdown.html.haml' do
element :more_actions_dropdown
element :delete_comment_button
end
base.view 'app/assets/javascripts/snippets/components/embed_dropdown.vue' do
element :copy_button
end
base.view 'app/assets/javascripts/blob/components/blob_header_default_actions.vue' do
element :default_actions_container
element :copy_contents_button
end
base.view 'app/views/layouts/nav/_breadcrumbs.html.haml' do
element :breadcrumb_links_content
element :breadcrumb_current_link
end
end
def has_snippet_title?(snippet_title)
has_element?(:snippet_title_content, text: snippet_title, wait: 10)
end
def has_snippet_description?(snippet_description)
has_element? :snippet_description_content, text: snippet_description
end
def has_no_snippet_description?
has_no_element?(:snippet_description_field)
end
def has_visibility_type?(visibility_type)
within_element(:snippet_container) do
has_text?(visibility_type)
end
end
def has_file_name?(file_name, file_number = nil)
if file_number
within_element_by_index(:file_title_content, file_number - 1) do
has_text?(file_name)
end
else
within_element(:file_title_content) do
has_text?(file_name)
end
end
end
def has_no_file_name?(file_name, file_number = nil)
if file_number
within_element_by_index(:file_title_content, file_number - 1) do
has_no_text?(file_name)
end
else
within_element(:file_title_content) do
has_no_text?(file_name)
end
end
end
def has_file_content?(file_content, file_number = nil)
if file_number
within_element_by_index(:blob_viewer_file_content, file_number - 1) do
has_text?(file_content)
end
else
within_element(:blob_viewer_file_content) do
has_text?(file_content)
end
end
end
def has_no_file_content?(file_content, file_number = nil)
if file_number
within_element_by_index(:blob_viewer_file_content, file_number - 1) do
has_no_text?(file_content)
end
else
within_element(:blob_viewer_file_content) do
has_no_text?(file_content)
end
end
end
def has_embed_dropdown?
has_element?(:snippet_embed_dropdown)
end
def click_edit_button
click_element(:snippet_action_button, Page::Dashboard::Snippet::Edit, action: 'Edit')
end
def click_delete_button
click_element(:snippet_action_button, action: 'Delete')
click_element(:delete_snippet_button)
# wait for the page to reload after deletion
wait_until(reload: false) do
has_no_element?(:delete_snippet_button) &&
has_no_element?(:snippet_action_button, action: 'Delete')
end
end
def get_repository_uri_http
click_element(:clone_button)
Git::Location.new(find_element(:copy_http_url_button)['data-clipboard-text']).uri.to_s
end
def get_repository_uri_ssh
click_element(:clone_button)
Git::Location.new(find_element(:copy_ssh_url_button)['data-clipboard-text']).uri.to_s
end
def get_sharing_link
click_element(:snippet_embed_dropdown)
find_element(:copy_button, action: 'Share')['data-clipboard-text']
end
def add_comment(comment)
fill_element(:note_field, comment)
click_element(:comment_button)
unless has_element?(:note_author_content)
raise ElementNotFound, "Comment did not appear as expected"
end
end
def has_comment_author?(author_username)
within_element(:note_author_content) do
has_text?('@' + author_username)
end
end
def has_comment_content?(comment_content)
within_element(:note_content) do
has_text?(comment_content)
end
end
def has_syntax_highlighting?(language)
within_element(:blob_viewer_file_content) do
find('.line')['lang'].to_s == language
end
end
def edit_comment(comment)
click_element(:edit_comment_button)
fill_element(:edit_note_field, comment)
click_element(:save_comment_button)
unless has_element?(:note_author_content)
raise ElementNotFound, "Comment did not appear as expected"
end
end
def delete_comment(comment)
click_element(:more_actions_dropdown)
click_element(:delete_comment_button)
click_confirmation_ok_button
unless has_no_element?(:note_content, text: comment)
raise ElementNotFound, "Comment was not removed as expected"
end
end
def click_copy_file_contents(file_number = nil)
if file_number
within_element_by_index(:default_actions_container, file_number - 1) do
click_element(:copy_contents_button)
end
else
within_element(:default_actions_container) do
click_element(:copy_contents_button)
end
end
end
def copy_file_contents_to_comment(file_number = nil)
click_copy_file_contents(file_number)
send_keys_to_element(:note_field, [:shift, :insert])
click_element(:comment_button)
unless has_element?(:note_author_content)
raise ElementNotFound, "Comment did not appear as expected"
end
end
def snippet_id
within_element(:breadcrumb_links_content) do
find_element(:breadcrumb_current_link).text.delete_prefix('$')
end
end
end
end
end
end
|