Mercurial > piecrust2
view tests/mockutil.py @ 440:32c7c2d219d2
performance: Refactor how data is managed to reduce copying.
* Make use of `collections.abc.Mapping` to better identify things that are
supposed to look like dictionaries.
* Instead of handling "overlay" of data in a dict tree in each different data
object, make all objects `Mapping`s and handle merging at a higher level
with the new `MergedMapping` object.
* Since this new object is read-only, remove the need for deep-copying of
app and page configurations.
* Split data classes into separate modules.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 28 Jun 2015 08:22:39 -0700 |
parents | e7b865f8f335 |
children | fd694f1297c7 |
line wrap: on
line source
import os.path import mock from piecrust.app import PieCrust, PieCrustConfiguration from piecrust.page import Page from piecrust.rendering import QualifiedPage, PageRenderingContext, render_page def get_mock_app(config=None): app = mock.MagicMock(spec=PieCrust) app.config = PieCrustConfiguration() return app def get_simple_page(app, rel_path): source = app.getSource('pages') metadata = {'slug': os.path.splitext(rel_path)[0]} return Page(source, metadata, rel_path) def render_simple_page(page, route, route_metadata): qp = QualifiedPage(page, route, route_metadata) ctx = PageRenderingContext(qp) rp = render_page(ctx) return rp.content from .tmpfs import ( TempDirFileSystem as mock_fs, TempDirScope as mock_fs_scope)