2008-07-25 14:49:53 +00:00
|
|
|
#
|
|
|
|
# test Win32OLE avoids cfp consistency error when the exception raised
|
|
|
|
# in WIN32OLE_EVENT handler block. [ruby-dev:35450]
|
|
|
|
#
|
|
|
|
|
|
|
|
begin
|
|
|
|
require 'win32ole'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
|
|
|
if defined?(WIN32OLE)
|
2008-08-12 04:35:13 +00:00
|
|
|
require 'mkmf'
|
|
|
|
require 'test/unit'
|
2008-07-25 14:49:53 +00:00
|
|
|
class TestErrInCallBack < Test::Unit::TestCase
|
|
|
|
def setup
|
|
|
|
@ruby = nil
|
|
|
|
if File.exist?("./" + CONFIG["RUBY_INSTALL_NAME"] + CONFIG["EXEEXT"])
|
2008-08-02 13:59:43 +00:00
|
|
|
sep = File::ALT_SEPARATOR || "/"
|
|
|
|
@ruby = "." + sep + CONFIG["RUBY_INSTALL_NAME"]
|
2008-07-25 14:49:53 +00:00
|
|
|
@iopt = $:.map {|e|
|
|
|
|
" -I " + e
|
|
|
|
}.join("")
|
2010-11-25 01:03:52 +00:00
|
|
|
@script = File.join(File.dirname(__FILE__), "err_in_callback.rb")
|
2008-07-25 14:49:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-07-23 10:13:53 +00:00
|
|
|
def available_adodb?
|
|
|
|
begin
|
|
|
|
db = WIN32OLE.new('ADODB.Connection')
|
|
|
|
rescue WIN32OLERuntimeError
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2008-07-25 14:49:53 +00:00
|
|
|
def test_err_in_callback
|
2011-07-23 10:13:53 +00:00
|
|
|
skip "'ADODB.Connection' is not available" unless available_adodb?
|
2008-07-25 14:49:53 +00:00
|
|
|
if @ruby
|
2008-11-02 13:22:42 +00:00
|
|
|
cmd = "#{@ruby} -v #{@iopt} #{@script} > test_err_in_callback.log 2>&1"
|
2008-08-02 13:59:43 +00:00
|
|
|
system(cmd)
|
|
|
|
str = ""
|
|
|
|
open("test_err_in_callback.log") {|ifs|
|
|
|
|
str = ifs.read
|
|
|
|
}
|
|
|
|
assert_match(/NameError/, str)
|
2008-07-25 14:49:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-11-02 14:10:46 +00:00
|
|
|
def teardown
|
2010-11-25 01:03:52 +00:00
|
|
|
File.unlink("test_err_in_callback.log") if File.exist?("test_err_in_callback.log")
|
2008-11-02 14:10:46 +00:00
|
|
|
end
|
2008-07-25 14:49:53 +00:00
|
|
|
end
|
|
|
|
end
|