summaryrefslogtreecommitdiff
path: root/qa/qa/factory/product.rb
blob: dbe02d37f2273ac78c69a5fc4155205ddab3b271 (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
require 'capybara/dsl'

module QA
  module Factory
    class Product
      include Capybara::DSL
      attr_reader :factory

      Attribute = Struct.new(:name, :block)

      def initialize(factory)
        @factory  = factory
        @location = current_url
      end

      def visit!
        visit @location
      end

      def self.populate!(factory)
        new(factory).tap do |product|
          factory.class.attributes.each_value do |attribute|
            product.instance_exec(&attribute.block).tap do |value|
              product.define_singleton_method(attribute.name) { value }
            end
          end
        end
      end
    end
  end
end