2011-10-08 20:44:14 -04:00
|
|
|
describe "ls" do
|
2015-07-24 12:57:20 -04:00
|
|
|
describe "bug #1407" do
|
|
|
|
it "behaves as usual when a method of the same name exists." do
|
|
|
|
expect(
|
|
|
|
pry_eval("def ls; 5; end", "ls")
|
|
|
|
).to match(/self\.methods: /)
|
|
|
|
pry_eval("undef ls")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 20:44:14 -04:00
|
|
|
describe "below ceiling" do
|
|
|
|
it "should stop before Object by default" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("cd Class.new{ def goo; end }.new", "ls")).not_to match(/Object/)
|
|
|
|
expect(pry_eval("cd Class.new{ def goo; end }", "ls -M")).not_to match(/Object/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include object if -v is given" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("cd Class.new{ def goo; end }.new", "ls -m -v")).to match(/Object/)
|
|
|
|
expect(pry_eval("cd Class.new{ def goo; end }", "ls -vM")).to match(/Object/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should include super-classes by default" do
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"cd Class.new(Class.new{ def goo; end; public :goo }).new",
|
|
|
|
"ls"
|
|
|
|
)
|
|
|
|
).to match(/goo/)
|
2012-09-06 02:20:40 -04:00
|
|
|
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"cd Class.new(Class.new{ def goo; end; public :goo })",
|
|
|
|
"ls -M"
|
|
|
|
)
|
|
|
|
).to match(/goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not include super-classes when -q is given" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("cd Class.new(Class.new{ def goo; end }).new", "ls -q"))
|
|
|
|
.not_to match(/goo/)
|
|
|
|
expect(pry_eval("cd Class.new(Class.new{ def goo; end })", "ls -M -q"))
|
|
|
|
.not_to match(/goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-17 00:57:42 -05:00
|
|
|
describe "help" do
|
|
|
|
it 'should show help with -h' do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls -h")).to match(/Usage: ls/)
|
2011-12-17 00:57:42 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-24 01:58:26 -04:00
|
|
|
describe "BasicObject" do
|
|
|
|
it "should work on BasicObject" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls BasicObject.new")).to match(/BasicObject#methods:.*__send__/m)
|
2013-10-24 01:58:26 -04:00
|
|
|
end
|
2013-10-19 23:58:57 -04:00
|
|
|
|
2013-10-24 01:58:26 -04:00
|
|
|
it "should work on subclasses of BasicObject" do
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"class LessBasic < BasicObject; def jaroussky; 5; end; end",
|
|
|
|
"ls LessBasic.new"
|
|
|
|
)
|
|
|
|
).to match(/LessBasic#methods:.*jaroussky/m)
|
2013-10-19 23:58:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-05 18:32:45 -05:00
|
|
|
describe "immediates" do
|
2016-12-07 13:54:12 -05:00
|
|
|
# Ruby 2.4+
|
|
|
|
if 5.class.name == 'Integer'
|
|
|
|
it "should work on Integer" do
|
|
|
|
expect(pry_eval("ls 5")).to match(/Integer#methods:.*modulo/m)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
it "should work on Fixnum" do
|
|
|
|
expect(pry_eval("ls 5")).to match(/Fixnum#methods:.*modulo/m)
|
|
|
|
end
|
2014-02-05 18:32:45 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-17 00:57:42 -05:00
|
|
|
describe "methods" do
|
2011-10-08 20:44:14 -04:00
|
|
|
it "should show public methods by default" do
|
2012-09-06 02:20:40 -04:00
|
|
|
output = pry_eval("ls Class.new{ def goo; end; public :goo }.new")
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(output).to match(/methods: goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not show protected/private by default" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("ls -M Class.new{ def goo; end; private :goo }"))
|
|
|
|
.not_to match(/goo/)
|
|
|
|
expect(pry_eval("ls Class.new{ def goo; end; protected :goo }.new"))
|
|
|
|
.not_to match(/goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show public methods with -p" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls -p Class.new{ def goo; end }.new")).to match(/methods: goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show protected/private methods with -p" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("ls -pM Class.new{ def goo; end; protected :goo }"))
|
|
|
|
.to match(/methods: goo/)
|
|
|
|
expect(pry_eval("ls -p Class.new{ def goo; end; private :goo }.new"))
|
|
|
|
.to match(/methods: goo/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
2011-10-25 16:37:41 -04:00
|
|
|
|
|
|
|
it "should work for objects with an overridden method method" do
|
|
|
|
require 'net/http'
|
|
|
|
# This doesn't actually touch the network, promise!
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("ls Net::HTTP::Get.new('localhost')"))
|
|
|
|
.to match(/Net::HTTPGenericRequest#methods/)
|
2011-10-25 16:37:41 -04:00
|
|
|
end
|
2013-02-26 08:28:37 -05:00
|
|
|
|
2019-03-03 10:37:58 -05:00
|
|
|
it(
|
|
|
|
"should work for objects which instance_variables returns array of " \
|
|
|
|
"symbol but there is no Symbol#downcase"
|
|
|
|
) do
|
|
|
|
test_case = "class Object; alias :fg :instance_variables; " \
|
|
|
|
"def instance_variables; fg.map(&:to_sym); end end;"
|
2013-04-16 11:25:33 -04:00
|
|
|
normalize = "class Object; def instance_variables; fg; end end;"
|
|
|
|
|
|
|
|
test = lambda do
|
|
|
|
begin
|
2019-03-03 10:37:58 -05:00
|
|
|
pry_eval(
|
|
|
|
test_case, "class GeFromulate2; @flurb=1.3; end", "cd GeFromulate2", "ls"
|
|
|
|
)
|
2013-04-16 11:25:33 -04:00
|
|
|
pry_eval(normalize)
|
2019-03-02 07:13:59 -05:00
|
|
|
rescue StandardError
|
2013-04-16 11:25:33 -04:00
|
|
|
pry_eval(normalize)
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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(test).to_not raise_error
|
2013-04-16 11:25:33 -04:00
|
|
|
end
|
|
|
|
|
2013-12-23 08:53:17 -05:00
|
|
|
it "should show error message when instance is given with -M option" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect { pry_eval("ls -M String.new") }
|
|
|
|
.to raise_error(Pry::CommandError, /-M only makes sense with a Module or a Class/)
|
2013-12-23 08:53:17 -05:00
|
|
|
end
|
|
|
|
|
2018-10-06 12:58:53 -04:00
|
|
|
it "should handle classes that (pathologically) define .ancestors" do
|
|
|
|
output = pry_eval("ls Class.new{ def self.ancestors; end; def hihi; end }")
|
|
|
|
expect(output).to match(/hihi/)
|
2013-02-26 08:28:37 -05:00
|
|
|
end
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
2012-10-02 07:37:01 -04:00
|
|
|
describe 'with -l' do
|
2014-08-10 20:28:44 -04:00
|
|
|
focus 'should find locals and sort by descending size' do
|
|
|
|
result = pry_eval(Object.new, "aa = 'asdf'; bb = 'xyz'", 'ls -l')
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(result).not_to match(/=>/)
|
|
|
|
expect(result).not_to match(/0x\d{5}/)
|
|
|
|
expect(result).to match(/asdf.*xyz/m)
|
2012-10-02 07:37:01 -04:00
|
|
|
end
|
2019-02-24 17:31:59 -05:00
|
|
|
|
2012-10-02 07:37:01 -04:00
|
|
|
it 'should not list pry noise' do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval('ls -l')).not_to match(/_(?:dir|file|ex|pry|out|in)_/)
|
2012-10-02 07:37:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-02 19:13:32 -04:00
|
|
|
describe "when inside Modules" do
|
|
|
|
it "should still work" do
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"cd Module.new{ def foobie; end; public :foobie }",
|
|
|
|
"ls -M"
|
|
|
|
)
|
|
|
|
).to match(/foobie/)
|
2011-11-02 19:13:32 -04:00
|
|
|
end
|
2012-04-14 17:12:32 -04:00
|
|
|
|
|
|
|
it "should work for ivars" do
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"module StigmaT1sm; def foobie; @@gharble = 456; end; end",
|
|
|
|
"Object.new.tap{ |o| o.extend(StigmaT1sm) }.foobie",
|
|
|
|
"cd StigmaT1sm",
|
|
|
|
"ls -i"
|
|
|
|
)
|
|
|
|
).to match(/@@gharble/)
|
2012-04-14 17:12:32 -04:00
|
|
|
end
|
2012-04-17 02:28:24 -04:00
|
|
|
|
|
|
|
it "should include instance methods by default" do
|
2012-09-06 02:20:40 -04:00
|
|
|
output = pry_eval(
|
2019-02-24 17:58:57 -05:00
|
|
|
"ls Module.new{ def shinanagarns; 4; end; public :shinanagarns }"
|
|
|
|
)
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(output).to match(/shinanagarns/)
|
2012-04-17 02:28:24 -04:00
|
|
|
end
|
2013-01-27 18:33:53 -05:00
|
|
|
|
|
|
|
it "should behave normally when invoked on Module itself" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls Module")).not_to match(/Pry/)
|
2013-01-27 18:33:53 -05:00
|
|
|
end
|
2011-11-02 19:13:32 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 20:44:14 -04:00
|
|
|
describe "constants" do
|
2013-11-29 19:27:46 -05:00
|
|
|
it "works on top-level" do
|
|
|
|
toplevel_consts = pry_eval('ls -c')
|
|
|
|
[/RUBY_PLATFORM/, /ARGF/, /STDOUT/].each do |const|
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(toplevel_consts).to match(const)
|
2013-11-29 19:27:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 20:44:14 -04:00
|
|
|
it "should show constants defined on the current module" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("class TempFoo1; BARGHL = 1; end", "ls TempFoo1"))
|
|
|
|
.to match(/BARGHL/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should not show constants defined on parent modules by default" do
|
2019-03-03 10:37:58 -05:00
|
|
|
output = pry_eval(
|
|
|
|
"class TempFoo2; LHGRAB = 1; end; " \
|
|
|
|
"class TempFoo3 < TempFoo2; BARGHL = 1; end", "ls TempFoo3"
|
|
|
|
)
|
|
|
|
expect(output).not_to match(/LHGRAB/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show constants defined on ancestors with -v" do
|
2019-03-03 10:37:58 -05:00
|
|
|
output = pry_eval(
|
|
|
|
"class TempFoo4; LHGRAB = 1; end; " \
|
|
|
|
"class TempFoo5 < TempFoo4; BARGHL = 1; end", "ls -v TempFoo5"
|
|
|
|
)
|
|
|
|
expect(output).to match(/LHGRAB/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
2011-10-10 01:34:19 -04:00
|
|
|
|
|
|
|
it "should not autoload constants!" do
|
|
|
|
autoload :McflurgleTheThird, "/tmp/this-file-d000esnat-exist.rb"
|
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_eval("ls -c") }.to_not raise_error
|
2011-10-10 01:34:19 -04:00
|
|
|
end
|
2013-11-29 20:14:44 -05:00
|
|
|
|
|
|
|
it "should show constants for an object's class regardless of mixins" do
|
2019-02-24 17:31:59 -05:00
|
|
|
expect(
|
|
|
|
pry_eval(
|
|
|
|
"cd Pry.new",
|
|
|
|
"extend Module.new",
|
|
|
|
"ls -c"
|
|
|
|
)
|
|
|
|
).to match(/Method/)
|
2013-11-29 20:14:44 -05:00
|
|
|
end
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 21:13:43 -04:00
|
|
|
describe "grep" do
|
|
|
|
it "should reduce the number of outputted things" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls -c Object")).to match(/ArgumentError/)
|
|
|
|
expect(pry_eval("ls -c Object --grep Run")).not_to match(/ArgumentError/)
|
2011-10-08 21:13:43 -04:00
|
|
|
end
|
2012-06-11 09:36:16 -04:00
|
|
|
|
2011-10-08 21:13:43 -04:00
|
|
|
it "should still output matching things" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("ls -c Object --grep Run")).to match(/RuntimeError/)
|
2011-10-08 21:13:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 20:44:14 -04:00
|
|
|
describe "when no arguments given" do
|
|
|
|
describe "when at the top-level" do
|
2018-10-06 12:58:53 -04:00
|
|
|
it "should show local variables" do
|
|
|
|
expect(pry_eval("ls")).to match(/_pry_/)
|
|
|
|
expect(pry_eval("arbitrar = 1", "ls")).to match(/arbitrar/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when in a class" do
|
|
|
|
it "should show constants" do
|
2019-03-03 10:37:58 -05:00
|
|
|
output = pry_eval(
|
|
|
|
"class GeFromulate1; FOOTIFICATE=1.3; end", "cd GeFromulate1", "ls"
|
|
|
|
)
|
|
|
|
expect(output).to match(/FOOTIFICATE/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show class variables" do
|
2019-03-03 10:37:58 -05:00
|
|
|
output = pry_eval(
|
|
|
|
"class GeFromulate2; @@flurb=1.3; end", "cd GeFromulate2", "ls"
|
|
|
|
)
|
|
|
|
expect(output).to match(/@@flurb/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show methods" do
|
2019-03-03 10:37:58 -05:00
|
|
|
output = pry_eval(
|
|
|
|
"class GeFromulate3; def self.mooflight; end ; end",
|
|
|
|
"cd GeFromulate3",
|
|
|
|
"ls"
|
|
|
|
)
|
|
|
|
expect(output).to match(/mooflight/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when in an object" do
|
|
|
|
it "should show methods" do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval("cd Class.new{ def self.fooerise; end; self }", "ls"))
|
|
|
|
.to match(/fooerise/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should show instance variables" do
|
2015-03-10 16:49:29 -04:00
|
|
|
expect(pry_eval("cd Class.new", "@alphooent = 1", "ls")).to match(/@alphooent/)
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-04-01 22:25:11 -04:00
|
|
|
|
2018-11-01 12:16:35 -04:00
|
|
|
describe 'on java objects', skip: !Pry::Helpers::Platform.jruby? do
|
|
|
|
it 'should omit java-esque aliases by default' do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval('ls java.lang.Thread.current_thread'))
|
|
|
|
.to match(/\bthread_group\b/)
|
|
|
|
expect(pry_eval('ls java.lang.Thread.current_thread'))
|
|
|
|
.not_to match(/\bgetThreadGroup\b/)
|
2018-11-01 12:16:35 -04:00
|
|
|
end
|
2012-04-01 22:25:11 -04:00
|
|
|
|
2018-11-01 12:16:35 -04:00
|
|
|
it 'should include java-esque aliases if requested' do
|
2019-03-03 10:37:58 -05:00
|
|
|
expect(pry_eval('ls java.lang.Thread.current_thread -J'))
|
|
|
|
.to match(/\bthread_group\b/)
|
|
|
|
expect(pry_eval('ls java.lang.Thread.current_thread -J'))
|
|
|
|
.to match(/\bgetThreadGroup\b/)
|
2012-04-01 22:25:11 -04:00
|
|
|
end
|
|
|
|
end
|
2011-10-08 20:44:14 -04:00
|
|
|
end
|