summaryrefslogtreecommitdiff
path: root/qa/qa/factory/resource/group.rb
blob: 2688328df920eec46b80274016ed987439be3ce8 (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
module QA
  module Factory
    module Resource
      class Group < Factory::Base
        attr_accessor :path, :description

        dependency Factory::Resource::Sandbox, as: :sandbox

        product :id do
          true # We don't retrieve the Group ID when using the Browser UI
        end

        def initialize
          @path = Runtime::Namespace.name
          @description = "QA test run at #{Runtime::Namespace.time}"
        end

        def fabricate!
          sandbox.visit!

          Page::Group::Show.perform do |group_show|
            if group_show.has_subgroup?(path)
              group_show.go_to_subgroup(path)
            else
              group_show.go_to_new_subgroup

              Page::Group::New.perform do |group_new|
                group_new.set_path(path)
                group_new.set_description(description)
                group_new.set_visibility('Public')
                group_new.create
              end

              # Ensure that the group was actually created
              group_show.wait(time: 1) do
                group_show.has_text?(path) &&
                  group_show.has_new_project_or_subgroup_dropdown?
              end
            end
          end
        end

        def fabricate_via_api!
          resource_web_url(api_get)
        rescue ResourceNotFoundError
          super
        end

        def api_get_path
          "/groups/#{CGI.escape("#{sandbox.path}/#{path}")}"
        end

        def api_post_path
          '/groups'
        end

        def api_post_body
          {
            parent_id: sandbox.id,
            path: path,
            name: path,
            visibility: 'public'
          }
        end
      end
    end
  end
end