2017-01-12 10:52:23 +00:00
|
|
|
extern crate rocket;
|
|
|
|
extern crate rocket_contrib;
|
|
|
|
|
|
|
|
use std::env;
|
2017-05-19 10:29:08 +00:00
|
|
|
use std::path::PathBuf;
|
2017-01-12 10:52:23 +00:00
|
|
|
|
2017-05-19 10:29:08 +00:00
|
|
|
fn template_root() -> PathBuf {
|
2017-01-12 10:52:23 +00:00
|
|
|
let cwd = env::current_dir().expect("current working directory");
|
2017-05-19 10:29:08 +00:00
|
|
|
cwd.join("tests").join("templates")
|
2017-01-12 10:52:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "tera_templates")]
|
|
|
|
mod tera_tests {
|
|
|
|
use super::*;
|
|
|
|
use rocket_contrib::Template;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
const UNESCAPED_EXPECTED: &'static str
|
|
|
|
= "\nh_start\ntitle: _test_\nh_end\n\n\n<script />\n\nfoot\n";
|
|
|
|
const ESCAPED_EXPECTED: &'static str
|
|
|
|
= "\nh_start\ntitle: _test_\nh_end\n\n\n<script />\n\nfoot\n";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tera_templates() {
|
|
|
|
let mut map = HashMap::new();
|
|
|
|
map.insert("title", "_test_");
|
|
|
|
map.insert("content", "<script />");
|
|
|
|
|
|
|
|
// Test with a txt file, which shouldn't escape.
|
2017-05-19 10:29:08 +00:00
|
|
|
let template = Template::show(template_root(), "tera/txt_test", &map);
|
|
|
|
assert_eq!(template, Some(UNESCAPED_EXPECTED.into()));
|
2017-01-12 10:52:23 +00:00
|
|
|
|
|
|
|
// Now with an HTML file, which should.
|
2017-05-19 10:29:08 +00:00
|
|
|
let template = Template::show(template_root(), "tera/html_test", &map);
|
|
|
|
assert_eq!(template, Some(ESCAPED_EXPECTED.into()));
|
2017-01-12 10:52:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "handlebars_templates")]
|
|
|
|
mod handlebars_tests {
|
|
|
|
use super::*;
|
|
|
|
use rocket_contrib::Template;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
const EXPECTED: &'static str
|
|
|
|
= "Hello _test_!\n\n<main> <script /> hi </main>\nDone.\n\n";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_handlebars_templates() {
|
|
|
|
let mut map = HashMap::new();
|
|
|
|
map.insert("title", "_test_");
|
|
|
|
map.insert("content", "<script /> hi");
|
|
|
|
|
|
|
|
// Test with a txt file, which shouldn't escape.
|
2017-05-19 10:29:08 +00:00
|
|
|
let template = Template::show(template_root(), "hbs/test", &map);
|
|
|
|
assert_eq!(template, Some(EXPECTED.into()));
|
2017-01-12 10:52:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|