Issue 9153: Run tools and demos as part of the test suite (original) (raw)

Created on 2010-07-04 15:31 by eric.araujo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg109228 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-07-04 15:32
I propose that tests and demos be run during the test suite, as a sanity check to prevent them from getting badly out of sync (see “Signs of neglect thread?” starting at http://mail.python.org/pipermail/python-dev/2010-June/101092.html) Is this a good idea?
msg109242 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-07-04 17:18
Many demos already include a self-test: $ grep '^def test(' Demo/*/*.py Demo/classes/Complex.py:def test(): Demo/classes/Dates.py:def test(firstyear, lastyear): Demo/classes/Range.py:def test(): Demo/classes/Vec.py:def test(): Demo/parser/test_parser.py:def test(): Demo/pdist/FSProxy.py:def test(): Demo/pdist/RCSProxy.py:def test(): Demo/pdist/cmdfw.py:def test(): Demo/pdist/cvslib.py:def test(): Demo/pdist/cvslock.py:def test(): Demo/rpc/mountclient.py:def test(): Demo/rpc/nfsclient.py:def test(): Demo/rpc/rnusersclient.py:def test(): Demo/rpc/rpc.py:def test(): Demo/scripts/markov.py:def test(): Demo/sockets/gopher.py:def test(): Demo/threads/Generator.py:def test(): Demo/threads/sync.py:def test(): Demo/turtle/tdemo_penrose.py:def test(l=200, n=4, fun=sun, startpos=(0,0), th=2): I think the first step should be to run those from regrtest. The next step would be to convert adhoc test functions into doctests or unit tests as appropriate. Step zero, however, should be to decide which demos are worth keeping and which should be removed.
msg109251 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-07-04 18:12
Yep, my idea was to add a really thin regrtest integration layer for these self-tests (which have no reason to move to Lib/tests, really), e.g. add a tests.test_demos_tools module that would import all these test functions and stuff them into a unittest test suite. I did not detail that in my report since I wanted first an agreement on the idea (i.e. a core dev setting resolution to accepted :)
msg109320 - (view) Author: Alyssa Coghlan (ncoghlan) * (Python committer) Date: 2010-07-05 14:08
Yep, a sanity check for these is a good idea, and doing it soon gives us plenty of time to work out the kinks with it before 3.2a1. It will also let us identify which ones are completely busted by the switch to Python 3 (syntax errors) and which have other issues (self-test failures).
msg124942 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-12-30 22:37
Closing; Demo/ is no more.
msg124946 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-12-31 01:52
It seems there is no easy way to test tools apart from human inspection.
History
Date User Action Args
2022-04-11 14:57:03 admin set github: 53399
2010-12-31 01:52:38 eric.araujo set nosy:georg.brandl, holdenweb, ncoghlan, belopolsky, eric.araujo, l0nwlfmessages: + title: Run tests and demos as part of the test suite -> Run tools and demos as part of the test suite
2010-12-30 22:37:35 georg.brandl set status: open -> closednosy: + georg.brandlmessages: + resolution: accepted -> out of date
2010-07-05 18:19:30 l0nwlf set nosy: + l0nwlf
2010-07-05 14:08:42 ncoghlan set resolution: acceptedmessages: + nosy: + ncoghlan
2010-07-04 18:12:11 eric.araujo set type: enhancementmessages: +
2010-07-04 17🔞07 belopolsky set nosy: + belopolskymessages: +
2010-07-04 16:56:34 eric.araujo set nosy: + holdenweb
2010-07-04 15:32:49 eric.araujo set messages: -
2010-07-04 15:32:42 eric.araujo set messages: +
2010-07-04 15:31:11 eric.araujo create