summaryrefslogtreecommitdiff
path: root/qa/spec/factory/base_spec.rb
blob: a3ba01768192e36cd78f71e9d34a148565d3573b (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
describe QA::Factory::Base do
  describe '.fabricate!' do
    subject { Class.new(described_class) }
    let(:factory) { spy('factory') }
    let(:product) { spy('product') }

    before do
      allow(QA::Factory::Product).to receive(:new).and_return(product)
    end

    it 'instantiates the factory and calls factory method' do
      expect(subject).to receive(:new).and_return(factory)

      subject.fabricate!('something')

      expect(factory).to have_received(:fabricate!).with('something')
    end

    it 'returns fabrication product' do
      allow(subject).to receive(:new).and_return(factory)
      allow(factory).to receive(:fabricate!).and_return('something')

      result = subject.fabricate!('something')

      expect(result).to eq product
    end

    it 'yields factory before calling factory method' do
      allow(subject).to receive(:new).and_return(factory)

      subject.fabricate! do |factory|
        factory.something!
      end

      expect(factory).to have_received(:something!).ordered
      expect(factory).to have_received(:fabricate!).ordered
    end
  end

  describe '.dependency' do
    let(:dependency) { spy('dependency') }

    before do
      stub_const('Some::MyDependency', dependency)
    end

    subject do
      Class.new(described_class) do
        dependency Some::MyDependency, as: :mydep do |factory|
          factory.something!
        end
      end
    end

    it 'appends a new dependency and accessors' do
      expect(subject.dependencies).to be_one
    end

    it 'defines dependency accessors' do
      expect(subject.new).to respond_to :mydep, :mydep=
    end
  end

  describe 'building dependencies' do
    let(:dependency) { double('dependency') }
    let(:instance) { spy('instance') }

    subject do
      Class.new(described_class) do
        dependency Some::MyDependency, as: :mydep
      end
    end

    before do
      stub_const('Some::MyDependency', dependency)

      allow(subject).to receive(:new).and_return(instance)
      allow(instance).to receive(:mydep).and_return(nil)
      allow(QA::Factory::Product).to receive(:new)
    end

    it 'builds all dependencies first' do
      expect(dependency).to receive(:fabricate!).once

      subject.fabricate!
    end
  end
end