2007-11-10 02:48:56 -05:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
|
|
|
|
|
|
|
require 'stringio'
|
|
|
|
require 'rubygems/user_interaction'
|
|
|
|
|
|
|
|
class MockGemUi < Gem::StreamUI
|
|
|
|
class TermError < RuntimeError; end
|
|
|
|
|
2008-09-25 06:13:50 -04:00
|
|
|
module TTY
|
|
|
|
|
|
|
|
attr_accessor :tty
|
|
|
|
|
|
|
|
def tty?()
|
|
|
|
@tty = true unless defined?(@tty)
|
|
|
|
@tty
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(input = "")
|
|
|
|
ins = StringIO.new input
|
|
|
|
outs = StringIO.new
|
|
|
|
errs = StringIO.new
|
|
|
|
|
|
|
|
ins.extend TTY
|
|
|
|
outs.extend TTY
|
|
|
|
errs.extend TTY
|
|
|
|
|
|
|
|
super ins, outs, errs
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
@terminated = false
|
|
|
|
end
|
2008-03-31 18:40:06 -04:00
|
|
|
|
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
|
|
|
|
|
|
|
raise TermError
|
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
|
|
|
|