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
|
require 'mocha/metaclass'
module Mocha
class ClassMethod
attr_reader :stubbee, :method
def initialize(stubbee, method)
@stubbee, @method = stubbee, method
end
def stub
hide_original_method
define_new_method
end
def unstub
remove_new_method
restore_original_method
stubbee.reset_mocha
end
def mock
stubbee.mocha
end
def hide_original_method
if method_exists?(method)
begin
stubbee.__metaclass__.class_eval("alias_method :#{hidden_method}, :#{method}", __FILE__, __LINE__)
rescue NameError
# deal with nasties like ActiveRecord::Associations::AssociationProxy
end
end
end
def define_new_method
stubbee.__metaclass__.class_eval("def #{method}(*args, &block); mocha.method_missing(:#{method}, *args, &block); end", __FILE__, __LINE__)
end
def remove_new_method
stubbee.__metaclass__.class_eval("remove_method :#{method}", __FILE__, __LINE__)
end
def restore_original_method
if method_exists?(hidden_method)
begin
stubbee.__metaclass__.class_eval("alias_method :#{method}, :#{hidden_method}; remove_method :#{hidden_method}", __FILE__, __LINE__)
rescue NameError
# deal with nasties like ActiveRecord::Associations::AssociationProxy
end
end
end
def hidden_method
if RUBY_VERSION < '1.9'
method_name = method.to_s.gsub(/\W/) { |s| "_substituted_character_#{s[0]}_" }
else
method_name = method.to_s.gsub(/\W/) { |s| "_substituted_character_#{s.ord}_" }
end
"__stubba__#{method_name}__stubba__"
end
def eql?(other)
return false unless (other.class == self.class)
(stubbee.object_id == other.stubbee.object_id) and (method == other.method)
end
alias_method :==, :eql?
def to_s
"#{stubbee}.#{method}"
end
def method_exists?(method)
existing_methods = []
existing_methods += stubbee.public_methods(true) - stubbee.superclass.public_methods(true)
existing_methods += stubbee.protected_methods(true) - stubbee.superclass.protected_methods(true)
existing_methods += stubbee.private_methods(true) - stubbee.superclass.private_methods(true)
existing_methods.any? { |m| m.to_s == method.to_s }
end
end
end
|