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

require 'securerandom'

module QA
  module Resource
    class Label < Base
      attr_accessor :description, :color

      attribute :title

      attribute :project do
        Project.fabricate! do |resource|
          resource.name = 'project-with-label'
        end
      end

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

      def fabricate!
        project.visit!

        Page::Project::Menu.perform(&:go_to_labels)
        Page::Label::Index.perform(&:go_to_new_label)

        Page::Label::New.perform do |page|
          page.fill_title(@title)
          page.fill_description(@description)
          page.fill_color(@color)
          page.create_label
        end
      end
    end
  end
end