Skip to content

Commit 630c780

Browse files
committed
test: add a (failing) test using identifiers starting with numbers
These test cases capture the issue called out in sunng87#450. The handling of identifiers which start with numbers diverges from the official JavaScript implementation of Handlebars. It's especially bad for cases like `{{eq 1a}}`, which validly parses as `{{eq 1 a}}`!
1 parent a3e276c commit 630c780

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

src/render.rs

+34
Original file line numberDiff line numberDiff line change
@@ -1117,3 +1117,37 @@ fn test_zero_args_heler() {
11171117
"Output name: first_name not resolved"
11181118
);
11191119
}
1120+
1121+
#[test]
1122+
fn test_identifiers_starting_with_numbers() {
1123+
let mut r = Registry::new();
1124+
1125+
assert!(r
1126+
.register_template_string("r1", "{{#if 0a}}true{{/if}}")
1127+
.is_ok());
1128+
let r1 = r.render("r1", &json!({"0a": true})).unwrap();
1129+
assert_eq!(r1, "true");
1130+
1131+
assert!(r.register_template_string("r2", "{{eq 1a 1}}").is_ok());
1132+
let r2 = r.render("r2", &json!({"1a": 2, "a": 1})).unwrap();
1133+
assert_eq!(r2, "false");
1134+
1135+
assert!(r
1136+
.register_template_string("r3", "0: {{0}} {{#if (eq 0 true)}}resolved from context{{/if}}\n1a: {{1a}} {{#if (eq 1a true)}}resolved from context{{/if}}\n2_2: {{2_2}} {{#if (eq 2_2 true)}}resolved from context{{/if}}") // YUP it is just eq that barfs! is if handled specially? maybe this test should go nearer to specific helpers that fail?
1137+
.is_ok());
1138+
let r3 = r
1139+
.render("r3", &json!({"0": true, "1a": true, "2_2": true}))
1140+
.unwrap();
1141+
assert_eq!(
1142+
r3,
1143+
"0: true \n1a: true resolved from context\n2_2: true resolved from context"
1144+
);
1145+
1146+
// these should all be errors:
1147+
assert!(r.register_template_string("r4", "{{eq 1}}").is_ok());
1148+
assert!(r.register_template_string("r5", "{{eq a1}}").is_ok());
1149+
assert!(r.register_template_string("r6", "{{eq 1a}}").is_ok());
1150+
assert!(r.render("r4", &()).is_err());
1151+
assert!(r.render("r5", &()).is_err());
1152+
assert!(r.render("r6", &()).is_err());
1153+
}

0 commit comments

Comments
 (0)