summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReginald Tan <redge.tan@gmail.com>2012-05-02 22:29:17 -0400
committerReginald Tan <redge.tan@gmail.com>2012-05-23 20:42:16 -0400
commit21553e3dda02ec44d859f402ee72ca00deed0f26 (patch)
tree755d95544b1a24afb3628a85e41ca2a7a1d99b60 /test
parent7bd1f9b748df78dbc2e7021fa337c1e712068491 (diff)
downloadmethod_source-21553e3dda02ec44d859f402ee72ca00deed0f26.tar.gz
If displaying method source fails for *_evaled methods, retry again.
This time, assume inside eval string and simulate interpolation of #{} by replacing with a placeholder when doing syntax validation Only works if *_eval contains the arguments filename and lineno + 1. Without them, UnboundMethod#source_location would not return the proper filename and lineno needed to display the source.
Diffstat (limited to 'test')
-rw-r--r--test/test.rb15
-rw-r--r--test/test_helper.rb48
2 files changed, 62 insertions, 1 deletions
diff --git a/test/test.rb b/test/test.rb
index 425e56a..7e598ef 100644
--- a/test/test.rb
+++ b/test/test.rb
@@ -33,6 +33,10 @@ describe MethodSource do
@lambda_comment = "# This is a comment for MyLambda\n"
@lambda_source = "MyLambda = lambda { :lambda }\n"
@proc_source = "MyProc = Proc.new { :proc }\n"
+ @hello_instance_evaled_source = " def hello_\#{name}(*args)\n send_mesg(:\#{name}, *args)\n end\n"
+ @hello_instance_evaled_source_2 = " def \#{name}_two()\n if 44\n 45\n end\n end\n"
+ @hello_class_evaled_source = " def hello_\#{name}(*args)\n send_mesg(:\#{name}, *args)\n end\n"
+ @hi_module_evaled_source = " def hi_\#{name}\n @var = \#{name}\n end\n"
end
it 'should define methods on Method and UnboundMethod and Proc' do
@@ -58,11 +62,20 @@ describe MethodSource do
$o.method(:hello).source.should == @hello_singleton_source
end
-
it 'should return a comment for method' do
method(:hello).comment.should == @hello_comment
end
+ it 'should return source for an *_evaled method' do
+ M.method(:hello_name).source.should == @hello_instance_evaled_source
+ M.method(:name_two).source.should == @hello_instance_evaled_source_2
+ M.instance_method(:hello_name).source.should == @hello_class_evaled_source
+ M.instance_method(:hi_name).source.should == @hi_module_evaled_source
+ end
+
+ it "should raise error for evaled methods that do not pass __FILE__ and __LINE__ + 1 as its arguments" do
+ lambda { M.instance_method(:name_three).source }.should.raise RuntimeError
+ end
if !is_rbx?
it 'should raise for C methods' do
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 53da4e5..3aabdf1 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -48,3 +48,51 @@ def comment_test5; end
MyLambda = lambda { :lambda }
MyProc = Proc.new { :proc }
+
+name = "name"
+
+M.instance_eval <<-METHOD, __FILE__, __LINE__ + 1
+ def hello_#{name}(*args)
+ send_mesg(:#{name}, *args)
+ end
+METHOD
+
+M.class_eval <<-METHOD, __FILE__, __LINE__ + 1
+ def hello_#{name}(*args)
+ send_mesg(:#{name}, *args)
+ end
+METHOD
+
+# module_eval to DRY code up
+#
+M.module_eval <<-METHOD, __FILE__, __LINE__ + 1
+
+ # module_eval is used here
+ #
+ def hi_#{name}
+ @var = #{name}
+ end
+METHOD
+
+# case where 2 methods are defined inside an _eval block
+#
+M.instance_eval <<EOF, __FILE__, __LINE__ + 1
+
+ def #{name}_one()
+ if 43
+ 44
+ end
+ end
+
+
+ def #{name}_two()
+ if 44
+ 45
+ end
+ end
+EOF
+
+# class_eval without filename and lineno + 1 parameter
+
+M.class_eval "def #{name}_three; @tempfile.#{name}; end"
+