Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stub_method_calls_spec.rb « helpers « support_specs « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 837a2162bcd749639c980ed3f31be5729877f8b1 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe StubMethodCalls do
  include described_class

  let(:object) do
    Class.new do
      def self.test_method
        'test'
      end

      def self.test_method_two(response: nil)
        response || 'test_two'
      end
    end
  end

  describe '#stub_method' do
    let(:method_to_stub) { :test_method }

    it 'stubs the method response' do
      stub_method(object, method_to_stub) { true }

      expect(object.send(method_to_stub)).to eq(true)
    end

    context 'when calling it on an already stubbed method' do
      before do
        stub_method(object, method_to_stub) { false }
      end

      it 'stubs correctly' do
        stub_method(object, method_to_stub) { true }

        expect(object.send(method_to_stub)).to eq(true)
      end
    end

    context 'methods that accept arguments' do
      it 'stubs correctly' do
        stub_method(object, method_to_stub) { |a, b| a + b }

        expect(object.send(method_to_stub, 1, 2)).to eq(3)
      end

      context 'methods that use named arguments' do
        let(:method_to_stub) { :test_method_two }

        it 'stubs correctly' do
          stub_method(object, method_to_stub) { |a: 'test'| a }

          expect(object.send(method_to_stub, a: 'testing')).to eq('testing')
          expect(object.send(method_to_stub)).to eq('test')
        end

        context 'stubbing non-existent method' do
          let(:method_to_stub) { :another_method }

          it 'stubs correctly' do
            stub_method(object, method_to_stub) { |a: 'test'| a }

            expect(object.send(method_to_stub, a: 'testing')).to eq('testing')
            expect(object.send(method_to_stub)).to eq('test')
          end
        end
      end
    end
  end

  describe '#restore_original_method' do
    before do
      stub_method(object, :test_method) { true }
    end

    it 'restores original behaviour' do
      expect(object.test_method).to eq(true)

      restore_original_method(object, :test_method)

      expect(object.test_method).to eq('test')
    end

    context 'method is not stubbed' do
      specify do
        expect do
          restore_original_method(object, 'some_other_method')
        end.to raise_error(NotImplementedError, "some_other_method has not been stubbed on #{object}")
      end
    end
  end

  describe '#restore_original_methods' do
    before do
      stub_method(object, :test_method) { true }
      stub_method(object, :test_method_two) { true }
    end

    it 'restores original behaviour' do
      restore_original_methods(object)

      expect(object.test_method).to eq('test')
      expect(object.test_method_two).to eq('test_two')
    end
  end
end