1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
"""Tests for coverage.execfile"""
import os
from coverage.execfile import run_python_file
from coveragetest import CoverageTest
here = os.path.dirname(__file__)
class RunTest(CoverageTest):
def test_run_python_file(self):
tryfile = os.path.join(here, "try_execfile.py")
run_python_file(tryfile, [tryfile, "arg1", "arg2"])
mod_globs = eval(self.stdout())
# The file should think it is __main__
self.assertEqual(mod_globs['__name__'], "__main__")
# It should seem to come from a file named try_execfile
dunder_file = os.path.splitext(
os.path.basename(mod_globs['__file__'])
)[0]
self.assertEqual(dunder_file, "try_execfile")
# It should have its correct module data.
self.assertEqual(mod_globs['__doc__'],
"Test file for run_python_file.")
self.assertEqual(mod_globs['DATA'], "xyzzy")
self.assertEqual(mod_globs['FN_VAL'], "my_fn('fooey')")
# It must be self-importable as __main__.
self.assertEqual(mod_globs['__main__.DATA'], "xyzzy")
# Argv should have the proper values.
self.assertEqual(mod_globs['argv'], [tryfile, "arg1", "arg2"])
def test_no_c_file(self):
self.makeFile("mycode.py", """\
a = 1
b = 2
if b == 3:
c = 4
d = 5
""")
self.assert_(not os.path.exists(".coverage"))
self.run_command("coverage -x mycode.py")
self.assert_(os.path.exists(".coverage"))
|