Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/project/web_ide/edit.rb')
-rw-r--r--qa/qa/page/project/web_ide/edit.rb63
1 files changed, 50 insertions, 13 deletions
diff --git a/qa/qa/page/project/web_ide/edit.rb b/qa/qa/page/project/web_ide/edit.rb
index b46d2d32f1f..b962b0c673b 100644
--- a/qa/qa/page/project/web_ide/edit.rb
+++ b/qa/qa/page/project/web_ide/edit.rb
@@ -59,12 +59,25 @@ module QA
element :rename_move_button
end
+ view 'app/views/shared/_confirm_fork_modal.html.haml' do
+ element :fork_project_button
+ element :confirm_fork_modal
+ end
+
+ view 'app/assets/javascripts/ide/components/ide_project_header.vue' do
+ element :project_path_content
+ end
+
def has_file?(file_name)
within_element(:file_list) do
page.has_content? file_name
end
end
+ def has_project_path?(project_path)
+ has_element?(:project_path_content, project_path: project_path)
+ end
+
def create_new_file_from_template(file_name, template)
click_element(:new_file, Page::Component::WebIDE::Modal::CreateNewFile)
@@ -91,7 +104,7 @@ module QA
end
end
- def commit_changes
+ def commit_changes(open_merge_request: false)
# Clicking :begin_commit_button switches from the
# edit to the commit view
click_element :begin_commit_button
@@ -107,19 +120,23 @@ module QA
has_element?(:commit_button)
end
- # Click :commit_button and keep retrying just in case part of the
- # animation is still in process even when the buttons have the
- # expected visibility.
- commit_success_msg_shown = retry_until(sleep_interval: 5) do
- click_element(:commit_to_current_branch_radio) if has_element?(:commit_to_current_branch_radio)
- click_element(:commit_button) if has_element?(:commit_button)
-
- wait_until(reload: false) do
- has_text?('Your changes have been committed')
+ if open_merge_request
+ click_element(:commit_button, Page::MergeRequest::New)
+ else
+ # Click :commit_button and keep retrying just in case part of the
+ # animation is still in process even when the buttons have the
+ # expected visibility.
+ commit_success_msg_shown = retry_until(sleep_interval: 5) do
+ click_element(:commit_to_current_branch_radio) if has_element?(:commit_to_current_branch_radio)
+ click_element(:commit_button) if has_element?(:commit_button)
+
+ wait_until(reload: false) do
+ has_text?('Your changes have been committed')
+ end
end
- end
- raise "The changes do not appear to have been committed successfully." unless commit_success_msg_shown
+ raise "The changes do not appear to have been committed successfully." unless commit_success_msg_shown
+ end
end
def add_to_modified_content(content)
@@ -136,12 +153,21 @@ module QA
end
def create_first_file(file_name)
- finished_loading?
click_element(:first_file_button, Page::Component::WebIDE::Modal::CreateNewFile)
fill_element(:file_name_field, file_name)
click_button('Create file')
end
+ def add_file(file_name, file_text)
+ click_element(:new_file, Page::Component::WebIDE::Modal::CreateNewFile)
+ fill_element(:file_name_field, file_name)
+ click_button('Create file')
+ wait_until(reload: false) { has_file?(file_name) }
+ within_element(:editor_container) do
+ find('textarea.inputarea').click.set(file_text)
+ end
+ end
+
def rename_file(file_name, new_file_name)
click_element(:file_name_content, text: file_name)
click_element(:dropdown_button)
@@ -149,6 +175,17 @@ module QA
fill_element(:file_name_field, new_file_name)
click_button('Rename file')
end
+
+ def fork_project!
+ wait_until(reload: false) do
+ has_element?(:confirm_fork_modal)
+ end
+ click_element(:fork_project_button)
+ # wait for the fork to be created
+ wait_until(reload: true) do
+ has_element?(:file_list)
+ end
+ end
end
end
end