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

sandbox.rb « resource « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18526448b003aab37cf90be54d3c86c2da8d7f23 (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
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
# frozen_string_literal: true

module QA
  module Resource
    ##
    # Ensure we're in our sandbox namespace, either by navigating to it or by
    # creating it if it doesn't yet exist.
    #
    class Sandbox < GroupBase
      class << self
        # Force top level group creation via UI if test is executed on dot_com environment
        def fabricate!(*args, &prepare_block)
          if Specs::Helpers::ContextSelector.dot_com? || QA::Support::FIPS.enabled?
            return fabricate_via_browser_ui!(*args, &prepare_block)
          end

          fabricate_via_api!(*args, &prepare_block)
        rescue NotImplementedError
          fabricate_via_browser_ui!(*args, &prepare_block)
        end
      end

      def initialize
        @path = Runtime::Namespace.sandbox_name
        # Visibility should be public by default for backward compatibility
        @visibility = 'public'
      end

      alias_method :full_path, :path

      def fabricate!
        Flow::Login.sign_in_unless_signed_in

        Page::Main::Menu.perform(&:go_to_groups)

        Page::Dashboard::Groups.perform do |groups_page|
          if groups_page.has_group?(path)
            groups_page.click_group(path)
          else
            groups_page.click_new_group

            Page::Group::New.perform do |group|
              group.click_create_group
              group.set_path(path)
              group.set_visibility(@visibility)
              group.create
            end

            @id = Page::Group::Show.perform(&:group_id)
          end
        end
      end

      def fabricate_via_api!
        resource_web_url(api_get)
      rescue ResourceNotFoundError
        super
      end

      def api_get_path
        "/groups/#{path}"
      end

      # Parameters included in the query URL
      #
      # @return [Hash]
      def query_parameters
        super.merge({ with_projects: false })
      end

      def api_post_body
        {
          path: path,
          name: path,
          visibility: @visibility.downcase,
          avatar: avatar
        }
      end

      def update_group_setting(group_setting:, value:)
        response = put(Runtime::API::Request.new(api_client, api_put_path).url, { "#{group_setting}": value })
        return if response.code == HTTP_STATUS_OK

        raise(
          ResourceUpdateFailedError,
          "Could not update #{group_setting} to #{value}. Request returned (#{response.code}): `#{response}`."
        )
      end
    end
  end
end