summaryrefslogtreecommitdiff
path: root/qa/qa/resource/label_base.rb
blob: 14ddd0809ea0aa68da24d8af93651d371dfda4b7 (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
# frozen_string_literal: true

require 'securerandom'

module QA
  module Resource
    # Base label class for GroupLabel and ProjectLabel
    #
    class LabelBase < Base
      attr_accessor :title, :description, :color

      attribute :id
      attribute :description_html
      attribute :text_color
      attribute :subscribed

      def initialize
        @title = "qa-test-#{SecureRandom.hex(8)}"
        @description = 'This is a test label'
        @color = '#0033CC'
      end

      def fabricate!
        Page::Label::Index.perform(&:click_new_label_button)
        Page::Label::New.perform do |new_page|
          new_page.fill_title(title)
          new_page.fill_description(description)
          new_page.fill_color(color)
          new_page.click_label_create_button
        end
      end

      # Resource web url
      #
      # @param [Hash] resource
      # @return [String]
      def resource_web_url(resource)
        super
      rescue ResourceURLMissingError
        # this particular resource does not expose a web_url property
      end

      # Params for label creation
      #
      # @return [Hash]
      def api_post_body
        {
          name: title,
          color: color,
          description: description
        }
      end

      # Object comparison
      #
      # @param [QA::Resource::GroupBase] other
      # @return [Boolean]
      def ==(other)
        other.is_a?(LabelBase) && comparable_label == other.comparable_label
      end

      # Override inspect for a better rspec failure diff output
      #
      # @return [String]
      def inspect
        JSON.pretty_generate(comparable_label)
      end

      # protected

      # Return subset of fields for comparing groups
      #
      # @return [Hash]
      def comparable_label
        reload! unless api_response

        api_response.slice(
          :name,
          :description,
          :description_html,
          :color,
          :text_color,
          :subscribed
        )
      end
    end
  end
end