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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
"""Core control stuff for coverage.py"""
import os, socket
from coverage.annotate import AnnotateReporter
from coverage.codeunit import code_unit_factory
from coverage.data import CoverageData
from coverage.files import FileLocator
from coverage.misc import format_lines, CoverageException
from coverage.summary import SummaryReporter
class coverage:
def __init__(self):
from coverage.collector import Collector
from coverage import __version__
self.parallel_mode = False
self.exclude_re = ''
self.nesting = 0
self.cstack = []
self.xstack = []
self.file_locator = FileLocator()
self.collector = Collector(self.should_trace)
self.data = CoverageData(collector="coverage.py v%s" % __version__)
# The default exclude pattern.
self.exclude('# *pragma[: ]*[nN][oO] *[cC][oO][vV][eE][rR]')
# Save coverage data when Python exits.
import atexit
atexit.register(self.save)
def should_trace(self, filename):
"""Decide whether to trace execution in `filename`
Returns a canonicalized filename if it should be traced, False if it
should not.
"""
if filename == '<string>':
# There's no point in ever tracing string executions, we can't do
# anything with the data later anyway.
return False
# TODO: flag: ignore std lib?
# TODO: ignore by module as well as file?
return self.file_locator.canonical_filename(filename)
def use_cache(self, usecache):
"""Control the use of a data file (incorrectly called a cache).
`usecache` is true or false, whether to read and write data on disk.
"""
self.data.usefile(usecache)
def get_ready(self):
self.collector.reset()
if self.parallel_mode:
self.data.set_suffix("%s.%s" % (socket.gethostname(), os.getpid()))
self.data.read()
def start(self):
self.get_ready()
if self.nesting == 0: #pragma: no cover
self.collector.start()
self.nesting += 1
def stop(self):
self.nesting -= 1
if self.nesting == 0: #pragma: no cover
self.collector.stop()
def erase(self):
self.get_ready()
self.collector.reset()
self.data.erase()
def exclude(self, regex):
if self.exclude_re:
self.exclude_re += "|"
self.exclude_re += "(" + regex + ")"
def begin_recursive(self):
#self.cstack.append(self.c)
self.xstack.append(self.exclude_re)
def end_recursive(self):
#self.c = self.cstack.pop()
self.exclude_re = self.xstack.pop()
def save(self):
self.group_collected_data()
self.data.write()
def combine(self):
"""Entry point for combining together parallel-mode coverage data."""
self.data.combine_parallel_data()
def group_collected_data(self):
"""Group the collected data by filename and reset the collector."""
self.data.add_line_data(self.collector.data_points())
self.collector.reset()
# Backward compatibility with version 1.
def analysis(self, morf):
f, s, _, m, mf = self.analysis2(morf)
return f, s, m, mf
def analysis2(self, morf):
code_unit = code_unit_factory(morf, self.file_locator)[0]
st, ex, m, mf = self.analyze(code_unit)
return code_unit.filename, st, ex, m, mf
def analyze(self, code_unit):
"""Analyze a single code unit.
Returns a tuple of:
- a list of lines of statements in the source code,
- a list of lines of excluded statements,
- a list of lines missing from execution, and
- a readable string of missing lines.
"""
from coverage.parser import CodeParser
filename = code_unit.filename
ext = os.path.splitext(filename)[1]
source = None
if ext == '.py':
if not os.path.exists(filename):
source = self.file_locator.get_zip_data(filename)
if not source:
raise CoverageException(
"No source for code '%s'." % code_unit.filename
)
parser = CodeParser()
statements, excluded, line_map = parser.parse_source(
text=source, filename=filename, exclude=self.exclude_re
)
self.group_collected_data()
# Identify missing statements.
missing = []
execed = self.data.executed_lines(filename)
for line in statements:
lines = line_map.get(line)
if lines:
for l in range(lines[0], lines[1]+1):
if l in execed:
break
else:
missing.append(line)
else:
if line not in execed:
missing.append(line)
return (statements, excluded, missing, format_lines(statements, missing))
def report(self, morfs, show_missing=True, ignore_errors=False, file=None):
"""Write a summary report to `file`.
Each module in `morfs` is listed, with counts of statements, executed
statements, missing statements, and a list of lines missed.
"""
reporter = SummaryReporter(self, show_missing, ignore_errors)
reporter.report(morfs, outfile=file)
def annotate(self, morfs, directory=None, ignore_errors=False):
"""Annotate a list of modules.
Each module in `morfs` is annotated. The source is written to a new
file, named with a ",cover" suffix, with each line prefixed with a
marker to indicate the coverage of the line. Covered lines have ">",
excluded lines have "-", and missing lines have "!".
"""
reporter = AnnotateReporter(self, ignore_errors)
reporter.report(morfs, directory)
|