summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/gitlab/sandbox/prepare.rb
blob: 990de456e20bd618a8e2e9e3057c9435f85214d5 (plain)
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
module QA
  module Scenario
    module Gitlab
      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
          def perform
            Page::Main::Menu.act { go_to_groups }

            Page::Dashboard::Groups.perform do |page|
              if page.has_group?(Runtime::Namespace.sandbox_name)
                page.go_to_group(Runtime::Namespace.sandbox_name)
              else
                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
      end
    end
  end
end