2013-01-12 16:13:18 -05:00
|
|
|
# This command needs a TONNE more tests for it, but i can't figure out
|
|
|
|
# how to do them yet, and i really want to release. Sorry. Someone
|
|
|
|
# come along and do a better job.
|
|
|
|
|
2014-03-14 00:31:24 -04:00
|
|
|
require_relative '../helper'
|
2012-09-15 17:50:15 -04:00
|
|
|
|
|
|
|
describe "play" do
|
|
|
|
before do
|
2013-01-18 02:56:07 -05:00
|
|
|
@o = Object.new
|
|
|
|
@t = pry_tester(@o)
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-11-30 22:22:16 -05:00
|
|
|
describe "with an argument" do
|
|
|
|
|
2013-01-08 19:39:02 -05:00
|
|
|
# can't think of a f*cking way to test this!!
|
|
|
|
describe "implied file" do
|
|
|
|
# it 'should play from the file associated with the current binding' do
|
|
|
|
# # require 'fixtures/play_helper'
|
|
|
|
# end
|
2012-11-30 22:22:16 -05:00
|
|
|
|
|
|
|
|
2013-01-08 19:39:02 -05:00
|
|
|
# describe "integer" do
|
|
|
|
# it "should process one line from _pry_.last_file" do
|
|
|
|
# @t.process_command 'play --lines 1', @eval_str
|
|
|
|
# @eval_str.should =~ /bing = :bing\n/
|
|
|
|
# end
|
|
|
|
# end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2013-01-08 19:39:02 -05:00
|
|
|
# describe "range" do
|
|
|
|
# it "should process multiple lines at once from _pry_.last_file" do
|
|
|
|
# @t.process_command 'play --lines 1..3', @eval_str
|
|
|
|
# [/bing = :bing\n/, /bang = :bang\n/, /bong = :bong\n/].each { |str|
|
|
|
|
# @eval_str.should =~ str
|
|
|
|
# }
|
|
|
|
# end
|
2012-11-30 22:22:16 -05:00
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2013-12-12 04:01:23 -05:00
|
|
|
describe "playing a file" do
|
|
|
|
it 'should play a file' do
|
|
|
|
@t.process_command 'play spec/fixtures/whereami_helper.rb'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR)
|
2013-12-12 04:01:23 -05:00
|
|
|
class Cor
|
|
|
|
def a; end
|
|
|
|
def b; end
|
|
|
|
def c; end
|
|
|
|
def d; end
|
|
|
|
end
|
|
|
|
STR
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
it 'should output file contents with print option' do
|
|
|
|
@t.process_command 'play --print spec/fixtures/whereami_helper.rb'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.last_output.should eq unindent(<<-STR)
|
2013-12-12 04:01:23 -05:00
|
|
|
1: class Cor
|
|
|
|
2: def a; end
|
|
|
|
3: def b; end
|
|
|
|
4: def c; end
|
|
|
|
5: def d; end
|
|
|
|
6: end
|
|
|
|
STR
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-12 16:13:18 -05:00
|
|
|
describe "whatever" do
|
2012-11-30 22:49:27 -05:00
|
|
|
before do
|
|
|
|
def @o.test_method
|
|
|
|
:test_method_content
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-11-30 22:49:27 -05:00
|
|
|
it 'should play documentation with the -d switch' do
|
2015-01-23 04:30:41 -05:00
|
|
|
@o.singleton_class.send :remove_method, :test_method
|
|
|
|
|
2012-11-30 22:49:27 -05:00
|
|
|
# @v = 10
|
|
|
|
# @y = 20
|
|
|
|
def @o.test_method
|
|
|
|
:test_method_content
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2012-12-18 03:53:26 -05:00
|
|
|
@t.process_command 'play -d test_method'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR)
|
2012-11-30 22:49:27 -05:00
|
|
|
@v = 10
|
|
|
|
@y = 20
|
|
|
|
STR
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2012-11-30 22:49:27 -05:00
|
|
|
it 'should restrict -d switch with --lines' do
|
2015-01-23 04:30:41 -05:00
|
|
|
@o.singleton_class.send :remove_method, :test_method
|
|
|
|
|
2012-11-30 22:49:27 -05:00
|
|
|
# @x = 0
|
|
|
|
# @v = 10
|
|
|
|
# @y = 20
|
|
|
|
# @z = 30
|
|
|
|
def @o.test_method
|
|
|
|
:test_method_content
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2012-12-18 03:53:26 -05:00
|
|
|
@t.process_command 'play -d test_method --lines 2..3'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR)
|
2012-11-30 22:49:27 -05:00
|
|
|
@v = 10
|
|
|
|
@y = 20
|
|
|
|
STR
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2013-01-12 16:13:18 -05:00
|
|
|
it 'has pretty error messages when -d cant find object' 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 { @t.process_command "play -d sdfsdf" }.to raise_error(Pry::CommandError, /Cannot locate/)
|
2013-01-12 16:13:18 -05:00
|
|
|
end
|
|
|
|
|
2013-01-07 17:12:10 -05:00
|
|
|
it 'should play a method (a single line)' do
|
2013-01-18 02:56:07 -05:00
|
|
|
@t.process_command 'play test_method --lines 2'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq ":test_method_content\n"
|
2013-01-12 16:15:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should properly reindent lines' do
|
2015-01-23 04:30:41 -05:00
|
|
|
@o.singleton_class.send :remove_method, :test_method
|
|
|
|
|
2013-01-12 16:15:51 -05:00
|
|
|
def @o.test_method
|
|
|
|
'hello world'
|
|
|
|
end
|
|
|
|
|
2013-01-18 02:56:07 -05:00
|
|
|
@t.process_command 'play test_method --lines 2'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq "'hello world'\n"
|
2012-11-30 22:49:27 -05:00
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2013-01-07 17:12:10 -05:00
|
|
|
it 'should APPEND to the input buffer when playing a method line, not replace it' do
|
2013-01-18 02:56:07 -05:00
|
|
|
@t.eval_string = unindent(<<-STR)
|
2012-11-30 22:49:27 -05:00
|
|
|
def another_test_method
|
|
|
|
STR
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2013-01-18 02:56:07 -05:00
|
|
|
@t.process_command 'play test_method --lines 2'
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR)
|
2012-11-30 22:49:27 -05:00
|
|
|
def another_test_method
|
|
|
|
:test_method_content
|
|
|
|
STR
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
|
2013-01-12 16:15:51 -05:00
|
|
|
it 'should play a method (multiple lines)' do
|
2015-01-23 04:30:41 -05:00
|
|
|
@o.singleton_class.send :remove_method, :test_method
|
|
|
|
|
2012-11-30 22:49:27 -05:00
|
|
|
def @o.test_method
|
|
|
|
@var0 = 10
|
|
|
|
@var1 = 20
|
|
|
|
@var2 = 30
|
|
|
|
@var3 = 40
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
|
2013-01-18 02:56:07 -05:00
|
|
|
@t.process_command 'play test_method --lines 3..4'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR, 0)
|
2012-11-30 22:49:27 -05:00
|
|
|
@var1 = 20
|
|
|
|
@var2 = 30
|
|
|
|
STR
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
2013-01-12 16:13:18 -05:00
|
|
|
|
2013-01-14 11:06:08 -05:00
|
|
|
describe "play -i" do
|
|
|
|
it 'should play multi-ranged input expressions' do
|
|
|
|
a = b = c = d = e = 0
|
|
|
|
redirect_pry_io(InputTester.new('a += 1', 'b += 1',
|
|
|
|
'c += 1', 'd += 1', 'e += 1',
|
|
|
|
"play -i 1..3"), StringIO.new) do
|
|
|
|
binding.pry
|
|
|
|
end
|
|
|
|
|
2015-01-23 04:30:41 -05:00
|
|
|
[a, b, c].all? { |v| v.should eq 2 }
|
|
|
|
d.should eq 1
|
|
|
|
e.should eq 1
|
2013-01-14 11:06:08 -05:00
|
|
|
end
|
|
|
|
end
|
2013-07-22 19:03:23 -04:00
|
|
|
|
|
|
|
describe "play -e" do
|
|
|
|
it 'should run an expression from given line number' do
|
2015-01-23 04:30:41 -05:00
|
|
|
@o.singleton_class.send :remove_method, :test_method
|
|
|
|
|
2013-07-22 19:03:23 -04:00
|
|
|
def @o.test_method
|
|
|
|
@s = [
|
|
|
|
1,2,3,
|
|
|
|
4,5,6
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
@t.process_command 'play test_method -e 2'
|
2015-01-23 04:30:41 -05:00
|
|
|
@t.eval_string.should eq unindent(<<-STR, 0)
|
2013-07-22 19:03:23 -04:00
|
|
|
@s = [
|
|
|
|
1,2,3,
|
|
|
|
4,5,6
|
|
|
|
]
|
|
|
|
STR
|
|
|
|
end
|
|
|
|
end
|
2012-09-15 17:50:15 -04:00
|
|
|
end
|
|
|
|
end
|