rspec-intercept 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 547f924b48f1ed12d2cd7674ed49f381c1f81cce
4
+ data.tar.gz: c70fe43ab938ff49e096d87e26eedc65dc24c12e
5
+ SHA512:
6
+ metadata.gz: 2f313691fd18524aa140de0ffc63c81c429497892108db00cbef0518cc8a8fdd26ecf847933d00fc8a9ba9986666c60d8399f24d1d75ccf8621cd0668039e06f
7
+ data.tar.gz: 76b51e31dccc06f8fb908203746aa550e9cffdfa909906e4ad6eaa19da9f9151a5f54512b2ee75cee0d1b2067b32493e50b089e2c0c06ce4da67726003038a66
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rspec-intercept.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Helge Rausch
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # RSpec::Intercept
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'rspec-intercept'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install rspec-intercept
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/rspec-intercept/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,64 @@
1
+ require "rspec/intercept/version"
2
+
3
+ module RSpec
4
+ module Intercept
5
+ # Public: Intercept a class method call
6
+ #
7
+ # Stubs the class method `method_name` of `klass` and passes a method object
8
+ # and the arguments into the block for the user to temper with. The user has
9
+ # to call the method object with the arguments themselves.
10
+ #
11
+ # Examples
12
+ #
13
+ # intercept(Foo, :bar) do |method, *args|
14
+ #
15
+ # # You could temper with the arguments here
16
+ #
17
+ # # Don't forget to call the original method.
18
+ # result = method.call(*args)
19
+ #
20
+ # # You could temper with the result here
21
+ #
22
+ # result
23
+ # end
24
+ #
25
+ def intercept(klass, method_name, &block)
26
+ klass.singleton_class.
27
+ send(:alias_method, :"#{method_name}_original", method_name)
28
+ allow(klass).to receive(method_name) do |*args, &received_block|
29
+ block.call(klass.method(:"#{method_name}_original"), *args, &received_block)
30
+ end
31
+ end
32
+
33
+ # Public: Intercept an instance method call
34
+ #
35
+ # Stubs the instance method `method_name` of `klass` and passes a method object
36
+ # and the arguments into the block for the user to temper with. The user has
37
+ # to call the method object with the arguments themselves.
38
+ #
39
+ # Examples
40
+ #
41
+ # intercept_any_instance_of(Foo, :bar) do |method, *args|
42
+ #
43
+ # # You could temper with the arguments here
44
+ #
45
+ # # Don't forget to call the original method.
46
+ # result = method.call(*args)
47
+ #
48
+ # # You could temper with the result here
49
+ #
50
+ # result
51
+ # end
52
+ #
53
+ def intercept_any_instance_of(klass, method_name, &block)
54
+ klass.send(:alias_method, :"#{method_name}_original", method_name)
55
+ allow_any_instance_of(klass).to receive(method_name) do |instance, *args, &received_block|
56
+ block.call(instance.method(:"#{method_name}_original"), *args, &received_block)
57
+ end
58
+ end
59
+ end
60
+ end
61
+
62
+ RSpec.configure do |config|
63
+ config.include RSpec::Intercept
64
+ end
@@ -0,0 +1,5 @@
1
+ module RSpec
2
+ module Intercept
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rspec/intercept/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rspec-intercept"
8
+ spec.version = RSpec::Intercept::VERSION
9
+ spec.authors = ["Helge Rausch"]
10
+ spec.email = ["helge@rausch.io"]
11
+ spec.summary = %q{Intercept method calls}
12
+ spec.description = %q{Intercept method calls}
13
+ spec.homepage = "http://ad2games.com/"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency "rspec-mocks", "~> 3.0"
22
+ spec.add_development_dependency "bundler", "~> 1.7"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.0"
25
+ end
@@ -0,0 +1,64 @@
1
+ class Intercepted
2
+ def foo(bar)
3
+ if block_given?
4
+ yield(bar)
5
+ else
6
+ bar
7
+ end
8
+ end
9
+
10
+ def self.foo(bar)
11
+ if block_given?
12
+ yield(bar)
13
+ else
14
+ bar
15
+ end
16
+ end
17
+ end
18
+
19
+ describe Intercepted do
20
+ describe '#intercept' do
21
+ it 'intercepts a class method call and yields the method object, the args and the block' do
22
+ strawman = double('strawman')
23
+ expect(strawman).to receive(:hit!)
24
+
25
+ intercept(Intercepted, :foo) do |method, *args, &block|
26
+ strawman.hit!
27
+ expect(args).to eq(['foo'])
28
+ expect(block.call('bar')).to eq('baz')
29
+ expect(method.call('bar', &block)).to eq('baz')
30
+ 'blah'
31
+ end
32
+
33
+ expect(
34
+ Intercepted.foo('foo') do |bar|
35
+ expect(bar).to eq('bar')
36
+ 'baz'
37
+ end
38
+ ).to eq('blah')
39
+ end
40
+ end
41
+
42
+ describe '#intercept_any_instance_of' do
43
+ it 'intercepts an instance method call and yields the method object, the args and the block' do
44
+ strawman = double('strawman')
45
+ expect(strawman).to receive(:hit!)
46
+
47
+ intercept_any_instance_of(Intercepted, :foo) do |method, *args, &block|
48
+ strawman.hit!
49
+ expect(args).to eq(['foo'])
50
+ expect(block.call('bar')).to eq('baz')
51
+ expect(method.call('bar', &block)).to eq('baz')
52
+ 'blah'
53
+ end
54
+
55
+ expect(
56
+ Intercepted.new.foo('foo') do |bar|
57
+ expect(bar).to eq('bar')
58
+ 'baz'
59
+ end
60
+ ).to eq('blah')
61
+ end
62
+ end
63
+ end
64
+
@@ -0,0 +1,11 @@
1
+ require 'rspec/intercept'
2
+
3
+ RSpec.configure do |config|
4
+ config.expect_with :rspec do |expectations|
5
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
6
+ end
7
+
8
+ config.mock_with :rspec do |mocks|
9
+ mocks.verify_partial_doubles = true
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rspec-intercept
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Helge Rausch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec-mocks
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ description: Intercept method calls
70
+ email:
71
+ - helge@rausch.io
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - lib/rspec/intercept.rb
83
+ - lib/rspec/intercept/version.rb
84
+ - rspec-intercept.gemspec
85
+ - spec/lib/rspec/intercept_spec.rb
86
+ - spec/spec_helper.rb
87
+ homepage: http://ad2games.com/
88
+ licenses:
89
+ - MIT
90
+ metadata: {}
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubyforge_project:
107
+ rubygems_version: 2.2.2
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Intercept method calls
111
+ test_files:
112
+ - spec/lib/rspec/intercept_spec.rb
113
+ - spec/spec_helper.rb