Skip to content
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

Fix parsing calls #843

Merged
merged 2 commits into from
Jul 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions askama_parser/src/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use nom::bytes::complete::{tag, take_till};
use nom::character::complete::char;
use nom::combinator::{cut, map, not, opt, peek, recognize};
use nom::error::ErrorKind;
use nom::multi::{fold_many0, many0, separated_list0, separated_list1};
use nom::sequence::{delimited, pair, preceded, terminated, tuple};
use nom::multi::{fold_many0, many0, separated_list0};
use nom::sequence::{pair, preceded, terminated, tuple};
use nom::{error_position, IResult};

use super::{bool_lit, char_lit, identifier, not_ws, num_lit, path, str_lit, ws};
Expand Down Expand Up @@ -68,10 +68,12 @@ pub enum Expr<'a> {

impl<'a> Expr<'a> {
pub(super) fn arguments(i: &'a str) -> IResult<&'a str, Vec<Self>> {
delimited(
preceded(
ws(char('(')),
separated_list0(char(','), ws(Self::parse)),
ws(char(')')),
cut(terminated(
separated_list0(char(','), ws(Self::parse)),
char(')'),
)),
)(i)
}

Expand Down Expand Up @@ -175,10 +177,12 @@ impl<'a> Expr<'a> {
}

fn array(i: &'a str) -> IResult<&'a str, Self> {
delimited(
preceded(
ws(char('[')),
map(separated_list1(ws(char(',')), Self::parse), Self::Array),
ws(char(']')),
cut(terminated(
map(separated_list0(char(','), ws(Self::parse)), Self::Array),
char(']'),
)),
)(i)
}

Expand Down
110 changes: 109 additions & 1 deletion askama_parser/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,34 @@ fn test_odd_calls() {
Ast::from_str("{{ -a(b) }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Unary("-", Box::new(Call(Box::new(Var("a")), vec![Var("b")])),),
Unary("-", Box::new(Call(Box::new(Var("a")), vec![Var("b")]))),
)],
);
assert_eq!(
Ast::from_str("{{ a(b)|c }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Filter("c", vec![Call(Box::new(Var("a")), vec![Var("b")])]),
)]
);
assert_eq!(
Ast::from_str("{{ a(b)| c }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Filter("c", vec![Call(Box::new(Var("a")), vec![Var("b")])]),
)]
);
assert_eq!(
Ast::from_str("{{ a(b) |c }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
BinOp(
"|",
Box::new(Call(Box::new(Var("a")), vec![Var("b")])),
Box::new(Var("c"))
),
)]
);
}

#[test]
Expand Down Expand Up @@ -736,3 +761,86 @@ fn test_missing_space_after_kw() {
"unable to parse template:\n\n\"{%leta=b%}\""
));
}

#[test]
fn test_parse_array() {
let syntax = Syntax::default();
assert_eq!(
Ast::from_str("{{ [] }}", &syntax).unwrap().nodes,
vec![Node::Expr(Ws(None, None), Expr::Array(vec![]))],
);
assert_eq!(
Ast::from_str("{{ [1] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1")])
)],
);
assert_eq!(
Ast::from_str("{{ [ 1] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1")])
)],
);
assert_eq!(
Ast::from_str("{{ [1 ] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1")])
)],
);
assert_eq!(
Ast::from_str("{{ [1,2] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1"), Expr::NumLit("2")])
)],
);
assert_eq!(
Ast::from_str("{{ [1 ,2] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1"), Expr::NumLit("2")])
)],
);
assert_eq!(
Ast::from_str("{{ [1, 2] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1"), Expr::NumLit("2")])
)],
);
assert_eq!(
Ast::from_str("{{ [1,2 ] }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Array(vec![Expr::NumLit("1"), Expr::NumLit("2")])
)],
);
assert_eq!(
Ast::from_str("{{ []|foo }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Filter("foo", vec![Expr::Array(vec![])])
)],
);
assert_eq!(
Ast::from_str("{{ []| foo }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::Filter("foo", vec![Expr::Array(vec![])])
)],
);
assert_eq!(
Ast::from_str("{{ [] |foo }}", &syntax).unwrap().nodes,
vec![Node::Expr(
Ws(None, None),
Expr::BinOp(
"|",
Box::new(Expr::Array(vec![])),
Box::new(Expr::Var("foo"))
),
)],
);
}
3 changes: 0 additions & 3 deletions testing/tests/ui/loop_cycle_empty.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Nb. this test fails because currently an empty array "[]" is always a syntax error in askama,
// but even if this changes, this test should keep failing, but possibly with another error message

use askama::Template;

#[derive(Template)]
Expand Down
7 changes: 3 additions & 4 deletions testing/tests/ui/loop_cycle_empty.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
error: problems parsing template source at row 1, column 34 near:
"([]) }}{{ v }},{% endfor %}"
--> tests/ui/loop_cycle_empty.rs:6:10
error: loop.cycle(…) cannot use an empty array
--> tests/ui/loop_cycle_empty.rs:3:10
|
6 | #[derive(Template)]
3 | #[derive(Template)]
| ^^^^^^^^
|
= note: this error originates in the derive macro `Template` (in Nightly builds, run with -Z macro-backtrace for more info)
Loading