Commit 39582078 authored by Robert Speicher's avatar Robert Speicher

Add QA::Scenario::Gitlab::Group::Create

parent 348c6105
...@@ -31,6 +31,10 @@ module QA ...@@ -31,6 +31,10 @@ module QA
# GitLab instance scenarios. # GitLab instance scenarios.
# #
module Gitlab module Gitlab
module Group
autoload :Create, 'qa/scenario/gitlab/group/create'
end
module Project module Project
autoload :Create, 'qa/scenario/gitlab/project/create' autoload :Create, 'qa/scenario/gitlab/project/create'
end end
......
...@@ -3,53 +3,21 @@ module QA ...@@ -3,53 +3,21 @@ module QA
module Dashboard module Dashboard
class Groups < Page::Base class Groups < Page::Base
def filter_by_name(name) def filter_by_name(name)
# NOTE: The filter placeholder on the Subgroups page currently omits
# the ellipsis.
#
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/38807
if page.has_field?('Filter by name...')
fill_in 'Filter by name...', with: name fill_in 'Filter by name...', with: name
elsif page.has_field?('Filter by name')
fill_in 'Filter by name', with: name
end
end
def has_test_namespace?
filter_by_name(namespace.name)
page.has_link?(namespace.name)
end
def has_sandbox?
filter_by_name(namespace.sandbox_name)
page.has_link?(namespace.sandbox_name)
end
def go_to_test_namespace
click_link namespace.name
end end
def go_to_sandbox def has_group?(name)
click_link namespace.sandbox_name filter_by_name(name)
end
def create_group(group_name = nil, group_description = nil) page.has_link?(name)
Page::Group::New.act { create_group(group_name, group_description) }
end end
def prepare_test_namespace def go_to_group(name)
if has_test_namespace? click_link name
go_to_test_namespace
else
create_group
end
end end
private def go_to_new_group
click_on 'New group'
def namespace
Runtime::Namespace
end end
end end
end end
......
...@@ -2,20 +2,19 @@ module QA ...@@ -2,20 +2,19 @@ module QA
module Page module Page
module Group module Group
class New < Page::Base class New < Page::Base
def create_group(group_name = nil, group_description = nil) def set_path(path)
if page.has_content?('New Subgroup') fill_in 'group_path', with: path
click_on 'New Subgroup'
else
click_on 'New group'
end end
group_name ||= Runtime::Namespace.name def set_description(description)
group_description ||= "QA test run at #{Runtime::Namespace.name}" fill_in 'group_description', with: description
end
fill_in 'group_path', with: group_name def set_visibility(visibility)
fill_in 'group_description', with: group_description choose visibility
choose 'Private' end
def create
click_button 'Create group' click_button 'Create group'
end end
end end
......
...@@ -6,8 +6,20 @@ module QA ...@@ -6,8 +6,20 @@ module QA
click_link 'Subgroups' click_link 'Subgroups'
end end
def go_to_subgroup(name)
click_link name
end
def has_subgroup?(name)
page.has_link?(name)
end
def go_to_new_subgroup
click_on 'New Subgroup'
end
def go_to_new_project def go_to_new_project
click_link 'New Project' click_on 'New Project'
end end
end end
end end
......
require 'securerandom'
module QA
module Scenario
module Gitlab
module Group
class Create < Scenario::Template
attr_writer :path, :description
def initialize
@path = Runtime::Namespace.name
@description = "QA test run at #{Runtime::Namespace.time}"
end
def perform
Page::Group::New.perform do |group|
group.set_path(@path)
group.set_description(@description)
group.set_visibility('Private')
group.create
end
end
end
end
end
end
end
...@@ -14,8 +14,21 @@ module QA ...@@ -14,8 +14,21 @@ module QA
def perform def perform
Scenario::Gitlab::Sandbox::Prepare.perform Scenario::Gitlab::Sandbox::Prepare.perform
Page::Dashboard::Groups.act { prepare_test_namespace } Page::Group::Show.perform do |page|
Page::Group::Show.act { go_to_new_project } page.go_to_subgroups
if page.has_subgroup?(Runtime::Namespace.name)
page.go_to_subgroup(Runtime::Namespace.name)
else
page.go_to_new_subgroup
Scenario::Gitlab::Group::Create.perform do |group|
group.path = Runtime::Namespace.name
end
end
page.go_to_new_project
end
Page::Project::New.perform do |page| Page::Project::New.perform do |page|
page.choose_test_namespace page.choose_test_namespace
......
...@@ -2,19 +2,24 @@ module QA ...@@ -2,19 +2,24 @@ module QA
module Scenario module Scenario
module Gitlab module Gitlab
module Sandbox module Sandbox
# Ensure we're in our sandbox namespace, either by navigating to it or
# by creating it if it doesn't yet exist
class Prepare < Scenario::Template class Prepare < Scenario::Template
def perform def perform
Page::Main::Menu.act { go_to_groups } Page::Main::Menu.act { go_to_groups }
Page::Dashboard::Groups.perform do |page| Page::Dashboard::Groups.perform do |page|
if page.has_sandbox? if page.has_group?(Runtime::Namespace.sandbox_name)
page.go_to_sandbox page.go_to_group(Runtime::Namespace.sandbox_name)
else else
page.create_group(Runtime::Namespace.sandbox_name, "QA sandbox") page.go_to_new_group
Scenario::Gitlab::Group::Create.perform do |group|
group.path = Runtime::Namespace.sandbox_name
group.description = 'QA sandbox'
end
end end
end end
Page::Group::Show.act { go_to_subgroups }
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment