mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
144d32e1d6
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.
214 lines
4.9 KiB
Ruby
214 lines
4.9 KiB
Ruby
require_relative 'helper'
|
|
require "readline" unless defined?(Readline)
|
|
require "pry/input_completer"
|
|
|
|
def completer_test(bind, pry=nil, assert_flag=true)
|
|
test = proc {|symbol|
|
|
Pry::InputCompleter.new(pry || Readline, pry).call(symbol[0..-2], :target => Pry.binding_for(bind)).include?(symbol).should == assert_flag}
|
|
return proc {|*symbols| symbols.each(&test) }
|
|
end
|
|
|
|
|
|
describe Pry::InputCompleter do
|
|
before do
|
|
# The AMQP gem has some classes like this:
|
|
# pry(main)> AMQP::Protocol::Test::ContentOk.name
|
|
# => :content_ok
|
|
module SymbolyName
|
|
def self.name; :symboly_name; end
|
|
end
|
|
|
|
@before_completer = Pry.config.completer
|
|
Pry.config.completer = Pry::InputCompleter
|
|
end
|
|
|
|
after do
|
|
Pry.config.completer = @before_completer
|
|
Object.remove_const :SymbolyName
|
|
end
|
|
|
|
# another jruby hack :((
|
|
if !Pry::Helpers::BaseHelpers.jruby?
|
|
it "should not crash if there's a Module that has a symbolic name." do
|
|
expect { Pry::InputCompleter.new(Readline).call "a.to_s.", :target => Pry.binding_for(Object.new) }.not_to raise_error Exception
|
|
end
|
|
end
|
|
|
|
it 'should take parenthesis and other characters into account for symbols' do
|
|
expect { Pry::InputCompleter.new(Readline).call ":class)", :target => Pry.binding_for(Object.new) }.not_to raise_error
|
|
end
|
|
|
|
it 'should complete instance variables' do
|
|
object = Class.new.new
|
|
|
|
# set variables in appropriate scope
|
|
object.instance_variable_set(:'@name', 'Pry')
|
|
object.class.send(:class_variable_set, :'@@number', 10)
|
|
|
|
# check to see if variables are in scope
|
|
object.instance_variables.
|
|
map { |v| v.to_sym }.
|
|
include?(:'@name').should == true
|
|
|
|
object.class.class_variables.
|
|
map { |v| v.to_sym }.
|
|
include?(:'@@number').should == true
|
|
|
|
# Complete instance variables.
|
|
b = Pry.binding_for(object)
|
|
completer_test(b).call('@name', '@name.downcase')
|
|
|
|
# Complete class variables.
|
|
b = Pry.binding_for(object.class)
|
|
completer_test(b).call('@@number', '@@number.class')
|
|
|
|
end
|
|
|
|
|
|
it 'should complete for stdlib symbols' do
|
|
|
|
o = Object.new
|
|
# Regexp
|
|
completer_test(o).call('/foo/.extend')
|
|
|
|
# Array
|
|
completer_test(o).call('[1].push')
|
|
|
|
# Hash
|
|
completer_test(o).call('{"a" => "b"}.keys')
|
|
|
|
# Proc
|
|
completer_test(o).call('{2}.call')
|
|
|
|
# Symbol
|
|
completer_test(o).call(':symbol.to_s')
|
|
|
|
# Absolute Constant
|
|
completer_test(o).call('::IndexError')
|
|
end
|
|
|
|
it 'should complete for target symbols' do
|
|
o = Object.new
|
|
|
|
# Constant
|
|
module Mod
|
|
Con = 'Constant'
|
|
module Mod2
|
|
end
|
|
end
|
|
|
|
completer_test(Mod).call('Con')
|
|
|
|
# Constants or Class Methods
|
|
completer_test(o).call('Mod::Con')
|
|
|
|
# Symbol
|
|
foo = :symbol
|
|
completer_test(o).call(':symbol')
|
|
|
|
# Variables
|
|
class << o
|
|
attr_accessor :foo
|
|
end
|
|
o.foo = 'bar'
|
|
completer_test(binding).call('o.foo')
|
|
|
|
# trailing slash
|
|
Pry::InputCompleter.new(Readline).call('Mod2/', :target => Pry.binding_for(Mod)).include?('Mod2/').should == true
|
|
end
|
|
|
|
it 'should complete for arbitrary scopes' do
|
|
module Bar
|
|
@barvar = :bar
|
|
end
|
|
|
|
module Baz
|
|
@bar = Bar
|
|
@bazvar = :baz
|
|
Con = :constant
|
|
end
|
|
|
|
pry = Pry.new(:target => Baz)
|
|
pry.push_binding(Bar)
|
|
|
|
b = Pry.binding_for(Bar)
|
|
completer_test(b, pry).call("../@bazvar")
|
|
completer_test(b, pry).call('/Con')
|
|
end
|
|
|
|
it 'should complete for stdlib symbols' do
|
|
|
|
o = Object.new
|
|
# Regexp
|
|
completer_test(o).call('/foo/.extend')
|
|
|
|
# Array
|
|
completer_test(o).call('[1].push')
|
|
|
|
# Hash
|
|
completer_test(o).call('{"a" => "b"}.keys')
|
|
|
|
# Proc
|
|
completer_test(o).call('{2}.call')
|
|
|
|
# Symbol
|
|
completer_test(o).call(':symbol.to_s')
|
|
|
|
# Absolute Constant
|
|
completer_test(o).call('::IndexError')
|
|
end
|
|
|
|
it 'should complete for target symbols' do
|
|
o = Object.new
|
|
|
|
# Constant
|
|
module Mod
|
|
Con = 'Constant'
|
|
module Mod2
|
|
end
|
|
end
|
|
|
|
completer_test(Mod).call('Con')
|
|
|
|
# Constants or Class Methods
|
|
completer_test(o).call('Mod::Con')
|
|
|
|
# Symbol
|
|
foo = :symbol
|
|
completer_test(o).call(':symbol')
|
|
|
|
# Variables
|
|
class << o
|
|
attr_accessor :foo
|
|
end
|
|
o.foo = 'bar'
|
|
completer_test(binding).call('o.foo')
|
|
|
|
# trailing slash
|
|
Pry::InputCompleter.new(Readline).call('Mod2/', :target => Pry.binding_for(Mod)).include?('Mod2/').should == true
|
|
end
|
|
|
|
it 'should complete for arbitrary scopes' do
|
|
module Bar
|
|
@barvar = :bar
|
|
end
|
|
|
|
module Baz
|
|
@bar = Bar
|
|
@bazvar = :baz
|
|
Con = :constant
|
|
end
|
|
|
|
pry = Pry.new(:target => Baz)
|
|
pry.push_binding(Bar)
|
|
|
|
b = Pry.binding_for(Bar)
|
|
completer_test(b, pry).call("../@bazvar")
|
|
completer_test(b, pry).call('/Con')
|
|
end
|
|
|
|
it 'should not return nil in its output' do
|
|
pry = Pry.new
|
|
Pry::InputCompleter.new(Readline, pry).call("pry.", :target => binding).should_not include nil
|
|
end
|
|
end
|