X-Git-Url: https://git.arvados.org/rnaseq-cwl-training.git/blobdiff_plain/acb49f78a3c69a1bcb0c50e926e6a507a1ec1c3d..9be4b22988fafd16c05037f6574986725984d533:/bin/lesson_check.py diff --git a/bin/lesson_check.py b/bin/lesson_check.py index c123984..ace8de6 100755 --- a/bin/lesson_check.py +++ b/bin/lesson_check.py @@ -4,6 +4,7 @@ Check lesson files and their contents. """ +from __future__ import print_function import sys import os import glob @@ -11,7 +12,7 @@ import json import re from optparse import OptionParser -from util import Reporter, read_markdown +from util import Reporter, read_markdown, load_yaml, check_unwanted_files, require, IMAGE_FILE_SUFFIX __version__ = '0.2' @@ -40,6 +41,12 @@ REQUIRED_FILES = { # Episode filename pattern. P_EPISODE_FILENAME = re.compile(r'/_episodes/(\d\d)-[-\w]+.md$') +# Pattern to match lines ending with whitespace. +P_TRAILING_WHITESPACE = re.compile(r'\s+$') + +# Pattern to match figure references in HTML. +P_FIGURE_REFS = re.compile(r']+src="([^"]+)"[^>]*>') + # What kinds of blockquotes are allowed? KNOWN_BLOCKQUOTES = { 'callout', @@ -61,6 +68,7 @@ KNOWN_CODEBLOCKS = { 'source', 'bash', 'make', + 'matlab', 'python', 'r', 'sql' @@ -94,9 +102,11 @@ def main(): check_config(args.reporter, args.source_dir) docs = read_all_markdown(args.source_dir, args.parser) check_fileset(args.source_dir, args.reporter, docs.keys()) + check_unwanted_files(args.source_dir, args.reporter) for filename in docs.keys(): checker = create_checker(args, filename, docs[filename]) checker.check() + check_figures(args.source_dir, args.reporter) args.reporter.report() @@ -106,7 +116,8 @@ def parse_args(): parser = OptionParser() parser.add_option('-l', '--linelen', default=False, - dest='line_len', + action="store_true", + dest='line_lengths', help='Check line lengths') parser.add_option('-p', '--parser', default=None, @@ -116,6 +127,11 @@ def parse_args(): default=os.curdir, dest='source_dir', help='source directory') + parser.add_option('-w', '--whitespace', + default=False, + action="store_true", + dest='trailing_whitespace', + help='Check for trailing whitespace') args, extras = parser.parse_args() require(args.parser is not None, @@ -132,6 +148,9 @@ def check_config(reporter, source_dir): config_file = os.path.join(source_dir, '_config.yml') config = load_yaml(config_file) reporter.check_field(config_file, 'configuration', config, 'kind', 'lesson') + reporter.check_field(config_file, 'configuration', config, 'carpentry', ('swc', 'dc')) + reporter.check_field(config_file, 'configuration', config, 'title') + reporter.check_field(config_file, 'configuration', config, 'email') def read_all_markdown(source_dir, parser): @@ -188,6 +207,38 @@ def check_fileset(source_dir, reporter, filenames_present): seen) +def check_figures(source_dir, reporter): + """Check that all figures are present and referenced.""" + + # Get references. + try: + all_figures_html = os.path.join(source_dir, '_includes', 'all_figures.html') + with open(all_figures_html, 'r') as reader: + text = reader.read() + figures = P_FIGURE_REFS.findall(text) + referenced = [os.path.split(f)[1] for f in figures if '/fig/' in f] + except FileNotFoundError as e: + reporter.add(all_figures_html, + 'File not found') + return + + # Get actual image files (ignore non-image files). + fig_dir_path = os.path.join(source_dir, 'fig') + actual = [f for f in os.listdir(fig_dir_path) if os.path.splitext(f)[1] in IMAGE_FILE_SUFFIX] + + # Report differences. + unexpected = set(actual) - set(referenced) + reporter.check(not unexpected, + None, + 'Unexpected image files: {0}', + ', '.join(sorted(unexpected))) + missing = set(referenced) - set(actual) + reporter.check(not missing, + None, + 'Missing image files: {0}', + ', '.join(sorted(missing))) + + def create_checker(args, filename, info): """Create appropriate checker for file.""" @@ -196,14 +247,6 @@ def create_checker(args, filename, info): return cls(args, filename, **info) -def require(condition, message): - """Fail if condition not met.""" - - if not condition: - print(message, file=sys.stderr) - sys.exit(1) - - class CheckBase(object): """Base class for checking Markdown files.""" @@ -227,7 +270,8 @@ class CheckBase(object): """Run tests on metadata.""" self.check_metadata() - self.check_text() + self.check_line_lengths() + self.check_trailing_whitespace() self.check_blockquote_classes() self.check_codeblock_classes() @@ -243,10 +287,10 @@ class CheckBase(object): self.reporter.check_field(self.filename, 'metadata', self.metadata, 'layout', self.layout) - def check_text(self): + def check_line_lengths(self): """Check the raw text of the lesson body.""" - if self.args.line_len: + if self.args.line_lengths: over = [i for (i, l, n) in self.lines if (n > MAX_LINE_LEN) and (not l.startswith('!'))] self.reporter.check(not over, self.filename, @@ -254,6 +298,17 @@ class CheckBase(object): ', '.join([str(i) for i in over])) + def check_trailing_whitespace(self): + """Check for whitespace at the ends of lines.""" + + if self.args.trailing_whitespace: + trailing = [i for (i, l, n) in self.lines if P_TRAILING_WHITESPACE.match(l)] + self.reporter.check(not trailing, + self.filename, + 'Line(s) end with whitespace: {0}', + ', '.join([str(i) for i in trailing])) + + def check_blockquote_classes(self): """Check that all blockquotes have known classes."""