mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Introduces `aurweb.defaults` and `aurweb.filters`. `aurweb.filters` is a location developers can put their additional Jinja2 filters and/or functions. We should slowly move all of our filters over here, where it makes sense. `aurweb.defaults` is a new module which hosts some default constants and utility functions, starting with offsets (O) and per page values (PP). As far as the new GET /requests is concerned, we match up here to PHP's implementation, with some minor improvements: Improvements: * PP on this page is now configurable: 50 (default), 100, or 250. * Example: `https://localhost:8444/requests?PP=250` Modifications: * The pagination is a bit different, but serves the exact same purpose. * "Last" no longer goes to an empty page. * Closes: https://gitlab.archlinux.org/archlinux/aurweb/-/issues/14 Signed-off-by: Kevin Morris <kevr@0cost.org>
31 lines
777 B
Python
31 lines
777 B
Python
import pytest
|
|
|
|
from aurweb.templates import register_filter, register_function
|
|
|
|
|
|
@register_filter("func")
|
|
def func():
|
|
pass
|
|
|
|
|
|
@register_function("function")
|
|
def function():
|
|
pass
|
|
|
|
|
|
def test_register_filter_exists_key_error():
|
|
""" Most instances of register_filter are tested through module
|
|
imports or template renders, so we only test failures here. """
|
|
with pytest.raises(KeyError):
|
|
@register_filter("func")
|
|
def some_func():
|
|
pass
|
|
|
|
|
|
def test_register_function_exists_key_error():
|
|
""" Most instances of register_filter are tested through module
|
|
imports or template renders, so we only test failures here. """
|
|
with pytest.raises(KeyError):
|
|
@register_function("function")
|
|
def some_func():
|
|
pass
|