-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solutions for a complete testing framework #244
Comments
CC: @pawamoy, @tomchristie, @squidfunk, @razorback, @gesslar |
Looks like you've put a lot of thought into this. Given the cc, I take it you're asking for some feedback?
This is exactly what I do in revision-date-localized and table-reader, and I've never looked back. The only thing I had to add was scheduling of the unit tests (weekly) so I am aware of any integrations breaking because of changes upstream (mkdocs) or downstream (plugins I want to be compatible with). TBH, in my work I always push for trying to keep things as simple as possible (e.g. What's the simplest possible thing that might work, and why didn't you try that first?. Fun thing about open source is that it's a hobby, we can go and enjoy building awesome things. And looks like you built something that works well for this plugin. I would be a bit concerned about maintainability.. do you have tests for the test framework 😅 ? |
Thanks for your thoughtful remarks. I am indeed asking for feedback (providing of course that others wish to give it). I am with you on doing the simplest thing; and indeed, that was my main concern: I wanted to write the simplest testing code possible. Also, I looked around to see what solutions existed, especially yours. The one difference with most other plugins, is that Mkdocs-Macros can do by nature many different things, in many different ways (thanks to Jinja2). There is potentialy a lot to test, with many little details that could go wrong. I started from how I want to formulate the test assertions and I worked my way back to built the framework so as to support those assertions. The reason why I didn't want to test final the HTML is that I don't know what other plugins could do to the code, not to mention the markdown extensions and the themes -- perhaps that choice was overly strict. But that simplified the framework for me, because once I produced the "rendered" ones (essentially just before returning the result of Hence spending some time at the start, has been an investment that should pay back in the long trange. Maintenability is one of my concerns. The framework had to be as robust as possible, and be based on concepts or mechanisms that are not susceptible of much change in the long run. I am not overly concerned about reading the markdown files in the The one part that could possibly break in the future, is the log, since I made up the idea of the payload. Fortunately, it didn't do so. So, unless a problem comes up , I might continue to use that approach. Finally, yes, there is a whole series of test cases for the test framework itself. 🙂 |
In mkdocstrings-python I'm aiming for end-to-end tests (or golden tests?), where I render HTML for a single object (recursively) and compare the output to snapshots. It doesn't test compatibility with other plugins (such as mkdocs-macros), but I suppose it wouldn't be hard to extend the test cases to include some tests that also make use of mkdocs-macros (for example) to assert compatibility. But your testing framework looks nice. Give me a bit of time to comment on it more. |
Thanks for your feedback, as this is encouraging me to sift my ideas, recognize weaknesses, and find new avenues. @pawamoy I like the term golden test, for a test that compares the the output of a (long and complex) process, with an expected output. 🙏 End-to-end is the expected approach, though how we define it in each case might vary.
One can conceive the output of Mkdocs-Macros as an input for Mkdocs. Indeed, the files of raw Markdown generated by Mkdocs-Macros in debug mode (enriched with YAML front-matter), should be a drop-in replacement for the original Markdown pages. Here is a diagram: flowchart TD
subgraph First
Source[Markdown + Jinja2 pages] --> MkDocs(Mkdocs + Macros)
MkDocs --> Targeta[HTML]
MkDocs --> Targetb["Markdown pages<br>(debug)"]
end
Targetb --> Source2
subgraph Second
Source2[Markdown pages] --> MkDocs2(Mkdocs)
MkDocs2 --> Target2[HTML]
end
From that perspective what I am really trying to test, is whether or not the plugin is rendering the page correctly with Jinja2 when it should, and not rendering it when it should not. I am not testing MkDocs itself, particularly . Hence "end-to-end" could be interpreted as "from Markdown + Jinja2 to Markdown". From the perspective of MkDocs, that would be unit test, I guess. 🤔 This is one way to look at things, of course. 🙂 |
- Added a `null` test project that does nothing - Improved the `module` to test further things - Redefined the `MardkowPage.is_rendered()` method as "not (source is included in target)"
- Extracted fixture utilities into `fixture_util.py` - Created a ./test_fixture.sh to specifically test the fixture, with options (also called when invoking `pytest`) - Specifically made a test in that context, for the `find_page()` function.
This should illustrate how a test can be done with the framework: from test.fixture import DocProject
PROJECT = DocProject('myproject')
PROJECT.build(strict=False)
# did not fail
assert not PROJECT.build_result.returncode
# ----------------
# Page 'index'
# ----------------
page = PROJECT.get_page('index')
assert page.is_rendered
VARIABLE_NAME = 'greeting'
# it is defined in the config file (extra)
assert VARIABLE_NAME in PROJECT.config.extra
# check that the `greeting` variable is rendered:
assert VARIABLE_NAME in PROJECT.variables
assert PROJECT.variables[VARIABLE_NAME] in page.markdown |
@pawamoy The adage seems right: “Inside every large program, there is a small program trying to get out.” – C.A.R. Hoare I realized that the framework could perhaps be generalized for testing any doc site, or any plugin. So I made a general version (DocProject) and the features I needed specifically for Mkdocs were put into a subclass (MacrosDocProject). So far, it works. I wonder whether I could extract the core of the test framework and turn it into a Python package for general use? I would see two use cases:
|
Well your testing framework looks really useful! I could definitely see it become more a standard way of testing plugins/projects. |
Thanks 🙂. As mentioned in mkdocs/mkdocs#3840, I thought again about your comment on comparing with the final html files ("golden tests"). This missing part would be the matching between the markdown and the html. |
@pawamoy @timvink As part of that effort, I created a separate repo for "super-collections", which allow for dictionaries that expose their keys as attributes, and to do it it in a deeply nested way. That code was before in mkdocs-macros, but I thought it might be of use for others (+ documentation and unit tests) |
If you're looking to efficiently process nested dictionaries, you might want to have a look at https://github.com/koaning/clumper . Another trick is use often is instead of item['key'] is to use item.get('key',{}). That way you can chain them and it will still work even if one item somewhere is missing a higher level key. Went through the docs, well explained and it can def be useful in projects with a lot of nested json data |
@pawamoy @timvink Thanks for your feedbacks! 🙏 I created https://github.com/fralau/mkdocs-test which contains the test framework. It is a rewrite, simplified, which could be used by any MkDocs doc project (or plugin project). It relies on a plugin (called test), which exports the nav object into a json file. Now tests are focused on the final html file. It is tested with pytest, and the first results are encouraging. I intend to rewrite the tests on mkdocs-macros, using that new framework. |
For the record, the current state of the project (with internal test framework, before migration to mkdocs-test) is v1.3.3. |
ConclusionMkdocs-Macros (v1.3.5) now uses the Mkdocs-Test framework for testing. Mkdocs-Macros uses its own (beefed-up) version that reads the list of all variables, macros and filters of the macro environment through DEBUG entries in log. This was an interesting experience. Overall, my impression is that the codebase is saner; not because it was significantly rewritten (in fact, few changes were made), but because the confidence in its correctness has increased. The issue of leaving test artifacts (print statements) in new releases hasn't been fixed, though. 🤔 |
The Issue
Mkdocs-Macros needs a testing framework. This is necessary, with (according to Github) over 3500 projects depending on it, some of which are large or have themselves many dependent projects.
History
Important
The project itself was originally based on a simple, big idea 💡 borrowed from the world of wikis: using a templating engine to vastly expand the possibilities of the Markdown language. Any documentation tool needs a templating system.
Jinja2 made this easy, and the initial version of the plugin, back in 2018, was simple. Most of the later complications derived from "real-world" considerations:
The question of how to test the final results arose immediately. I solved it by using the main tool that Mkdocs provides for that purpose:
mkdocs serve
and by watching the results in a browser. It is a quick and effective method to test anything one wishes.Caution
However, this way of testing has a key limitation: it is not systematic. As long as there is one developper who has complete command over a simple plugin, it can work. As soon as the code becomes complex, or other developpers submit PRs, the risk of breaking something becomes too great. And with so many dependent projects, a push that breaks the code introduces risks into the lives of other people.
What is needed
Hence Mkdocs-Macros needs a testing framework, in view of Continuous Integration on GitHub.
Ideas
It is easier said than done.
In #241, I summarized the discussions prompted by @timvink, inspired from his experience on mkdocstrings. It all started from the discussion on how to make Mkdocs coexist with other plugins; we agreed we needed a hook (#237); this was done... and then the question arose of how to test the result ❓.
His contribution was essential, because it framed the problem. He also kindly submitted a PR (#239) based on pytest, which contained a good start.
I realized, however, that I would have to take a step back, and think this problem through.
Why it is difficult?
Important
The problem is that a plugin (Mkdocs-Macros) relies, by definition, on the underlying piece of software (Mkdocs) in order to run. So, you have to rely on the debug/testing tools provided by the software itself.
The tool that Mkdocs provides for systematic testing is
mkdocs build
. It has a log, and can be made to halt in case of warnings (--strict
), which is suitable for most applications.It is however, it is a binary test: the build worked or it didn't. It does not have the granularity (page by page) necessary for testing automatically the things that I had been testing manually, by launching
mkdocs serve
and checking each page for myself.Examples are:
Of course the log (especially with the
--debug
option)I realized that I needed a framework for that.
Caution
Also, programmatically checking the resulting HTML page opens a rabbit hole: after Markdown extensions have been rendered, and headers, footers, javascript scripts, etc. have been added, the code has been altered beyond recognition. And first, we need to locate the html file that corresponds to the original markdown page we wanted to test.
Why I didn't use Mkdocs
One way to solve this issue, might have been to attempt to use the Mkdocs framework itself, .
Aside of the fact that it would have required an intimate knowledge of the intricacies this framework that I don't have, I realized that using Mkdocs to test itself would risk creating assertions that are tautologies or begging the question (accidentally formulated in a way that they can't give a False answer, because they are basically the same thing expressed in two different ways).
Solution
Here is an initial description.
Principle
The best approach was to make a completely distinct test framework.
The Test Framework, executes
mkdocs build --debug
(and if required,--strict
) and then compares the following five inputs:Notes on the Log
The log is parsed into a list of log objects.
There are three types of log entries:
Each properly formatted log entry has a severity ('INFO'), an optional source ('macros'), a title ('Macros arguments') and an optional payload (any text).
Note
Mkdocs-Macros uses the payload of DEBUG entries to convey the three complete dictionaries of variables, filters and macros generated at the time of
on_config
.Target documents
The target documents are raw Markdown documents (after Jinja2 has been rendered), to which the original YAML header has been added. They are adequate to test the result of Mkdocs-Macros, as produced by
on_page_markdown()
The framework collects parses each file and provides:
First Results
A first version of the test framework (
test/fixture.py
) has been produced.Caution
This is experimental
The test framework provides a single DocProject object, which contains all elements necessary to test:
on_conf
(each page is then completed by its own metadata)Making
cd
into thetest
directory, and runningpytest
launches the existing tests, on two test documentation projects:simple
module
The text was updated successfully, but these errors were encountered: