summaryrefslogtreecommitdiff
path: root/qa/qa/page/group/settings/general.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/group/settings/general.rb')
-rw-r--r--qa/qa/page/group/settings/general.rb85
1 files changed, 85 insertions, 0 deletions
diff --git a/qa/qa/page/group/settings/general.rb b/qa/qa/page/group/settings/general.rb
index 07b421f154a..efc8bbd7482 100644
--- a/qa/qa/page/group/settings/general.rb
+++ b/qa/qa/page/group/settings/general.rb
@@ -5,14 +5,99 @@ module QA
module Group
module Settings
class General < QA::Page::Base
+ include ::QA::Page::Settings::Common
+
view 'app/views/groups/edit.html.haml' do
element :permission_lfs_2fa_section
end
+
view 'app/views/groups/settings/_permissions.html.haml' do
element :save_permissions_changes_button
end
+
+ view 'app/views/groups/settings/_general.html.haml' do
+ element :group_name_field
+ element :save_name_visibility_settings_button
+ end
+
+ view 'app/views/shared/_visibility_radios.html.haml' do
+ element :internal_radio, 'qa_selector: "#{visibility_level_label(level).downcase}_radio"' # rubocop:disable QA/ElementWithPattern, Lint/InterpolationCheck
+ end
+
+ view 'app/views/groups/settings/_lfs.html.haml' do
+ element :lfs_checkbox
+ end
+
+ view 'app/views/shared/_allow_request_access.html.haml' do
+ element :request_access_checkbox
+ end
+
+ view 'app/views/groups/settings/_two_factor_auth.html.haml' do
+ element :require_2fa_checkbox
+ end
+
+ view 'app/views/groups/settings/_project_creation_level.html.haml' do
+ element :project_creation_level_dropdown
+ end
+
+ def set_group_name(name)
+ find_element(:group_name_field).send_keys([:command, 'a'], :backspace)
+ find_element(:group_name_field).set name
+ end
+
+ def set_group_visibility(visibility)
+ find_element("#{visibility.downcase}_radio").click
+ end
+
+ def click_save_name_visibility_settings_button
+ click_element(:save_name_visibility_settings_button)
+ end
+
+ def set_lfs_enabled
+ expand_section :permission_lfs_2fa_section
+ check_element :lfs_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_lfs_disabled
+ expand_section :permission_lfs_2fa_section
+ uncheck_element :lfs_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_request_access_enabled
+ expand_section :permission_lfs_2fa_section
+ check_element :request_access_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_request_access_disabled
+ expand_section :permission_lfs_2fa_section
+ uncheck_element :request_access_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_require_2fa_enabled
+ expand_section :permission_lfs_2fa_section
+ check_element :require_2fa_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_require_2fa_disabled
+ expand_section :permission_lfs_2fa_section
+ uncheck_element :require_2fa_checkbox
+ click_element :save_permissions_changes_button
+ end
+
+ def set_project_creation_level(value)
+ expand_section :permission_lfs_2fa_section
+ select_element(:project_creation_level_dropdown, value)
+ click_element :save_permissions_changes_button
+ end
end
end
end
end
end
+
+QA::Page::Group::Settings::General.prepend_if_ee('QA::EE::Page::Group::Settings::General')