cpython/Lib/dos-8x3/test_sel.py

65 lines
1.2 KiB
Python
Raw Normal View History

# Testing select module
1997-05-08 20:14:57 -03:00
from test_support import verbose
1997-04-02 02:13:34 -04:00
import select
import os
# test some known error conditions
try:
rfd, wfd, xfd = select.select(1, 2, 3)
except TypeError:
pass
else:
print 'expected TypeError exception not raised'
class Nope:
pass
class Almost:
def fileno(self):
return 'fileno'
try:
rfd, wfd, xfd = select.select([Nope()], [], [])
except TypeError:
pass
else:
print 'expected TypeError exception not raised'
try:
rfd, wfd, xfd = select.select([Almost()], [], [])
except TypeError:
pass
else:
print 'expected TypeError exception not raised'
def test():
1997-05-08 20:14:57 -03:00
import sys
1997-05-22 17:48:03 -03:00
if sys.platform[:3] in ('win', 'mac'):
1997-05-08 20:14:57 -03:00
if verbose:
1997-05-22 17:48:03 -03:00
print "Can't test select easily on", sys.platform
1997-05-08 20:14:57 -03:00
return
1997-04-02 02:13:34 -04:00
cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do echo testing...; sleep 1; done'
p = os.popen(cmd, 'r')
for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
1997-05-08 20:14:57 -03:00
if verbose:
print 'timeout =', tout
rfd, wfd, xfd = select.select([p], [], [], tout)
1997-04-02 02:13:34 -04:00
## print rfd, wfd, xfd
if (rfd, wfd, xfd) == ([], [], []):
continue
if (rfd, wfd, xfd) == ([p], [], []):
line = p.readline()
1997-05-08 20:14:57 -03:00
if verbose:
print `line`
if not line:
1997-05-08 20:14:57 -03:00
if verbose:
print 'EOF'
break
continue
print 'Heh?'
1997-04-02 02:13:34 -04:00
p.close()
test()
1997-04-02 02:13:34 -04:00