pry--pry/lib/pry/test/helper.rb

207 lines
4.7 KiB
Ruby
Raw Normal View History

require 'pry'
puts "Ruby v#{RUBY_VERSION} (#{defined?(RUBY_ENGINE) ? RUBY_ENGINE : "ruby"}), Pry v#{Pry::VERSION}, method_source v#{MethodSource::VERSION}, CodeRay v#{CodeRay::VERSION}, Slop v#{Slop::VERSION}"
2011-09-12 08:06:47 +00:00
if defined?(Bacon)
require File.join(File.expand_path(File.dirname(__FILE__)), 'bacon_helper')
end
# in case the tests call reset_defaults, ensure we reset them to
# amended (test friendly) values
class << Pry
alias_method :orig_reset_defaults, :reset_defaults
def reset_defaults
orig_reset_defaults
Pry.color = false
Pry.pager = false
Pry.config.should_load_rc = false
Pry.config.should_load_local_rc= false
Pry.config.should_load_plugins = false
Pry.config.history.should_load = false
Pry.config.history.should_save = false
Pry.config.auto_indent = false
Pry.config.hooks = Pry::Hooks.new
Pry.config.collision_warning = false
end
end
Pry.reset_defaults
# A global space for storing temporary state during tests.
Pad = OpenStruct.new
def Pad.clear
@table = {}
end
module PryTestHelpers
# inject a variable into a binding
def self.inject_var(name, value, b)
Thread.current[:__pry_local__] = value
b.eval("#{name} = Thread.current[:__pry_local__]")
ensure
Thread.current[:__pry_local__] = nil
end
def self.constant_scope(*names)
names.each do |name|
Object.remove_const name if Object.const_defined?(name)
end
yield
ensure
names.each do |name|
Object.remove_const name if Object.const_defined?(name)
end
end
def self.mri18_and_no_real_source_location?
Pry::Helpers::BaseHelpers.mri_18? && !(Method.instance_method(:source_location).owner == Method)
end
# Open a temp file and yield it to the block, closing it after
# @return [String] The path of the temp file
def self.temp_file(ext='.rb')
file = Tempfile.new(['pry', ext])
yield file
ensure
file.close(true) if file
File.unlink("#{file.path}c") if File.exists?("#{file.path}c") # rbx
end
def self.unindent(*args)
Pry::Helpers::CommandHelpers.unindent(*args)
end
end
def mock_pry(*args)
args.flatten!
binding = args.first.is_a?(Binding) ? args.shift : binding()
input = InputTester.new(*args)
output = StringIO.new
redirect_pry_io(input, output) do
binding.pry
end
output.string
end
2011-12-31 15:21:58 +00:00
def mock_command(cmd, args=[], opts={})
output = StringIO.new
ret = cmd.new(opts.merge(:output => output)).call_safely(*args)
Struct.new(:output, :return).new(output.string, ret)
end
def mock_exception(*mock_backtrace)
e = StandardError.new("mock exception")
(class << e; self; end).class_eval do
define_method(:backtrace) { mock_backtrace }
2011-01-19 08:50:45 +00:00
end
e
end
def pry_tester(*args, &block)
2012-09-09 06:12:25 +00:00
if args.length == 0 || args[0].is_a?(Hash)
args.unshift(Pry.toplevel_binding)
end
PryTester.new(*args).tap do |t|
2012-07-24 12:49:30 +00:00
(class << t; self; end).class_eval(&block) if block
2012-07-24 08:36:53 +00:00
end
end
def pry_eval(*eval_strs)
if eval_strs.first.is_a? String
2012-09-09 05:29:00 +00:00
binding = Pry.toplevel_binding
else
binding = Pry.binding_for(eval_strs.shift)
end
pry_tester(binding).eval(*eval_strs)
end
2012-07-24 08:36:53 +00:00
class PryTester
2012-07-24 12:49:30 +00:00
attr_reader :pry, :out
2012-07-24 08:36:53 +00:00
def initialize(context = TOPLEVEL_BINDING, options = {})
@pry = Pry.new(options)
2012-07-24 08:36:53 +00:00
if context
target = Pry.binding_for(context)
@pry.binding_stack << target
@pry.inject_sticky_locals(target)
2012-07-24 08:36:53 +00:00
end
2012-08-19 03:58:48 +00:00
@pry.input_array << nil # TODO: shouldn't need this
reset_output
2012-07-24 08:36:53 +00:00
end
def eval(*strs)
reset_output
2012-07-24 12:49:30 +00:00
result = nil
strs.flatten.each do |str|
str = "#{str.strip}\n"
2012-07-24 08:36:53 +00:00
if @pry.process_command(str)
result = last_command_result_or_output
2012-07-24 08:36:53 +00:00
else
2012-07-24 12:49:30 +00:00
result = @pry.evaluate_ruby(str)
2012-07-24 08:36:53 +00:00
end
2012-07-24 12:49:30 +00:00
end
result
end
2012-08-19 20:04:05 +00:00
def context=(context)
@pry.binding_stack << Pry.binding_for(context)
end
# TODO: eliminate duplication with Pry#repl
def simulate_repl
didnt_exit = nil
break_data = nil
didnt_exit = catch(:didnt_exit) do
break_data = catch(:breakout) do
yield self
throw(:didnt_exit, true)
end
nil
end
raise "Failed to exit REPL" if didnt_exit
break_data
end
2012-07-24 12:49:30 +00:00
def last_output
@out.string if @out
end
def process_command(command_str, eval_str = '')
@pry.process_command(command_str, eval_str) or raise "Not a valid command"
last_command_result_or_output
end
2012-07-24 12:49:30 +00:00
protected
def last_command_result
result = Thread.current[:__pry_cmd_result__]
result.retval if result
2012-07-24 08:36:53 +00:00
end
def last_command_result_or_output
result = last_command_result
if result != Pry::Command::VOID_VALUE
result
else
last_output
end
end
def reset_output
@out = StringIO.new
@pry.output = @out
end
2012-07-24 08:36:53 +00:00
end