summaryrefslogtreecommitdiff
path: root/qa/qa/factory/resource/label.rb
blob: 32bc519b48cfc58fcdf0913dc9b4ce62f02a64c2 (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
require 'securerandom'

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

        attribute :title

        attribute :project do
          Factory::Resource::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
end