Mercurial > hg > simpypi
annotate tests/test.py @ 65:83327bc715be
make the virtualenv convenience method return more stuff
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 01 Mar 2012 18:31:52 -0800 |
parents | bb8d993376aa |
children | e62d2fddb275 |
rev | line source |
---|---|
6 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
32 | 4 doctest runner for simpypi tests |
6 | 5 """ |
6 | |
58
cd88f80d1ab1
note about changing test fixtures
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
7 # XXX could use http://blog.ianbicking.org/2010/04/02/webtest-http-testing/ |
cd88f80d1ab1
note about changing test fixtures
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
8 # vs paste.fixture.TestApp: |
cd88f80d1ab1
note about changing test fixtures
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
9 # http://pythonpaste.org/testing-applications.html |
cd88f80d1ab1
note about changing test fixtures
Jeff Hammel <jhammel@mozilla.com>
parents:
57
diff
changeset
|
10 |
6 | 11 import doctest |
64
bb8d993376aa
* convenience methods for multipart form
Jeff Hammel <jhammel@mozilla.com>
parents:
63
diff
changeset
|
12 import multipart |
6 | 13 import os |
8 | 14 import shutil |
6 | 15 import sys |
8 | 16 import tempfile |
56
2e60fb704454
add test server to the test globs
Jeff Hammel <jhammel@mozilla.com>
parents:
55
diff
changeset
|
17 import testserver |
55
143adebe4caa
install package in a virtualenv and make sure importing is sane
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
18 import virtualenv |
6 | 19 from optparse import OptionParser |
9 | 20 |
55
143adebe4caa
install package in a virtualenv and make sure importing is sane
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
21 def create_virtualenv(path): |
143adebe4caa
install package in a virtualenv and make sure importing is sane
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
22 """create a virtualenv and return the path to the python interpreter therein""" |
143adebe4caa
install package in a virtualenv and make sure importing is sane
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
23 virtualenv.create_environment(path) |
65
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
24 for scripts, ext in (('bin', ''), ('Scripts', '.exe')): |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
25 scripts = os.path.join(path, scripts) |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
26 if os.path.exists(scripts): |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
27 break |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
28 else: |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
29 raise Exception("bin/Scripts not found in %s" % path) |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
30 binaries = ['python', 'easy_install', 'pip'] |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
31 binaries = dict([(i, i + ext) for i in binaries]) |
83327bc715be
make the virtualenv convenience method return more stuff
Jeff Hammel <jhammel@mozilla.com>
parents:
64
diff
changeset
|
32 return type('virtualenv', (), binaries) |
55
143adebe4caa
install package in a virtualenv and make sure importing is sane
Jeff Hammel <jhammel@mozilla.com>
parents:
32
diff
changeset
|
33 |
6 | 34 def run_tests(raise_on_error=False, report_first=False): |
35 | |
36 # add results here | |
37 results = {} | |
38 | |
39 # doctest arguments | |
40 directory = os.path.dirname(os.path.abspath(__file__)) | |
56
2e60fb704454
add test server to the test globs
Jeff Hammel <jhammel@mozilla.com>
parents:
55
diff
changeset
|
41 extraglobs = {'here': directory, |
2e60fb704454
add test server to the test globs
Jeff Hammel <jhammel@mozilla.com>
parents:
55
diff
changeset
|
42 'create_virtualenv': create_virtualenv, |
64
bb8d993376aa
* convenience methods for multipart form
Jeff Hammel <jhammel@mozilla.com>
parents:
63
diff
changeset
|
43 'testserver': testserver.TestWSGIServer, |
bb8d993376aa
* convenience methods for multipart form
Jeff Hammel <jhammel@mozilla.com>
parents:
63
diff
changeset
|
44 'MultiPartForm': multipart.MultiPartForm |
bb8d993376aa
* convenience methods for multipart form
Jeff Hammel <jhammel@mozilla.com>
parents:
63
diff
changeset
|
45 } |
6 | 46 doctest_args = dict(extraglobs=extraglobs, raise_on_error=raise_on_error) |
47 if report_first: | |
48 doctest_args['optionflags'] = doctest.REPORT_ONLY_FIRST_FAILURE | |
49 | |
50 # gather tests | |
63
af1476a936fc
add a multipart processor so we can post damn files
Jeff Hammel <jhammel@mozilla.com>
parents:
61
diff
changeset
|
51 tests = [test for test in os.listdir(directory) |
af1476a936fc
add a multipart processor so we can post damn files
Jeff Hammel <jhammel@mozilla.com>
parents:
61
diff
changeset
|
52 if test.endswith('.txt')] |
6 | 53 |
54 # run the tests | |
55 for test in tests: | |
8 | 56 |
57 # make a temporary directory | |
58 tmpdir = tempfile.mkdtemp() | |
59 doctest_args['extraglobs']['directory'] = tmpdir | |
60 | |
6 | 61 try: |
62 results[test] = doctest.testfile(test, **doctest_args) | |
63 except doctest.DocTestFailure, failure: | |
64 raise | |
65 except doctest.UnexpectedException, failure: | |
66 raise failure.exc_info[0], failure.exc_info[1], failure.exc_info[2] | |
8 | 67 finally: |
68 if os.path.exists(tmpdir): | |
69 shutil.rmtree(tmpdir) | |
6 | 70 |
71 return results | |
72 | |
73 def main(args=sys.argv[1:]): | |
74 | |
75 # parse command line args | |
76 parser = OptionParser(description=__doc__) | |
77 parser.add_option('--raise', dest='raise_on_error', | |
78 default=False, action='store_true', | |
79 help="raise on first error") | |
80 parser.add_option('--report-first', dest='report_first', | |
81 default=False, action='store_true', | |
82 help="report the first error only (all tests will still run)") | |
83 options, args = parser.parse_args(args) | |
84 | |
85 # run the tests | |
86 results = run_tests(**options.__dict__) | |
87 if sum([i.failed for i in results.values()]): | |
88 sys.exit(1) # error | |
89 | |
90 if __name__ == '__main__': | |
91 main() | |
92 |