issue #8687: provides a test suite for sched.py module

This commit is contained in:
Giampaolo Rodolà 2010-08-04 09:28:05 +00:00
parent 934abddaec
commit b5c23761d3
3 changed files with 85 additions and 1 deletions

80
Lib/test/test_sched.py Normal file
View File

@ -0,0 +1,80 @@
#!/usr/bin/env python
import sched
import time
import unittest
from test import support
class TestCase(unittest.TestCase):
def test_enter(self):
l = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
for x in [0.05, 0.04, 0.03, 0.02, 0.01]:
z = scheduler.enter(x, 1, fun, (x,))
scheduler.run()
self.assertEqual(l, [0.01, 0.02, 0.03, 0.04, 0.05])
def test_enterabs(self):
l = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
for x in [0.05, 0.04, 0.03, 0.02, 0.01]:
z = scheduler.enterabs(x, 1, fun, (x,))
scheduler.run()
self.assertEqual(l, [0.01, 0.02, 0.03, 0.04, 0.05])
def test_priority(self):
l = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
for priority in [1, 2, 3, 4, 5]:
z = scheduler.enter(0.01, priority, fun, (priority,))
scheduler.run()
self.assertEqual(l, [1, 2, 3, 4, 5])
def test_cancel(self):
l = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
event1 = scheduler.enter(0.01, 1, fun, (0.01,))
event2 = scheduler.enter(0.02, 1, fun, (0.02,))
event3 = scheduler.enter(0.03, 1, fun, (0.03,))
event4 = scheduler.enter(0.04, 1, fun, (0.04,))
event5 = scheduler.enter(0.05, 1, fun, (0.05,))
scheduler.cancel(event1)
scheduler.cancel(event5)
scheduler.run()
self.assertEqual(l, [0.02, 0.03, 0.04])
def test_empty(self):
l = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
self.assertTrue(scheduler.empty())
for x in [0.05, 0.04, 0.03, 0.02, 0.01]:
z = scheduler.enterabs(x, 1, fun, (x,))
self.assertFalse(scheduler.empty())
scheduler.run()
self.assertTrue(scheduler.empty())
def test_queue(self):
l = []
events = []
fun = lambda x: l.append(x)
scheduler = sched.scheduler(time.time, time.sleep)
self.assertEqual(scheduler._queue, [])
for x in [0.05, 0.04, 0.03, 0.02, 0.01]:
events.append(scheduler.enterabs(x, 1, fun, (x,)))
self.assertEqual(scheduler._queue.sort(), events.sort())
scheduler.run()
self.assertEqual(scheduler._queue, [])
def test_main():
support.run_unittest(TestCase)
if __name__ == "__main__":
test_main()

View File

@ -57,7 +57,6 @@ class TestUntestedModules(unittest.TestCase):
import pstats
import py_compile
import rlcompleter
import sched
import sndhdr
import symbol
import tabnanny

View File

@ -105,6 +105,11 @@ Tools/Demos
- Issue #8867: Fix ``Tools/scripts/serve.py`` to work with files containing
non-ASCII content.
Tests
-----
- Issue #8687: provide a test suite for sched.py module.
What's New in Python 3.2 Alpha 1?
=================================