* test/win32ole/test_word.rb: check word installed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
52f780c07f
commit
f18120b8a0
@ -1,3 +1,7 @@
|
|||||||
|
Sat Jul 5 20:53:18 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||||
|
|
||||||
|
* test/win32ole/test_word.rb: check word installed.
|
||||||
|
|
||||||
Sat Jul 5 16:12:54 2008 Narihiro Nakamura <authorNari@gmail.com>
|
Sat Jul 5 16:12:54 2008 Narihiro Nakamura <authorNari@gmail.com>
|
||||||
|
|
||||||
* gc.c: revert. before lazy sweep.
|
* gc.c: revert. before lazy sweep.
|
||||||
|
@ -7,39 +7,66 @@ rescue LoadError
|
|||||||
end
|
end
|
||||||
require "test/unit"
|
require "test/unit"
|
||||||
|
|
||||||
|
def word_installed?
|
||||||
|
installed = false
|
||||||
|
w = nil
|
||||||
|
if defined?(WIN32OLE)
|
||||||
|
begin
|
||||||
|
w = WIN32OLE.new('Word.Application')
|
||||||
|
installed = true
|
||||||
|
rescue
|
||||||
|
ensure
|
||||||
|
if w
|
||||||
|
w.quit
|
||||||
|
w = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return installed
|
||||||
|
end
|
||||||
|
|
||||||
if defined?(WIN32OLE)
|
if defined?(WIN32OLE)
|
||||||
class TestWIN32OLE_WITH_WORD < Test::Unit::TestCase
|
w = nil
|
||||||
|
dotest = word_installed?
|
||||||
def setup
|
if !dotest
|
||||||
begin
|
STDERR.puts("\n#{__FILE__} skipped(Microsoft Word not found.)")
|
||||||
@obj = WIN32OLE.new('Word.Application')
|
end
|
||||||
rescue WIN32OLERuntimeError
|
if dotest
|
||||||
@obj = nil
|
class TestWIN32OLE_WITH_WORD < Test::Unit::TestCase
|
||||||
|
def setup
|
||||||
|
begin
|
||||||
|
@obj = WIN32OLE.new('Word.Application')
|
||||||
|
rescue WIN32OLERuntimeError
|
||||||
|
@obj = nil
|
||||||
|
if !$skipped
|
||||||
|
$skipped = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_ole_methods
|
||||||
|
if @obj
|
||||||
|
@obj.visible = true
|
||||||
|
@obj.wordbasic.disableAutoMacros(true)
|
||||||
|
assert(true)
|
||||||
|
else
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_s_connect
|
||||||
|
if @obj
|
||||||
|
obj2 = WIN32OLE.connect("Word.Application")
|
||||||
|
assert_instance_of(WIN32OLE, obj2)
|
||||||
|
obj2.visible = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def teardown
|
||||||
|
if @obj
|
||||||
|
@obj.quit
|
||||||
|
@obj = nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_ole_methods
|
|
||||||
if @obj
|
|
||||||
@obj.visible = true
|
|
||||||
@obj.wordbasic.disableAutoMacros(true)
|
|
||||||
assert(true)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_s_connect
|
|
||||||
if @obj
|
|
||||||
obj2 = WIN32OLE.connect("Word.Application")
|
|
||||||
assert_instance_of(WIN32OLE, obj2)
|
|
||||||
obj2.visible = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def teardown
|
|
||||||
if @obj
|
|
||||||
@obj.quit
|
|
||||||
@obj = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user