test_select.py 1.79 KB
Newer Older
1
from test import support
Christian Heimes's avatar
Christian Heimes committed
2
import unittest
3 4
import select
import os
Christian Heimes's avatar
Christian Heimes committed
5 6
import sys

7 8
@unittest.skipIf(sys.platform[:3] in ('win', 'mac', 'os2', 'riscos'),
                 "can't easily test on this system")
Christian Heimes's avatar
Christian Heimes committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
class SelectTestCase(unittest.TestCase):

    class Nope:
        pass

    class Almost:
        def fileno(self):
            return 'fileno'

    def test_error_conditions(self):
        self.assertRaises(TypeError, select.select, 1, 2, 3)
        self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
        self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
        self.assertRaises(TypeError, select.select, [], [], [], "not a number")

24 25 26 27 28 29 30
    def test_returned_list_identity(self):
        # See issue #8329
        r, w, x = select.select([], [], [], 1)
        self.assertIsNot(r, w)
        self.assertIsNot(r, x)
        self.assertIsNot(w, x)

Christian Heimes's avatar
Christian Heimes committed
31 32 33 34
    def test_select(self):
        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:
35
            if support.verbose:
Christian Heimes's avatar
Christian Heimes committed
36 37 38 39 40 41
                print('timeout =', tout)
            rfd, wfd, xfd = select.select([p], [], [], tout)
            if (rfd, wfd, xfd) == ([], [], []):
                continue
            if (rfd, wfd, xfd) == ([p], [], []):
                line = p.readline()
42
                if support.verbose:
Christian Heimes's avatar
Christian Heimes committed
43 44
                    print(repr(line))
                if not line:
45
                    if support.verbose:
Christian Heimes's avatar
Christian Heimes committed
46 47 48 49 50 51 52
                        print('EOF')
                    break
                continue
            self.fail('Unexpected return values from select():', rfd, wfd, xfd)
        p.close()

def test_main():
53 54
    support.run_unittest(SelectTestCase)
    support.reap_children()
Christian Heimes's avatar
Christian Heimes committed
55 56 57

if __name__ == "__main__":
    test_main()