2006-04-04 15:31:35 -03:00
|
|
|
# Ridiculously simple test of the os.startfile function for Windows.
|
|
|
|
#
|
|
|
|
# empty.vbs is an empty file (except for a comment), which does
|
|
|
|
# nothing when run with cscript or wscript.
|
|
|
|
#
|
|
|
|
# A possible improvement would be to have empty.vbs do something that
|
|
|
|
# we can detect here, to make sure that not only the os.startfile()
|
|
|
|
# call succeeded, but also the the script actually has run.
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
from test import test_support
|
|
|
|
|
2006-04-04 15:52:27 -03:00
|
|
|
# use this form so that the test is skipped when startfile is not available:
|
2006-04-04 16:29:29 -03:00
|
|
|
from os import startfile, path
|
2006-04-04 15:31:35 -03:00
|
|
|
|
|
|
|
class TestCase(unittest.TestCase):
|
|
|
|
def test_nonexisting(self):
|
2006-04-04 15:52:27 -03:00
|
|
|
self.assertRaises(OSError, startfile, "nonexisting.vbs")
|
2006-04-04 15:31:35 -03:00
|
|
|
|
|
|
|
def test_nonexisting_u(self):
|
2006-04-04 15:52:27 -03:00
|
|
|
self.assertRaises(OSError, startfile, u"nonexisting.vbs")
|
2006-04-04 15:31:35 -03:00
|
|
|
|
|
|
|
def test_empty(self):
|
2006-04-04 16:29:29 -03:00
|
|
|
empty = path.join(path.dirname(__file__), "empty.vbs")
|
2006-04-04 15:52:27 -03:00
|
|
|
startfile(empty)
|
|
|
|
startfile(empty, "open")
|
2006-04-04 15:31:35 -03:00
|
|
|
|
|
|
|
def test_empty_u(self):
|
2006-04-04 16:29:29 -03:00
|
|
|
empty = path.join(path.dirname(__file__), "empty.vbs")
|
2006-04-04 15:52:27 -03:00
|
|
|
startfile(unicode(empty, "mbcs"))
|
|
|
|
startfile(unicode(empty, "mbcs"), "open")
|
2006-04-04 15:31:35 -03:00
|
|
|
|
|
|
|
def test_main():
|
|
|
|
test_support.run_unittest(TestCase)
|
|
|
|
|
|
|
|
if __name__=="__main__":
|
|
|
|
test_main()
|