2014-03-14 00:31:24 -04:00
|
|
|
require_relative 'helper'
|
2012-08-29 04:23:29 -04:00
|
|
|
require 'set'
|
2011-09-19 04:18:57 -04:00
|
|
|
|
|
|
|
describe Pry::Method do
|
2011-10-02 03:02:59 -04:00
|
|
|
it "should use String names for compatibility" do
|
|
|
|
klass = Class.new { def hello; end }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.new(klass.instance_method(:hello)).name).to eq "hello"
|
2011-10-02 03:02:59 -04:00
|
|
|
end
|
|
|
|
|
2011-09-19 04:18:57 -04:00
|
|
|
describe ".from_str" do
|
|
|
|
it 'should look up instance methods if no methods available and no options provided' do
|
|
|
|
klass = Class.new { def hello; end }
|
|
|
|
meth = Pry::Method.from_str(:hello, Pry.binding_for(klass))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.instance_method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up methods if no instance methods available and no options provided' do
|
|
|
|
klass = Class.new { def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str(:hello, Pry.binding_for(klass))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up instance methods first even if methods available and no options provided' do
|
|
|
|
klass = Class.new { def hello; end; def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str(:hello, Pry.binding_for(klass))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.instance_method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up instance methods if "instance-methods" option provided' do
|
|
|
|
klass = Class.new { def hello; end; def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str(:hello, Pry.binding_for(klass), {"instance-methods" => true})
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.instance_method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up methods if :methods option provided' do
|
|
|
|
klass = Class.new { def hello; end; def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str(:hello, Pry.binding_for(klass), {:methods => true})
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up instance methods using the Class#method syntax' do
|
|
|
|
klass = Class.new { def hello; end; def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str("klass#hello", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.instance_method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should look up methods using the object.method syntax' do
|
|
|
|
klass = Class.new { def hello; end; def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str("klass.hello", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq klass.method(:hello)
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should NOT look up instance methods using the Class#method syntax if no instance methods defined' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new { def self.hello; end }
|
|
|
|
meth = Pry::Method.from_str("_klass#hello", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq nil
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should NOT look up methods using the object.method syntax if no methods defined' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new { def hello; end }
|
|
|
|
meth = Pry::Method.from_str("_klass.hello", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq nil
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
2013-12-11 11:44:49 -05:00
|
|
|
it 'should look up methods using klass.new.method syntax' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new { def hello; :hello; end }
|
|
|
|
meth = Pry::Method.from_str("_klass.new.hello", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.name).to eq "hello"
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
|
|
|
|
2013-12-11 05:13:05 -05:00
|
|
|
it 'should take care of corner cases like mongo[] e.g Foo::Bar.new[]- issue 998' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new { def []; :hello; end }
|
|
|
|
meth = Pry::Method.from_str("_klass.new[]", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.name).to eq "[]"
|
2013-12-11 05:13:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should take care of cases like $ mongo[] - issue 998' do
|
2013-12-11 06:09:52 -05:00
|
|
|
f = Class.new { def []; :hello; end }.new
|
2013-12-11 05:13:05 -05:00
|
|
|
meth = Pry::Method.from_str("f[]", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth).to eq f.method(:[])
|
2013-12-11 05:13:05 -05:00
|
|
|
end
|
|
|
|
|
2011-09-19 04:18:57 -04:00
|
|
|
it 'should look up instance methods using klass.meth#method syntax' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new { def self.meth; Class.new; end }
|
|
|
|
meth = Pry::Method.from_str("_klass.meth#initialize", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.name).to eq "initialize"
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
2012-11-13 23:32:31 -05:00
|
|
|
|
|
|
|
it 'should look up methods using instance::bar syntax' do
|
2015-01-22 16:52:20 -05:00
|
|
|
_klass = Class.new{ def self.meth; Class.new; end }
|
|
|
|
meth = Pry::Method.from_str("_klass::meth", Pry.binding_for(binding))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.name).to eq "meth"
|
2012-11-13 23:32:31 -05:00
|
|
|
end
|
2012-12-22 16:45:33 -05:00
|
|
|
|
|
|
|
it 'should not raise an exception if receiver does not exist' do
|
Switch test suite to RSpec
Removes Bacon and Mocha
Reasoning explained in this comment: https://github.com/pry/pry/issues/277#issuecomment-51708712
Mostly this went smoothly. There were a few errors that I fixed along
the way, e.g. tests that were failing but for various reasons still
passed. Should have documented them, but didn't think about it until
very near the end. But generaly, I remember 2 reasons this would happen:
`lambda { raise "omg" }.should.raise(RuntimeError, /not-omg/)` will pass
because the second argument is ignored by Bacon. And `1.should == 2`
will return false instead of raising an error when it is not in an it
block (e.g. if stuck in a describe block, that would just return false)
The only one that I felt unsure about was spec/helpers/table_spec.rb
`Pry::Helpers.tablify_or_one_line('head', %w(ing)).should == 'head: ing'`
This is wrong, but was not failing because it was in a describe block
instead of an it block. In reality, it returns `"head: ing\n"`,
I updated the test to reflect this, though I don't know for sure
this is the right thing to do
This will fail on master until https://github.com/pry/pry/pull/1281 is merged.
This makes https://github.com/pry/pry/pull/1278 unnecessary.
2014-08-10 18:26:47 -04:00
|
|
|
expect { Pry::Method.from_str("random_klass.meth", Pry.binding_for(binding)) }.to_not raise_error
|
2012-12-22 16:45:33 -05:00
|
|
|
end
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|
2011-10-02 02:30:33 -04:00
|
|
|
|
2011-12-23 17:44:01 -05:00
|
|
|
describe '.from_binding' do
|
|
|
|
it 'should be able to pick a method out of a binding' do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.from_binding(Class.new{ def self.foo; binding; end }.foo).name).to eq "foo"
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should NOT find a method from the toplevel binding' do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.from_binding(TOPLEVEL_BINDING)).to eq nil
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods that have been undef'd" do
|
2013-02-02 11:45:20 -05:00
|
|
|
c = Class.new do
|
2011-12-23 17:44:01 -05:00
|
|
|
def self.bar
|
|
|
|
class << self; undef bar; end
|
|
|
|
binding
|
|
|
|
end
|
2013-02-02 11:45:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
m = Pry::Method.from_binding(c.bar)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(m.name).to eq "bar"
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Our source_location trick doesn't work, due to https://github.com/rubinius/rubinius/issues/953
|
2011-12-27 17:38:25 -05:00
|
|
|
unless Pry::Helpers::BaseHelpers.rbx?
|
2013-02-02 11:45:20 -05:00
|
|
|
it 'should find the super method correctly' do
|
|
|
|
a = Class.new{ def gag33; binding; end; def self.line; __LINE__; end }
|
|
|
|
b = Class.new(a){ def gag33; super; end }
|
2011-12-23 17:44:01 -05:00
|
|
|
|
2013-02-02 11:45:20 -05:00
|
|
|
g = b.new.gag33
|
2011-12-23 17:44:01 -05:00
|
|
|
m = Pry::Method.from_binding(g)
|
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(m.owner).to eq a
|
|
|
|
expect(m.source_line).to eq a.line
|
|
|
|
expect(m.name).to eq "gag33"
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should find the right method if a super method exists' do
|
|
|
|
a = Class.new{ def gag; binding; end; }
|
|
|
|
b = Class.new(a){ def gag; super; binding; end; def self.line; __LINE__; end }
|
|
|
|
|
|
|
|
m = Pry::Method.from_binding(b.new.gag)
|
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(m.owner).to eq b
|
|
|
|
expect(m.source_line).to eq b.line
|
|
|
|
expect(m.name).to eq "gag"
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
2012-09-23 23:54:35 -04:00
|
|
|
|
2014-01-19 23:48:31 -05:00
|
|
|
# Temporarily disabled to work around rubinius/rubinius#2871.
|
|
|
|
unless Pry::Helpers::BaseHelpers.rbx?
|
|
|
|
it "should find the right method from a BasicObject" do
|
|
|
|
a = Class.new(BasicObject) { def gag; ::Kernel.binding; end; def self.line; __LINE__; end }
|
2012-09-23 23:54:35 -04:00
|
|
|
|
2014-01-19 23:48:31 -05:00
|
|
|
m = Pry::Method.from_binding(a.new.gag)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(m.owner).to eq a
|
|
|
|
expect(m.source_file).to eq __FILE__
|
|
|
|
expect(m.source_line).to eq a.line
|
2014-01-19 23:48:31 -05:00
|
|
|
end
|
2012-09-23 23:54:35 -04:00
|
|
|
end
|
2013-02-02 11:45:20 -05:00
|
|
|
|
|
|
|
it 'should find the right method even if it was renamed and replaced' do
|
|
|
|
o = Object.new
|
|
|
|
class << o
|
|
|
|
def borscht
|
2015-01-22 16:52:20 -05:00
|
|
|
@nips = "nips"
|
2013-02-02 11:45:20 -05:00
|
|
|
binding
|
|
|
|
end
|
|
|
|
alias paella borscht
|
|
|
|
def borscht() paella end
|
|
|
|
end
|
|
|
|
|
|
|
|
m = Pry::Method.from_binding(o.borscht)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(m.source).to eq Pry::Method(o.method(:paella)).source
|
2013-02-02 11:45:20 -05:00
|
|
|
end
|
2011-12-23 17:44:01 -05:00
|
|
|
end
|
|
|
|
|
2012-02-01 01:46:59 -05:00
|
|
|
describe 'super' do
|
|
|
|
it 'should be able to find the super method on a bound method' do
|
|
|
|
a = Class.new{ def rar; 4; end }
|
|
|
|
b = Class.new(a){ def rar; super; end }
|
|
|
|
|
|
|
|
obj = b.new
|
|
|
|
|
|
|
|
zuper = Pry::Method(obj.method(:rar)).super
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(zuper.owner).to eq a
|
|
|
|
expect(zuper.receiver).to eq obj
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find the super method of an unbound method' do
|
|
|
|
a = Class.new{ def rar; 4; end }
|
|
|
|
b = Class.new(a){ def rar; super; end }
|
|
|
|
|
|
|
|
zuper = Pry::Method(b.instance_method(:rar)).super
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(zuper.owner).to eq a
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return nil if no super method exists' do
|
|
|
|
a = Class.new{ def rar; super; end }
|
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method(a.instance_method(:rar)).super).to eq nil
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find super methods defined on modules' do
|
|
|
|
m = Module.new{ def rar; 4; end }
|
|
|
|
a = Class.new{ def rar; super; end; include m }
|
|
|
|
|
|
|
|
zuper = Pry::Method(a.new.method(:rar)).super
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(zuper.owner).to eq m
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find super methods defined on super-classes when there are modules in the way' do
|
|
|
|
a = Class.new{ def rar; 4; end }
|
|
|
|
m = Module.new{ def mooo; 4; end }
|
|
|
|
b = Class.new(a){ def rar; super; end; include m }
|
|
|
|
|
|
|
|
zuper = Pry::Method(b.new.method(:rar)).super
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(zuper.owner).to eq a
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to jump up multiple levels of bound method, even through modules' do
|
|
|
|
a = Class.new{ def rar; 4; end }
|
|
|
|
m = Module.new{ def rar; 4; end }
|
|
|
|
b = Class.new(a){ def rar; super; end; include m }
|
|
|
|
|
|
|
|
zuper = Pry::Method(b.new.method(:rar)).super
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(zuper.owner).to eq m
|
|
|
|
expect(zuper.super.owner).to eq a
|
2012-02-01 01:46:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-02 02:30:33 -04:00
|
|
|
describe 'all_from_class' do
|
|
|
|
def should_find_method(name)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_class(@class).map(&:name)).to include name
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find public instance methods defined in a class' do
|
|
|
|
@class = Class.new{ def meth; 1; end }
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find private and protected instance methods defined in a class' do
|
|
|
|
@class = Class.new { protected; def prot; 1; end; private; def priv; 1; end }
|
|
|
|
should_find_method('priv')
|
|
|
|
should_find_method('prot')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should find methods all the way up to Kernel' do
|
|
|
|
@class = Class.new
|
|
|
|
should_find_method('exit!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find instance methods defined in a super-class' do
|
|
|
|
@class = Class.new(Class.new{ def meth; 1; end }) {}
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find instance methods defined in modules included into this class' do
|
|
|
|
@class = Class.new{ include Module.new{ def meth; 1; end; } }
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find instance methods defined in modules included into super-classes' do
|
|
|
|
@class = Class.new(Class.new{ include Module.new{ def meth; 1; end; } })
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should attribute overridden methods to the sub-class' do
|
|
|
|
@class = Class.new(Class.new{ include Module.new{ def meth; 1; end; } }) { def meth; 2; end }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_class(@class).detect{ |x| x.name == 'meth' }.owner).to eq @class
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find methods defined on a singleton class' do
|
|
|
|
@class = (class << Object.new; def meth; 1; end; self; end)
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find methods on super-classes when given a singleton class' do
|
|
|
|
@class = (class << Class.new{ def meth; 1; end}.new; self; end)
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'all_from_obj' do
|
|
|
|
describe 'on normal objects' do
|
|
|
|
def should_find_method(name)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@obj).map(&:name)).to include name
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined in the object's class" do
|
|
|
|
@obj = Class.new{ def meth; 1; end }.new
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined in modules included into the object's class" do
|
|
|
|
@obj = Class.new{ include Module.new{ def meth; 1; end } }.new
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined in the object's singleton class" do
|
|
|
|
@obj = Object.new
|
|
|
|
class << @obj; def meth; 1; end; end
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods in modules included into the object's singleton class" do
|
|
|
|
@obj = Object.new
|
|
|
|
@obj.extend Module.new{ def meth; 1; end }
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods all the way up to Kernel" do
|
|
|
|
@obj = Object.new
|
|
|
|
should_find_method('exit!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not find methods defined on the classes singleton class" do
|
|
|
|
@obj = Class.new{ class << self; def meth; 1; end; end }.new
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@obj).map(&:name)).not_to include 'meth'
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
2011-10-08 03:58:44 -04:00
|
|
|
|
|
|
|
it "should work in the face of an overridden send" do
|
|
|
|
@obj = Class.new{ def meth; 1; end; def send; raise EOFError; end }.new
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'on classes' do
|
|
|
|
def should_find_method(name)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@class).map(&:name)).to include name
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined in the class' singleton class" do
|
|
|
|
@class = Class.new{ class << self; def meth; 1; end; end }
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined on modules extended into the class" do
|
|
|
|
@class = Class.new{ extend Module.new{ def meth; 1; end; } }
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined on the singleton class of super-classes" do
|
|
|
|
@class = Class.new(Class.new{ class << self; def meth; 1; end; end })
|
|
|
|
should_find_method('meth')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not find methods defined within the class" do
|
|
|
|
@class = Class.new{ def meth; 1; end }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@class).map(&:name)).not_to include 'meth'
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined on Class" do
|
|
|
|
@class = Class.new
|
|
|
|
should_find_method('allocate')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should find methods defined on Kernel" do
|
|
|
|
@class = Class.new
|
|
|
|
should_find_method('exit!')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should attribute overridden methods to the sub-class' singleton class" do
|
|
|
|
@class = Class.new(Class.new{ class << self; def meth; 1; end; end }) { class << self; def meth; 1; end; end }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@class).detect{ |x| x.name == 'meth' }.owner).to eq(class << @class; self; end)
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should attrbute overridden methods to the class not the module" do
|
|
|
|
@class = Class.new { class << self; def meth; 1; end; end; extend Module.new{ def meth; 1; end; } }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@class).detect{ |x| x.name == 'meth' }.owner).to eq(class << @class; self; end)
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should attribute overridden methods to the relevant singleton class in preference to Class" do
|
|
|
|
@class = Class.new { class << self; def allocate; 1; end; end }
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.all_from_obj(@class).detect{ |x| x.name == 'allocate' }.owner).to eq(class << @class; self; end)
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-05 04:08:17 -04:00
|
|
|
|
|
|
|
describe 'method resolution order' do
|
|
|
|
module LS
|
|
|
|
class Top; end
|
|
|
|
|
|
|
|
class Next < Top; end
|
|
|
|
|
|
|
|
module M; end
|
|
|
|
module N; include M; end
|
|
|
|
module O; include M; end
|
|
|
|
module P; end
|
|
|
|
|
|
|
|
class Low < Next; include N; include P; end
|
|
|
|
class Lower < Low; extend N; end
|
|
|
|
class Bottom < Lower; extend O; end
|
|
|
|
end
|
|
|
|
|
2015-02-16 15:10:00 -05:00
|
|
|
|
|
|
|
def eigen_class(obj); class << obj; self; end; end
|
2011-10-05 04:08:17 -04:00
|
|
|
|
|
|
|
it "should look at a class and then its superclass" do
|
2015-02-16 15:10:00 -05:00
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.instance_resolution_order(LS::Next)).to eq [LS::Next] + Pry::Method.instance_resolution_order(LS::Top)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include the included modules between a class and its superclass" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.instance_resolution_order(LS::Low)).to eq [LS::Low, LS::P, LS::N, LS::M] + Pry::Method.instance_resolution_order(LS::Next)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not include modules extended into the class" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.instance_resolution_order(LS::Bottom)).to eq [LS::Bottom] + Pry::Method.instance_resolution_order(LS::Lower)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include included modules for Modules" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.instance_resolution_order(LS::O)).to eq [LS::O, LS::M]
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include the singleton class of objects" do
|
|
|
|
obj = LS::Low.new
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(obj)).to eq [eigen_class(obj)] + Pry::Method.instance_resolution_order(LS::Low)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not include singleton classes of numbers" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(4)).to eq Pry::Method.instance_resolution_order(Fixnum)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include singleton classes for classes" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(LS::Low)).to eq [eigen_class(LS::Low)] + Pry::Method.resolution_order(LS::Next)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include modules included into singleton classes" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(LS::Lower)).to eq [eigen_class(LS::Lower), LS::N, LS::M] + Pry::Method.resolution_order(LS::Low)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include modules at most once" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(LS::Bottom).count(LS::M)).to eq 1
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include modules at the point which they would be reached" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(LS::Bottom)).to eq [eigen_class(LS::Bottom), LS::O] + (Pry::Method.resolution_order(LS::Lower))
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include the Pry::Method.instance_resolution_order of Class after the singleton classes" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(Pry::Method.resolution_order(LS::Top)).to eq(
|
2015-02-16 15:10:00 -05:00
|
|
|
[eigen_class(LS::Top), eigen_class(Object), eigen_class(BasicObject),
|
2013-10-24 01:58:26 -04:00
|
|
|
*Pry::Method.instance_resolution_order(Class)]
|
2015-03-10 16:49:29 -04:00
|
|
|
)
|
2011-10-05 04:08:17 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-02 02:30:33 -04:00
|
|
|
end
|
2011-11-26 21:33:13 -05:00
|
|
|
|
|
|
|
describe 'method_name_from_first_line' do
|
|
|
|
it 'should work in all simple cases' do
|
|
|
|
meth = Pry::Method.new(nil)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.send(:method_name_from_first_line, "def x")).to eq "x"
|
|
|
|
expect(meth.send(:method_name_from_first_line, "def self.x")).to eq "x"
|
|
|
|
expect(meth.send(:method_name_from_first_line, "def ClassName.x")).to eq "x"
|
|
|
|
expect(meth.send(:method_name_from_first_line, "def obj_name.x")).to eq "x"
|
2011-11-26 21:33:13 -05:00
|
|
|
end
|
|
|
|
end
|
2012-08-29 04:23:29 -04:00
|
|
|
|
|
|
|
describe 'method aliases' do
|
|
|
|
before do
|
|
|
|
@class = Class.new {
|
|
|
|
def eat
|
|
|
|
end
|
|
|
|
|
|
|
|
alias fress eat
|
|
|
|
alias_method :omnomnom, :fress
|
|
|
|
|
|
|
|
def eruct
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to find method aliases' do
|
|
|
|
meth = Pry::Method(@class.new.method(:eat))
|
|
|
|
aliases = Set.new(meth.aliases)
|
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(aliases).to eq Set.new(["fress", "omnomnom"])
|
2012-08-29 04:23:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return an empty Array if cannot find aliases' do
|
|
|
|
meth = Pry::Method(@class.new.method(:eruct))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.aliases).to be_empty
|
2012-08-29 04:23:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not include the own name in the list of aliases' do
|
|
|
|
meth = Pry::Method(@class.new.method(:eat))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.aliases).not_to include "eat"
|
2012-08-29 04:23:29 -04:00
|
|
|
end
|
|
|
|
|
2013-11-15 21:37:42 -05:00
|
|
|
it 'should find aliases for top-level methods' do
|
|
|
|
# top-level methods get added as private instance methods on Object
|
|
|
|
class Object
|
|
|
|
private
|
|
|
|
def my_top_level_method ; end
|
|
|
|
alias my_other_top_level_method my_top_level_method
|
|
|
|
end
|
|
|
|
|
|
|
|
meth = Pry::Method.new(method(:my_top_level_method))
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(meth.aliases).to include 'my_other_top_level_method'
|
2013-11-21 18:34:19 -05:00
|
|
|
|
|
|
|
class Object
|
|
|
|
remove_method :my_top_level_method
|
|
|
|
end
|
2013-11-15 21:37:42 -05:00
|
|
|
end
|
|
|
|
|
2013-10-24 01:58:26 -04:00
|
|
|
it 'should be able to find aliases for methods implemented in C' do
|
|
|
|
meth = Pry::Method(Hash.new.method(:key?))
|
|
|
|
aliases = Set.new(meth.aliases)
|
2012-08-29 04:23:29 -04:00
|
|
|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(aliases).to eq Set.new(["include?", "member?", "has_key?"])
|
2012-08-29 04:23:29 -04:00
|
|
|
end
|
|
|
|
end
|
2011-09-19 04:18:57 -04:00
|
|
|
end
|