aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-10Revert "Add automatic borrowing to let statement"Libravatar Guillaume Gomez1-14/+0
This reverts commit 3d52283b74573af509deb3c47cbabf7b7b58b1dd.
2024-01-09Make the `markdown` filter compatible with `String`Libravatar Jakub Stachurski1-0/+18
This commit solves issue #719. This is done by making the markdown filter borrow the string and simplifying the filter to accept `&str` instead of `AsRef<str>` Add test for the markdown filter using as input Revert markdown filter changes Revert unnecessary changes Improve test_markdown_owned_string test Use cargo fmt
2023-12-13Add automatic borrowing to let statementLibravatar max1-0/+14
Signed-off-by: max <gmx.sht@gmail.com>
2023-12-13Bugfix in `is_attr_self()`Libravatar max1-0/+19
Signed-off-by: max <gmx.sht@gmail.com>
2023-12-07Allow trailing comma in macro definition and callLibravatar Guillaume Gomez1-0/+30
2023-12-07Add macro test with only argument being passed as namedLibravatar Guillaume Gomez1-0/+17
2023-11-30Upgrade to comrak 0.19Libravatar Dirkjan Ochtman1-9/+6
2023-11-28Add tests for named arguments in macro callsLibravatar Guillaume Gomez3-0/+117
2023-11-22Add better support for rust-like number literals (#908)Libravatar PizzasBear1-0/+23
Signed-off-by: max <gmx.sht@gmail.com>
2023-11-22Enhance match to include multiple targets (#911)Libravatar PizzasBear1-0/+29
Signed-off-by: max <gmx.sht@gmail.com>
2023-11-20Add UI tests for macros error messageLibravatar Guillaume Gomez2-0/+50
2023-10-25Add UI test for `elif` error messageLibravatar Guillaume Gomez2-0/+17
2023-10-25 Improve error for invalid name used in `endmacro`Libravatar Guillaume Gomez1-1/+2
2023-10-25Improve error for invalid name used in `endblock`Libravatar Guillaume Gomez1-1/+2
2023-10-23Add test specifically for named blocks, and named macrosLibravatar Guillaume Gomez5-0/+44
2023-10-12Add test for macro self argumentLibravatar max1-0/+12
Signed-off-by: max <gmx.sht@gmail.com>
2023-09-28Pass `Node` parsing level to expressionsLibravatar René Kijewski1-2/+2
2023-09-28Limit nesting in parser nodes, tooLibravatar René Kijewski2-0/+129
2023-07-31 Fix parsing arraysLibravatar René Kijewski2-7/+3
This change * allows using empty arrays `[]` in expessions, * adds a cut when the leading `[` was encountered, and * fixes the interaction between arrays and boolean OR. IMO the restriction that you couldn't use empty arrays is not needed. The missing cut made error messages slictly worse if you forget to add the closing `]`. Filter expressions must not have white spaces before the pipe `|`. The white space is used to tell a filter expressions, and `std::ops::Or` apart.
2023-07-31 Fix parsing callsLibravatar René Kijewski1-2/+2
This change: * adds a cut when the leading `(` was encountered, and * fixed the interaction between call expressions and boolean OR.
2023-07-24Fix Rust macro invocations not accepting a path (#837)Libravatar Matthew Taylor1-2/+22
2023-06-12Allow macros to be defined and called without argumentsLibravatar mataha1-0/+10
This commit introduces a shorthand for defining and calling macros when using them as a reusable substitute for variables assigned complex values (e.g. string literals with or without newline escapes). The use-case is formatting - from my experience it's easier to visually parse a `macro` `endmacro` block than a multiline variable assignment. Signed-off-by: mataha <mataha@users.noreply.github.com>
2023-03-13Add tests for whitespace argument in template derive proc-macroLibravatar Guillaume Gomez1-0/+24
2023-03-09Update tests for whitespace characters handlingLibravatar Guillaume Gomez3-437/+471
2023-03-06Propogate size_hint from sub-blocks (#788)Libravatar Andrew Dona-Couch -- GitHub drop ICE1-0/+47
Closes #786
2023-01-30Apply clippy suggestions for 1.67 (#769)Libravatar Dirkjan Ochtman2-5/+4
2023-01-24Update `ui` test for trybuild 1.0.76Libravatar René Kijewski1-1/+1
In <https://github.com/dtolnay/trybuild/pull/219> the output of error messages was subtly changed, because they introduced a subdirectoy in their temp path. This PR fixes the mismatch between the expected and the actual output.
2022-11-07chore: remove allow(clippy::disallowed_names)Libravatar Dirkjan Ochtman4-7/+1
2022-11-07chore: apply clippy suggestions for 1.65Libravatar Dirkjan Ochtman4-4/+4
2022-07-25Remove support for deprecated `_parent` fieldLibravatar René Kijewski1-4/+40
The support for the magic `_parent` field is deprecated since v0.8.0 or issue #180. It's bothersome to keep this feature alive, when no-one should be using it for 3 years.
2022-04-29Allow `{% endmacro name %}`Libravatar Bastien Orivel1-1/+1
Just migrated a repo from tera to askama and this was one of the only things that was different. This is also coherent with `{% block %}` for which I added the same feature years ago.
2022-04-26Add test for "minimize" configLibravatar Guillaume Gomez1-0/+43
2022-04-21Add test for suppress_whitespace optionLibravatar Guillaume Gomez2-19/+340
2022-02-16Make json filter safeLibravatar René Kijewski2-1/+63
Previously the built-in json filter had an issue that made it unsafe to use in HTML data. When used in HTML attributes an attacker who is able to supply an arbitrary string that should be JSON encoded could close the containing HTML element e.g. with `"</div>"`, and write arbitrary HTML code afterwards as long as they use apostrophes instead of quotation marks. The programmer could make this use case safe by explicitly escaping the JSON result: `{{data|json|escape}}`. In a `<script>` context the json filter was not usable at all, because in scripts HTML escaped entities are not parsed outside of XHTML documents. Without using the safe filter an attacker could close the current script using `"</script>"`. This PR fixes the problem by always escaping less-than, greater-than, ampersand, and apostrophe characters using their JSON unicode escape sequence `\u00xx`. Unless the programmer explicitly uses the safe filter, quotation marks are HTML encoded as `&quot`. In scripts the programmer should use the safe filter, otherwise not.
2022-02-07Add markdown filterLibravatar René Kijewski1-0/+75
2022-01-31Remove `panic!()` in `loop.cycle([])`Libravatar René Kijewski2-0/+22
2022-01-31Make is_shadowing_variable() failableLibravatar René Kijewski1-3/+3
2022-01-31Allow comments in `{% match %}` and remove panic!Libravatar René Kijewski3-0/+53
2022-01-28Parse tuple expressionsLibravatar René Kijewski1-0/+82
Askama understands how to destructure tuples in let and match statements, but it does not understand how to build a tuple. This PR fixes this shortcoming.
2022-01-28 Implement error propagation expression: `?` (#590)Libravatar René Kijewski1-0/+69
This change allows using the operator `?` in askama expressions. It works like the same operator in Rust: if a `Result` is `Ok`, it is unwrapped. If it is an error, then the `render()` method fails with this error value.
2022-01-27Unify handling of calls (#614)Libravatar René Kijewski1-0/+82
Instead of having `Expr::VarCall`, `Expr::PathCall` and `Expr::MethodCall`, this PR unifies the handling of calls by removing the former three variants, and introducing `Expr::Call`.
2022-01-13Add unit tests if there is one `#[template(…)]`Libravatar René Kijewski4-0/+36
2021-12-15Use a separate trait for object safety (#579)Libravatar Dirkjan Ochtman2-11/+8
This is relatively major change to the main trait's API. For context, I always started from the concept of monomorphized traits, but later several contributors asked about object safety. At that point I made `Template` object-safe, and then even later added a `SizedTemplate` to make some things easier for people who don't need object safety. However, having object-safety in the primary trait is bad for performance (a substantial number of calls into the virtual `Write` trait is relatively slow), and I don't think those who don't need object safety should pay for the cost of having it. Additionally, I feel using associated consts for the extension and size hint is more idiomatic than having accessor methods. I don't know why I didn't use these from the start -- maybe associated consts didn't exist yet, or I didn't yet know how/when to use them. Askama is pretty old at this point...
2021-12-01Fix tests for new error messages in Rust nightlyLibravatar René Kijewski16-5/+41
2021-11-29Allow whitespace trimming in {{raw}} blocksLibravatar René Kijewski1-0/+10
2021-11-19Added optional escaper testsLibravatar vallentin1-0/+48
2021-11-11Implement `for … in … if …`Libravatar René Kijewski1-0/+18
2021-11-11Add exhaustive whitespace tests for for-elseLibravatar René Kijewski2-0/+1147
2021-11-11Implement for-elseLibravatar René Kijewski1-0/+19
This PR implements for-else statements like in Jinja. They make it easy to print an alternative message if the loop iterator was empty. E.g. ```rs {% for result in result %} <li>{{ result }}</li> {% else %} <li><em>no results</em></li> {% endfor %} ```
2021-11-11Implement {{loop.cycle(…)}} similar to JinjaLibravatar René Kijewski3-0/+65