/usr/share/pyshared/pocketlint/formatdoctest.py is in python-pocket-lint 0.5.31-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | #!/usr/bin/python
# Copyright (C) 2009-2010 - Curtis Hovey <sinzui.is at verizon.net>
# This software is licensed under the MIT license (see the file COPYING).
"""Reformat a doctest to Launchpad style."""
from __future__ import with_statement
__metaclass__ = type
__all__ = [
'DoctestReviewer',
]
import _ast
import os
import re
import sys
from difflib import unified_diff
from doctest import DocTestParser, Example
from optparse import OptionParser
from textwrap import wrap
from contrib.pyflakes.checker import Checker
class DoctestReviewer:
"""Check and reformat doctests."""
rule_pattern = re.compile(r'([=~-])+[ ]*$')
moin_pattern = re.compile(r'^(=+)[ ](.+)[ ](=+[ ]*)$')
SOURCE = 'source'
WANT = 'want'
NARRATIVE = 'narrative'
def __init__(self, file_path, doctest, reporter=None, options=None):
self.doctest = doctest
self.file_path = file_path
self.base_dir = os.path.dirname(file_path)
self.file_name = os.path.basename(file_path)
self.blocks = []
self.block = []
self.block_method = self.preserve_block
self.code_lines = []
self.example = None
self.last_bad_indent = 0
self.has_printed_filename = False
self._reporter = reporter
self.options = options
def get_parts(self):
parser = DocTestParser()
try:
return parser.parse(self.doctest, self.file_path)
except ValueError, error:
self._print_message(str(error), 0)
return []
def _print_message(self, message, lineno):
"""Print the error message with the lineno.
:param message: The message to print.
:param lineno: The line number the message pertains to.
"""
if self._reporter is None:
if not self.has_printed_filename:
print '%s:' % self.file_path
self.has_printed_filename = True
print ' % 4s: %s' % (lineno, message)
else:
self._reporter(
int(lineno), message,
base_dir=self.base_dir, file_name=self.file_name)
def _is_formatted(self, text):
"""Return True if the text is pre-formatted, otherwise False.
:param: text a string, or a list of strings.
"""
if isinstance(text, list):
text = text[0]
return text.startswith(' ')
def _walk(self, doctest_parts):
"""Walk the doctest parts; yield the line and kind.
Yield the content of the line, and its kind (SOURCE, WANT, NARRATIVE).
SOURCE and WANT lines are stripped of indentation, SOURCE is also
stripped of the interpreter symbols.
:param doctest_parts: The output of DocTestParser.parse.
"""
for part in doctest_parts:
if part == '':
continue
if isinstance(part, Example):
self.example = part
for line in part.source.splitlines():
kind = DoctestReviewer.SOURCE
yield line, kind
for line in part.want.splitlines():
kind = DoctestReviewer.WANT
yield line, kind
else:
self.example = None
kind = DoctestReviewer.NARRATIVE
for line in part.splitlines():
yield line, kind
def _apply(self, line_methods):
"""Call each line_method for each line in the doctest.
:param line_methods: a list of methods that accept lineno, line,
and kind as arguments. Each method must return the line for
the next method to process.
"""
self.blocks = []
self.block = []
lineno = 0
previous_kind = DoctestReviewer.NARRATIVE
for line, kind in self._walk(self.get_parts()):
lineno += 1
# Some method could check if the line number is one that
# is skipped by doctest parser and increment the number again.
# line probably needs to get a \n add to it too.
self._append_source(kind, line)
if kind != previous_kind and kind != DoctestReviewer.WANT:
# The WANT block must adjoin the preceding SOURCE block.
self._store_block(previous_kind)
for method in line_methods:
line = method(lineno, line, kind, previous_kind)
if line is None:
break
if not line:
continue
self.block.append(line)
previous_kind = kind
# Capture the last block and a blank line.
self.block.append('\n')
self._store_block(previous_kind)
def _append_source(self, kind, line):
"""Update the list of source code lines seen."""
if kind == self.SOURCE:
self.code_lines.append(line)
else:
self.code_lines.append('')
def _store_block(self, kind):
"""Append the block to blocks, re-wrap unformatted narrative.
:param kind: The block's kind (SOURCE, WANT, NARRATIVE)
"""
if len(self.block) == 0:
return
block = self.block_method(kind, self.block, self.blocks)
self.blocks.append('\n'.join(block))
self.block = []
def check(self):
"""Check the doctest for style and code issues.
1. Check line lengths.
2. Check that headings are not in Moin format.
3. Check indentation.
4. Check trailing whitespace.
"""
self.code_lines = []
self.last_bad_indent = 0
self.block_method = self.preserve_block
self.example = None
self.has_printed_filename = False
self.check_source_comments()
line_checkers = [
self.check_length,
self.check_heading,
self.check_indentation,
self.check_trailing_whitespace,
]
self._apply(line_checkers)
code = '\n'.join(self.code_lines)
self.check_source_code(code)
def format(self):
"""Reformat doctest.
1. Tests are reindented to 4 spaces.
2. Simple narrative is rewrapped to 78 character width.
3. Formatted (indented) narrative is preserved.
4. Moin headings are converted to RSR =, == , and === levels.
5. There is one blank line between blocks,
6. Except for headers which have two leading blank lines.
7. All trailing whitespace is removed.
SOURCE and WANT long lines are not fixed--this is a human operation.
"""
self.code_lines = []
line_checkers = [
self.fix_trailing_whitespace,
self.fix_indentation,
self.fix_heading,
self.fix_narrative_paragraph,
]
self.block_method = self.format_block
self._apply(line_checkers)
self.block_method = self.preserve_block
return '\n\n'.join(self.blocks)
def preserve_block(self, kind, block, blocks):
"""Do nothing to the block.
:param kind: The block's kind (SOURCE, WANT, NARRATIVE)
:param block: The list of lines that should remain together.
:param blocks: The list of all collected blocks.
"""
return block
def format_block(self, kind, block, blocks):
"""Format paragraph blocks.
:param kind: The block's kind (SOURCE, WANT, NARRATIVE)
:param block: The list of lines that should remain together.
:param blocks: The list of all collected blocks.
"""
if kind != DoctestReviewer.NARRATIVE or self._is_formatted(block):
return block
try:
rules = ('===', '---', '...')
last_line = block[-1]
is_heading = last_line[0:3] in rules and last_line[-3:] in rules
except IndexError:
is_heading = False
if len(blocks) != 0 and is_heading:
# Headings should have an extra leading blank line.
block.insert(0, '')
elif is_heading:
# Do nothing. This is the first heading in the file.
pass
else:
long_line = ' '.join(block).strip()
block = wrap(long_line, 72)
return block
def check_source_comments(self):
"""Comments are not appropiate in source examples."""
for lineno, line in enumerate(self.doctest.splitlines()):
if '>>> #' in line or '... #' in line:
self._print_message(
'Comment belongs in narrative.', lineno + 1)
def is_code_comment(self, line):
"""Return True if the line is a code comment."""
comment_pattern = re.compile(r'^\s+#')
return comment_pattern.match(line) is not None
def check_length(self, lineno, line, kind, previous_kind):
"""Check the length of the line.
Each kind of line has a maximum length:
* NARRATIVE: 78 characters.
* SOURCE: 70 characters (discounting indentation and interpreter).
* WANT: 74 characters (discounting indentation).
"""
if kind == DoctestReviewer.NARRATIVE and self.is_code_comment(line):
# comments follow WANT rules because they are in code.
kind = DoctestReviewer.WANT
line = line.lstrip()
length = len(line)
if kind == DoctestReviewer.NARRATIVE and length > 78:
self._print_message('%s exceeds 78 characters.' % kind, lineno)
elif kind == DoctestReviewer.WANT and length > 74:
self._print_message('%s exceeds 78 characters.' % kind, lineno)
elif kind == DoctestReviewer.SOURCE and length > 70:
self._print_message('%s exceeds 78 characters.' % kind, lineno)
else:
# This line has a good length.
pass
return line
def check_indentation(self, lineno, line, kind, previous_kind):
"""Check the indentation of the SOURCE or WANT line."""
if kind == DoctestReviewer.NARRATIVE:
return line
if self.example.indent != 4:
if self.last_bad_indent != lineno - 1:
self._print_message('%s has bad indentation.' % kind, lineno)
self.last_bad_indent = lineno
return line
def check_trailing_whitespace(self, lineno, line, kind, previous_kind):
"""Check for the presence of trailing whitespace in the line."""
if line.endswith(' '):
self._print_message('%s has trailing whitespace.' % kind, lineno)
return line
def check_heading(self, lineno, line, kind, previous_kind):
"""Check for narrative lines that use moin headers instead of RST."""
if kind != DoctestReviewer.NARRATIVE:
return line
moin = self.moin_pattern.match(line)
if moin is not None:
self._print_message('%s uses a moin header.' % kind, lineno)
return line
def check_source_code(self, code):
"""Check for source code problems in the doctest using pyflakes.
The most common problem found are unused imports. `UndefinedName`
errors are suppressed because the test setup is not known.
"""
if code == '':
return
try:
tree = compile(
code, self.file_path, "exec", _ast.PyCF_ONLY_AST)
except (SyntaxError, IndentationError), exc:
(lineno, offset_, line) = exc[1][1:]
if line.endswith("\n"):
line = line[:-1]
self._print_message(
'Could not compile:\n %s' % line, lineno)
else:
warnings = Checker(tree)
for warning in warnings.messages:
if 'undefined name ' in str(warning):
continue
dummy, lineno, message = str(warning).split(':')
self._print_message(message.strip(), lineno)
def fix_trailing_whitespace(self, lineno, line, kind, previous_kind):
"""Return the line striped of trailing whitespace."""
return line.rstrip()
def fix_indentation(self, lineno, line, kind, previous_kind):
"""set the indentation to 4-spaces."""
if kind == DoctestReviewer.NARRATIVE:
return line
elif kind == DoctestReviewer.WANT:
return ' %s' % line
else:
if line.startswith(' '):
# This is a continuation of DoctestReviewer.SOURCE.
return ' ... %s' % line
else:
# This is a start of DoctestReviewer.SOURCE.
return ' >>> %s' % line
def fix_heading(self, lineno, line, kind, previous_kind):
"""Switch Moin headings to RST headings."""
if kind != DoctestReviewer.NARRATIVE:
return line
moin = self.moin_pattern.match(line)
if moin is None:
return line
heading_level = len(moin.group(1))
heading = moin.group(2)
rule_length = len(heading)
if heading_level == 1:
rule = '=' * rule_length
elif heading_level == 2:
rule = '-' * rule_length
else:
rule = '.' * rule_length
# Force the heading on to the block of lines.
self.block.append(heading)
return rule
def fix_narrative_paragraph(self, lineno, line, kind, previous_kind):
"""Break narrative into paragraphs."""
if kind != DoctestReviewer.NARRATIVE or len(self.block) == 0:
return line
if line == '':
# This is the start of a new paragraph in the narrative.
self._store_block(previous_kind)
if self._is_formatted(line) and not self._is_formatted(self.block):
# This line starts a pre-formatted paragraph.
self._store_block(previous_kind)
return line
def format_and_save(self, is_interactive=False):
new_doctest = self.format()
if new_doctest != self.doctest:
if is_interactive:
diff = unified_diff(
self.doctest.splitlines(), new_doctest.splitlines())
print '\n'.join(diff)
print '\n'
do_save = raw_input(
'Do you wish to save the changes? S(ave) or C(ancel)?')
else:
do_save = 'S'
if do_save.upper() == 'S':
with open(self.file_path, 'w') as doctest_file:
doctest_file.write(new_doctest)
self.doctest = new_doctest
def get_option_parser():
"""Return the option parser for this program."""
usage = "usage: %prog [options] doctest.txt"
parser = OptionParser(usage=usage)
parser.add_option(
"-f", "--format", dest="is_format", action="store_true",
help="Reformat the doctest.")
parser.add_option(
"-i", "--interactive", dest="is_interactive", action="store_true",
help="Approve each change.")
parser.set_defaults(
is_format=False,
is_interactive=False)
return parser
def main(argv=None):
"""Run the operations requested from the command line."""
if argv is None:
argv = sys.argv
parser = get_option_parser()
(options, args) = parser.parse_args(args=argv[1:])
if len(args) == 0:
parser.error("A doctest must be specified.")
for file_path in args:
with open(file_path) as doctest_file:
doctest_data = doctest_file.read()
reviewer = DoctestReviewer(file_path, doctest_data)
if options.is_format:
reviewer.format_and_save()
reviewer.check()
if __name__ == '__main__':
sys.exit(main())
|