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 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
|
# from rich import print
import os
from pathlib import Path
import shutil
import yaml
import inspect
import subprocess
import re
from dataclasses import dataclass
from typing import List, Dict
import json
import textwrap
from bs4 import BeautifulSoup
from bs4.element import Tag as HTMLTag
"A dictionary where the keys are also accessible with the dot notation"
from super_collections import SuperDict
from .common import (get_frontmatter, markdown_to_html, get_first_h1,
find_in_html, find_after, list_markdown_files, find_page,
run_command, strip_ansi_colors,
TEST_PLUGIN, TEST_DIRNAME, DOCS_DEFAULT_DIRNAME, PAGE_MAP,
h1, h2, is_in_dir)
from .lorem import lorem_ipsum
# ---------------------------
# Initialization
# ---------------------------
"Command for build"
MKDOCS_BUILD = ['mkdocs', 'build']
def list_doc_projects(directory:str):
"Make a list of Mkdocs projects"
# Specify the directory to start the search
start_dir = directory
mkdocs_dirs = []
for entry in os.scandir(start_dir):
if entry.is_dir():
files_in_dir = os.listdir(entry.path)
if 'mkdocs.yml' in files_in_dir or 'mkdocs.yaml' in files_in_dir:
mkdocs_dirs.append(entry.name)
return mkdocs_dirs
class MySafeLoader(yaml.SafeLoader):
"""
For reading the config file (mkdocs.yml)
It will handle unknown tags, such as:
!!python/name:mermaid2.fence_mermaid_custom
"""
pass
def unknown_constructor(loader, tag_suffix, node):
return tag_suffix
MySafeLoader.add_multi_constructor('', unknown_constructor)
# ---------------------------
# Log parsing
# ---------------------------
@dataclass
class LogEntry(object):
"""
Represents a log entry
"""
severity: str
"Severity (DEBUG, INFO, WARNING)"
source: str = None
"Source, if available (e.g. [macros])"
title: str = None
"Title, first line"
payload: str = None
"""
Payload of the entry
(following lines, not starting with DEBUG, INFO, WARNING)
"""
def parse_log(mkdocs_log: str) -> List[LogEntry]:
"""
Parse the log entries, e.g.:
DEBUG - Running 1 `page_markdown` events
INFO - [macros] - Rendering source page: index.md
DEBUG - [macros] - Page title: Home
WARNING - [macros] - ERROR # _Macro Rendering Error_
_File_: `second.md`
_UndefinedError_: 'foo' is undefined
```
Traceback (most recent call last):
File "snip/site-packages/mkdocs_macros/plugin.py", line 665, in render
DEBUG - Copying static assets.
RULES:
1. Every entry starts with a severity code (Uppercase).
2. The message is then divided into:
- source: between brackets, e.g. [macros]
- title: the remnant of the first line, e.g. "Page title: Home"
- payload: the rest of the message
"""
log_entries = []
current_entry = None
mkdocs_log = mkdocs_log.strip()
# Remove the color ANSI codes (to avoid polluting)
mkdocs_log = strip_ansi_colors(mkdocs_log)
for line in mkdocs_log.split('\n'):
match = re.match(r'^([A-Z]+)\s+-\s+(.*)', line)
if match:
if current_entry:
log_entries.append(current_entry)
severity = match.group(1)
message = match.group(2)
source_match = re.match(r'^\[(.*?)\]\s+-\s+(.*)', message)
if source_match:
source = source_match.group(1)
title = source_match.group(2)
else:
source = ''
title = message
current_entry = {'severity': severity,
'source': source,
'title': title,
'payload': []}
elif current_entry:
# current_entry['payload'] += '\n' + line
current_entry['payload'].append(line)
if current_entry:
log_entries.append(current_entry)
# Transform the payloads into str:
for entry in log_entries:
entry['payload'] = '\n'.join(entry['payload']).strip()
return [SuperDict(item) for item in log_entries]
# ---------------------------
# An Mkdocs Documentation project
# ---------------------------
class MkDocsPage(SuperDict):
"A markdown page from MkDocs, with all its information (source, target)"
MANDATORY_ATTRS = ['markdown', 'content', 'meta', 'file']
def __init__(self, page:dict):
# Call the superclass's __init__ method
super().__init__(page)
for field in self.MANDATORY_ATTRS:
if field not in self:
raise AttributeError(f"Missing attribute '{field}'")
@property
def h1(self):
"First h1 in the markdown"
return get_first_h1(self.markdown)
@property
def plain_text(self):
"""
The content, as plain text
"""
try:
return self._plain_text
except AttributeError:
soup = BeautifulSoup(self.content, "html.parser")
self._plain_text = soup.get_text()
return self._plain_text
@property
def html(self):
"""
The final HTML code that will be displayed,
complete with javascript, etc. (the end product).
"""
try:
return self._html
except AttributeError:
try:
with open(self.file.abs_dest_path, 'r') as f:
s = f.read()
self._html = s
return self._html
except AttributeError as e:
# to make sure we don't go into a weird recovery
# with SuperDict, in case of AttributeError (get_attr)
raise Exception(e)
@property
def source(self) -> SuperDict:
"""
The source information, drawn from the source file
(it contains the original markdown, before any rendering).
Attributes:
text: the source text (the full page, as actually typed)
markdown: the markdown part of the source text
frontmatter: the YAML frontmatter of the page (as a string)
meta: the parsed YAML front matter (as a dictionary)
"""
try:
return self._source
except AttributeError:
try:
# get the source file and decompose it
src_filename = self.file.abs_src_path
assert os.path.isfile(src_filename), f"'{src_filename}' does not exist"
with open(src_filename, 'r') as f:
source_text = f.read()
markdown, frontmatter, meta = get_frontmatter(source_text)
source = {
'text': source_text,
'markdown': markdown,
'frontmatter': frontmatter,
'meta': meta
}
self._source = SuperDict(source)
return self._source
except AttributeError as e:
# to make sure we don't go into a weird recovery
# with SuperDict, in case of AttributeError (get_attr)
raise Exception(e)
# ----------------------------------
# Smart functions
# ----------------------------------
def find_text(self, pattern: str,
header: str = None, header_level: int = None) -> str:
"""
Find a text or regex pattern in the html page (case-insensitive).
Arguments:
pattern: the text or regex
header (text or regex): if specified, it finds it first,
and then looks for the text between that header and the next one
(any level).
header_level: you can speciy it, if there is a risk of ambiguity.
Returns:
The line where the pattern was found, or None
"""
# it operates on the html
return find_in_html(self.html,
pattern=pattern,
header=header, header_level=header_level)
@property
def soup(self) -> BeautifulSoup:
"""
Parsed content of the HTML page (as published).
Returns:
Soup object from BeautifulSoup
"""
try:
return self._soup
except AttributeError:
self._soup = BeautifulSoup(self.html, 'html.parser')
return self._soup
def find_all(self, tag: str, *args, **kwargs) -> List[HTMLTag]:
"""
Extract tags from the HTML source and return them with their attributes
and content.
It wraps the soup.find_all() function of BeautifulSoup.
For *args and **kwargs see
[documentation](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find-all)
Arguments:
tag: the string argument of soup.find_all(), i.e. the tag
Returns:
Each tag returned in the list contains in particular
`attrs` (a dictionary of the attributes)
and `string` (the text within the tag,
but None if there are nested tags).
Note:
For various ways of formulating the query:
see [doc](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#kinds-of-filters)
"""
tags = self.soup.find_all(tag, *args, **kwargs)
return tags
def find(self, tag: str, *args, **kwargs) -> HTMLTag:
"""
Extracts the first tag from the HTML source.
It wraps the soup.find() function of BeautifulSoup.
See: [doc](https://www.crummy.com/software/BeautifulSoup/bs4/doc/#find).
"""
return self.soup.find(tag, *args, **kwargs)
def find_header(self, pattern: str, header_level:int=None) -> str:
"""
Finds a header in the
Returns:
The first header (h1, h2, h3...) that matches a pattern;
otherwise None
"""
if header_level is None:
criterion = re.compile(r'h[1-6]')
else:
criterion = f'h{header_level}'
headers = self.soup.find_all(criterion,
string=re.compile(pattern))
r = [header.text for header in headers]
if len(r):
return r[0]
# ----------------------------------
# Predicate functions
# ----------------------------------
def is_src_file(self) -> bool:
"""
**Predicate**: does the source (Markdown) file exist?
"""
return os.path.isfile(self.file.abs_src_path)
def is_dest_file(self) -> bool:
"""
**Predicate**: does the destination file (HTML) exist?
"""
return os.path.isfile(self.file.abs_dest_path)
def is_markdown_rendered(self) -> bool:
"""
**Predicate**: "Rendered" means that the raw Markdown
is different from the source markdown;
more accurately, that the source markdown is not
contained in the target markdown.
Please do NOT confuse this with the rendering of Markdown into HTML
(with templates containing navigation,
header and footer, etc.).
Hence "not rendered" is a "nothing happened".
It covers these cases:
1. No rendering of the markdown has taken place at all
(no plugin, or plugin inactive, or not instructions within the page).
2. A header and/or footer were added to the Markdown code
(in `on_pre_page_macros()`
or in `on_post_page_macro()` in Mkdocs-Macros) but the Markdown
itself was not modified.
3. An order to render was given, but there was actually
NO rendering of the markdown, for some reason (error case).
"""
# make sure that the source is stripped, to be sure.
return self.source.markdown.strip() not in self.markdown
class DocProject(object):
"""
An object that describes the current MkDocs project being tested
(any plugin).
"""
def __init__(self, project_dir:str='', path:str='',
new:bool=False):
"""
Initialize the documentation project.
Designed for pytest: if the path is not defined,
it will take the path of the calling program.
Arguments:
project_dir: the project subdirectory name;
default: empty, same level as path (the calling program)
path: the path to the reference directory
default: empty, i.e. directory of the calling program
new: create the project dir if it does not exist.
(without clearing it)
If you use the make_config() method, the docs_dir MUST be 'docs'.
Note:
It does not perform any build. The `build()` method must
be called explicitly.
"""
if not path:
# get the caller's directory
caller_frame = inspect.stack()[1]
path = os.path.dirname(caller_frame.filename)
path = os.path.abspath(path)
project_dir = os.path.join(path, project_dir)
self._project_dir = project_dir
if not os.path.isdir(self._project_dir):
if new:
# create
os.makedirs(self._project_dir, exist_ok=True)
else:
raise FileNotFoundError(f"Project directory '{self._project_dir}' does not exist."
"If you want to force its creation set `new=True`")
h1(f"{self.config.get('site_name', 'NO_NAME (yet)')} [{os.path.relpath(project_dir)}]")
@property
def project_dir(self) -> str:
"The source directory of the MkDocs project (abs or relative path)"
if not self._project_dir:
raise FileNotFoundError("This project is deleted and no longer has a project directory.")
return self._project_dir
@property
def docs_dir(self):
"""
The source directory of markdown files (full path).
It attempts to get it from the config file
(or returns the default 'docs' directory)
"""
full_dir = os.path.join(self.project_dir,
self.config.get('docs_dir', DOCS_DEFAULT_DIRNAME))
if not os.path.isdir(full_dir):
# raise FileNotFoundError(f"Source directory '{full_dir}' does not exist.")
os.makedirs(full_dir, exist_ok=True)
return full_dir
@property
def test_dir(self):
"The test directory (full path)"
return os.path.join(self.project_dir, TEST_DIRNAME)
# ----------------------------------
# Create the project source
# (this is optional)
# ----------------------------------
def clear(self) -> int:
"""
Clear the docs source directory (and its subdirectories).
Returns:
Number of files removed.
Raises:
FileNotFoundError: If the documentation source directory does not exist.
"""
if not os.path.isdir(self.docs_dir):
raise FileNotFoundError(f"Source directory '{self.docs_dir}' does not exist.")
removed = 0
for root, dirs, files in os.walk(self.docs_dir, topdown=False):
for name in files:
os.remove(os.path.join(root, name))
removed += 1
for name in dirs:
os.rmdir(os.path.join(root, name))
return removed
def make_config(self, content: str='', filename: str = 'mkdocs.yml', **kwargs) -> str:
"""
Creates a config file (YAML, prettyfied) for the mkdocs project.
It will make sure that the test plugin is defined.
Arguments
---------
content : str
The YAML content as a string (to be parsed and merged).
To facilitate the entry on a multiline string, the text is automatically
aligned to the left margin (but keeping the indentations).
filename : str
The filename of the config file.
**kwargs :
Arguments interpreted as entries in the YAML file.
These will precede the parsed content.
Example
-------
yaml = MyProject.make_config(site_name='My project',
theme='mkdocs', plugins=['search'])
Returns
-------
str
The final YAML configuration as written to disk.
"""
# Parse existing YAML content if any
content = textwrap.dedent(content).strip()
try:
parsed_content = yaml.safe_load(content) if content.strip() else {}
except yaml.YAMLError as e:
raise ValueError(f"Invalid YAML content: {e}")
# Merge with kwargs (kwargs take precedence)
final_config = {**parsed_content, **kwargs}
# Make sure that TEST_PLUGIN are present
# (Otherwise it won't work)
plugins = final_config.get('plugins')
if plugins is None:
final_config['plugins'] = ['search', TEST_PLUGIN]
else:
if TEST_PLUGIN not in plugins:
final_config['plugins'].append(TEST_PLUGIN)
# Pretty-print YAML with indentation and ordering preserved
pretty_yaml = yaml.dump(final_config, sort_keys=False, allow_unicode=True)
# Write YAML config to file
config_path = os.path.join(self.project_dir, filename)
os.makedirs(os.path.dirname(config_path), exist_ok=True)
with open(config_path, 'w', encoding='utf-8') as f:
f.write(pretty_yaml)
# store the name of the config file
self._config_file = filename
return pretty_yaml
def add_source_page(self, pathname: str, content: str, meta: dict = {}) -> str:
"""
Add a source page to the project
Arguments:
----------
pathname:
The pathname of the page (relative to the docs directory).
It can be a plain filename, or a relative pathname.
Please do not forget to add the extension (typically, '.md')
content:
The page content, as a string (Markdown with HTML, etc.).
To facilitate the entry on a multiline string, the text is automatically
aligned to the left margin (but keeping the indentations).
meta:
The metadata that must go into the YAML page header.
Returns:
--------
The full page content with YAML front matter, as written to file.
"""
content = textwrap.dedent(content).strip()
# Create full path
full_path = os.path.join(self.docs_dir, pathname)
# Ensure parent directory exists
os.makedirs(os.path.dirname(full_path), exist_ok=True)
# Generate YAML header
if len(meta):
yaml_header = yaml.dump(meta, sort_keys=False, allow_unicode=True).strip()
full_page = f"---\n{yaml_header}\n---\n\n{content}"
else:
full_page = content
# Write to file
with open(full_path, "w", encoding="utf-8") as f:
f.write(full_page)
return full_page
@property
def source_pages(self):
"""
Get all documentation file names from self.docs_dir.
Returns:
--------
A list of relative file paths (to self.docs_dir) for all files.
"""
return [
str(path.relative_to(self.docs_dir))
for path in Path(self.docs_dir)
]
def delete(self):
"""
Deletes the project dir and self.
WARNING: Do NOT confuse with self.clear()!
USE with caution, this deletes ALL files of the mkdocs project, including the directory.
The object becomes inoperable.
"""
# to avoid failure, set the working directory one level up,
# if it was set to the directory or one of its subdirs:
if is_in_dir(os.getcwd(), self.project_dir):
os.chdir(os.path.dirname(self.project_dir))
# delete the files
shutil.rmtree(self.project_dir)
# Remove link to project dir, object becomes inoperable.
self._project_dir = None
# ----------------------------------
# Reading the config file
# ----------------------------------
@property
def config_file(self) -> str:
"The config file"
try:
return self._config_file
except AttributeError:
# List of possible mkdocs configuration filenames (default, if not found)
CANDIDATES = ['mkdocs.yaml', 'mkdocs.yml']
for filename in os.listdir(self.project_dir):
if filename in CANDIDATES:
self._config_file = os.path.join(self.project_dir, filename)
return self._config_file
raise FileNotFoundError("No config file found (this is not an MkDocs directory).")
@property
def config(self) -> SuperDict:
"""
Get the configuration from the config file.
All main items of the config are accessible with the dot notation.
(config.site_name, config.theme, etc.)
If no config file available, provisionally returns an empty SuperDict.
"""
try:
return self._config
except AttributeError:
try:
config_file = self.config_file
with open(config_file, 'r', encoding='utf-8') as file:
# self._config = SuperDict(yaml.safe_load(file))
self._config = SuperDict(yaml.load(file, Loader=MySafeLoader))
except FileNotFoundError:
return SuperDict()
return self._config
def get_plugin(self, name:str) -> SuperDict:
"Get a plugin config (from the Config file) by its plugin name"
for el in self.config.plugins:
if name in el:
if isinstance(el, str):
return SuperDict()
elif isinstance(el, dict):
plugin = el[name]
return SuperDict(plugin)
else:
raise ValueError(f"Unexpected content of plugin {name}!")
return SuperDict(self.config.plugins.get(name))
# ----------------------------------
# Build
# ----------------------------------
def build(self, strict:bool=False,
verbose:bool=False) -> subprocess.CompletedProcess:
"""
Build the documentation, to perform the tests
(equivalent to `mkdocs build`).
Running a build is necessary so that the tests can be performed.
Arguments:
strict: to make the build fail in case of warnings
verbose: to generate the target_files directory
Returns:
(if desired) the low level result of the process (return code and stderr).
This info is generally not needed, since, those values are stored, and parsed.
"""
os.chdir(self.project_dir)
command = MKDOCS_BUILD.copy()
assert '--strict' not in command
if strict:
command.append('--strict')
if verbose:
command.append('--verbose')
print("BUILD COMMAND:", command)
self._build_result = run_command(*command)
return self.build_result
# ----------------------------------
# Post-build properties
# Will fail if called before build
# ----------------------------------
@property
def build_result(self) -> subprocess.CompletedProcess:
"""
Result of the build (low level)
"""
try:
return self._build_result
except AttributeError:
raise AttributeError("No build result yet (not run)")
@property
def success(self) -> bool:
"Was the execution of the build a success?"
return self.build_result.returncode == 0
# ----------------------------------
# Get the Markdown pages
# ----------------------------------
@property
def page_map_file(self):
"The page map file exported by the Test plugin"
filename = os.path.join(self.test_dir, PAGE_MAP)
if not os.path.isfile(filename):
raise FileNotFoundError("The pagemap file was not found. "
"Did you forget to declare the `test` plugin "
"in the MkDocs config file?")
return filename
@property
def pages(self) -> Dict[str, MkDocsPage]:
"""
The dictionary containing the pages
(Markdown + HTML + ...) produced by the build.
"""
try:
return self._pages
except AttributeError:
# build the pages
with open(self.page_map_file, 'r') as file:
pages = json.load(file)
self._pages = {key: MkDocsPage(value) for key, value in pages.items()}
return self._pages
def get_page(self, name:str) -> MkDocsPage:
"""
Find a page with its name in the list of Markdown pages (filenames).
If not found, return None
Arguments:
name: a page name (full or partial, with or without extension).
"""
# get all the filenames of pages:
filenames = [filename for filename in self.pages.keys()]
# get the filename we want, from that list:
filename = find_page(name, filenames)
# return the corresponding page:
return self.pages.get(filename)
# ----------------------------------
# Log
# ----------------------------------
@property
def trace(self) -> str:
"Trace of the execution (the log) as text"
return self.build_result.stderr
@property
def log(self) -> List[LogEntry]:
"""
The parsed trace (LogEntry objects)
"""
try:
return self._log
except AttributeError:
self._log = parse_log(self.trace)
# print("BUILT:", self.log)
return self._log
@property
def log_severities(self) -> List[str]:
"""
List of severities (DEBUG, INFO, WARNING) found in the log
"""
try:
return self._log_severities
except AttributeError:
self._log_severities = list({entry.get('severity', '#None')
for entry in self.log})
return self._log_severities
def find_entries(self, title:str='', source:str='',
severity:str='') -> List[LogEntry]:
"""
Filter entries according to criteria of title and severity;
all criteria are case-insensitive.
Arguments:
title: regex
source: regex, for which entity issued it (macros, etc.)
severity: one of the existing sevirities
"""
if not title and not severity and not source:
return self.log
severity = severity.upper()
# if severity and severity not in self.log_severities:
# raise ValueError(f"{severity} not in the list")
filtered_entries = []
# Compile the title regex pattern once (if provided)
title_pattern = re.compile(title, re.IGNORECASE) if title else None
source_pattern = re.compile(source, re.IGNORECASE) if source else None
for entry in self.log:
# Check if the entry matches the title regex (if provided)
if title_pattern:
title_match = re.search(title_pattern, entry.get('title', ''))
else:
title_match = True
# Check if the entry matches the source regex (if provided)
if source_pattern:
source_match = re.search(source_pattern, entry.get('source', ''))
else:
source_match = True
# Check if the entry matches the severity (if provided)
if severity:
severity_match = (entry['severity'] == severity)
# print("Decision:", severity_match)
else:
severity_match = True
# If both conditions are met, add the entry to the filtered list
if title_match and severity_match and source_match:
filtered_entries.append(entry)
assert isinstance(filtered_entries, list)
return filtered_entries
def find_entry(self, title:str='',
source:str = '',
severity:str='') -> SuperDict:
"""
Find the first entry according to criteria of title and severity.
Return None is not found.
Arguments:
title: regex
source: regex
severity: the severity, e.g. DEBUG, INFO, WARNING
"""
found = self.find_entries(title,
source=source,
severity=severity)
if len(found):
return found[0]
else:
return None
# ----------------------------------
# Self-check
# ----------------------------------
def self_check(self):
"Performs a number of post-build self-checks (integrity)"
for page in self.pages.values():
name = page.file.name
assert page.markdown, f"'{name}' is empty"
assert page.is_src_file(), f"source (Markdown) of '{name}' is missing"
assert page.is_dest_file(), f"destination (HTML) of '{name}' is missing"
|