2007-11-10 02:48:56 -05:00
|
|
|
require 'stringio'
|
|
|
|
require 'rubygems/user_interaction'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
##
|
|
|
|
# This Gem::StreamUI subclass records input and output to StringIO for
|
|
|
|
# retrieval during tests.
|
|
|
|
|
|
|
|
class Gem::MockGemUi < Gem::StreamUI
|
2012-11-29 01:52:18 -05:00
|
|
|
##
|
|
|
|
# Raised when you haven't provided enough input to your MockGemUi
|
|
|
|
|
|
|
|
class InputEOFError < RuntimeError
|
|
|
|
|
|
|
|
def initialize question
|
|
|
|
super "Out of input for MockGemUi on #{question.inspect}"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
class TermError < RuntimeError
|
|
|
|
attr_reader :exit_code
|
|
|
|
|
|
|
|
def initialize exit_code
|
|
|
|
super
|
|
|
|
@exit_code = exit_code
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class SystemExitException < RuntimeError; end
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2008-09-25 06:13:50 -04:00
|
|
|
module TTY
|
|
|
|
|
|
|
|
attr_accessor :tty
|
|
|
|
|
|
|
|
def tty?()
|
|
|
|
@tty = true unless defined?(@tty)
|
|
|
|
@tty
|
|
|
|
end
|
|
|
|
|
2010-05-09 13:26:40 -04:00
|
|
|
def noecho
|
|
|
|
yield self
|
|
|
|
end
|
2008-09-25 06:13:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(input = "")
|
|
|
|
ins = StringIO.new input
|
|
|
|
outs = StringIO.new
|
|
|
|
errs = StringIO.new
|
|
|
|
|
|
|
|
ins.extend TTY
|
|
|
|
outs.extend TTY
|
|
|
|
errs.extend TTY
|
|
|
|
|
2011-03-09 17:32:29 -05:00
|
|
|
super ins, outs, errs, true
|
2008-09-25 06:13:50 -04:00
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
@terminated = false
|
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
def ask question
|
|
|
|
raise InputEOFError, question if @ins.eof?
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
def input
|
|
|
|
@ins.string
|
|
|
|
end
|
|
|
|
|
|
|
|
def output
|
|
|
|
@outs.string
|
|
|
|
end
|
|
|
|
|
|
|
|
def error
|
|
|
|
@errs.string
|
|
|
|
end
|
|
|
|
|
|
|
|
def terminated?
|
|
|
|
@terminated
|
|
|
|
end
|
|
|
|
|
|
|
|
def terminate_interaction(status=0)
|
|
|
|
@terminated = true
|
2008-03-31 18:40:06 -04:00
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
raise TermError, status if status != 0
|
|
|
|
raise SystemExitException
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
|