File: stubbing_method_unnecessarily_test.rb

package info (click to toggle)
ruby-mocha 2.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,540 kB
  • sloc: ruby: 11,899; javascript: 477; makefile: 14
file content (63 lines) | stat: -rw-r--r-- 2,065 bytes parent folder | download
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
require File.expand_path('../acceptance_test_helper', __FILE__)
require 'mocha/configuration'

class StubbingMethodUnnecessarilyTest < Mocha::TestCase
  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  def test_should_allow_stubbing_method_unnecessarily
    Mocha.configure { |c| c.stubbing_method_unnecessarily = :allow }
    test_result = run_as_test do
      mock = mock('mock')
      mock.stubs(:public_method)
    end
    assert_passed(test_result)
    assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
  end

  def test_should_warn_when_stubbing_method_unnecessarily
    Mocha.configure { |c| c.stubbing_method_unnecessarily = :warn }
    test_result = run_as_test do
      mock = mock('mock')
      mock.stubs(:public_method)
    end
    assert_passed(test_result)
    assert @logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
  end

  def test_should_prevent_stubbing_method_unnecessarily
    Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
    test_result = run_as_test do
      mock = mock('mock')
      mock.stubs(:public_method)
    end
    assert_errored(test_result)
    assert test_result.error_messages.include?('Mocha::StubbingError: stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
  end

  def test_should_default_to_allow_stubbing_method_unnecessarily
    test_result = run_as_test do
      mock = mock('mock')
      mock.stubs(:public_method)
    end
    assert_passed(test_result)
    assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)')
  end

  def test_should_allow_stubbing_method_when_stubbed_method_is_invoked
    Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
    test_result = run_as_test do
      mock = mock('mock')
      mock.stubs(:public_method)
      mock.public_method
    end
    assert_passed(test_result)
  end
end