You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

423 lines
18KB

  1. extern crate site;
  2. extern crate tempfile;
  3. use std::collections::HashMap;
  4. use std::env;
  5. use std::path::Path;
  6. use std::fs::File;
  7. use std::io::prelude::*;
  8. use tempfile::tempdir;
  9. use site::Site;
  10. #[test]
  11. fn can_parse_site() {
  12. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  13. path.push("test_site");
  14. let mut site = Site::new(&path, "config.toml").unwrap();
  15. site.load().unwrap();
  16. // Correct number of pages (sections are pages too)
  17. assert_eq!(site.pages.len(), 14);
  18. let posts_path = path.join("content").join("posts");
  19. // Make sure we remove all the pwd + content from the sections
  20. let basic = &site.pages[&posts_path.join("simple.md")];
  21. assert_eq!(basic.file.components, vec!["posts".to_string()]);
  22. // Make sure the page with a url doesn't have any sections
  23. let url_post = &site.pages[&posts_path.join("fixed-url.md")];
  24. assert_eq!(url_post.path, "a-fixed-url/");
  25. // Make sure the article in a folder with only asset doesn't get counted as a section
  26. let asset_folder_post = &site.pages[&posts_path.join("with-assets").join("index.md")];
  27. assert_eq!(asset_folder_post.file.components, vec!["posts".to_string()]);
  28. // That we have the right number of sections
  29. assert_eq!(site.sections.len(), 7);
  30. // And that the sections are correct
  31. let index_section = &site.sections[&path.join("content").join("_index.md")];
  32. assert_eq!(index_section.subsections.len(), 3);
  33. assert_eq!(index_section.pages.len(), 1);
  34. let posts_section = &site.sections[&posts_path.join("_index.md")];
  35. assert_eq!(posts_section.subsections.len(), 1);
  36. assert_eq!(posts_section.pages.len(), 6);
  37. let tutorials_section = &site.sections[&posts_path.join("tutorials").join("_index.md")];
  38. assert_eq!(tutorials_section.subsections.len(), 2);
  39. assert_eq!(tutorials_section.subsections[0].clone().meta.title.unwrap(), "Programming");
  40. assert_eq!(tutorials_section.subsections[1].clone().meta.title.unwrap(), "DevOps");
  41. assert_eq!(tutorials_section.pages.len(), 0);
  42. let devops_section = &site.sections[&posts_path.join("tutorials").join("devops").join("_index.md")];
  43. assert_eq!(devops_section.subsections.len(), 0);
  44. assert_eq!(devops_section.pages.len(), 2);
  45. let prog_section = &site.sections[&posts_path.join("tutorials").join("programming").join("_index.md")];
  46. assert_eq!(prog_section.subsections.len(), 0);
  47. assert_eq!(prog_section.pages.len(), 2);
  48. }
  49. // 2 helper macros to make all the build testing more bearable
  50. macro_rules! file_exists {
  51. ($root: expr, $path: expr) => {
  52. {
  53. let mut path = $root.clone();
  54. for component in $path.split("/") {
  55. path = path.join(component);
  56. }
  57. Path::new(&path).exists()
  58. }
  59. }
  60. }
  61. macro_rules! file_contains {
  62. ($root: expr, $path: expr, $text: expr) => {
  63. {
  64. let mut path = $root.clone();
  65. for component in $path.split("/") {
  66. path = path.join(component);
  67. }
  68. let mut file = File::open(&path).unwrap();
  69. let mut s = String::new();
  70. file.read_to_string(&mut s).unwrap();
  71. println!("{}", s);
  72. s.contains($text)
  73. }
  74. }
  75. }
  76. #[test]
  77. fn can_build_site_without_live_reload() {
  78. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  79. path.push("test_site");
  80. let mut site = Site::new(&path, "config.toml").unwrap();
  81. site.load().unwrap();
  82. let tmp_dir = tempdir().expect("create temp dir");
  83. let public = &tmp_dir.path().join("public");
  84. site.set_output_path(&public);
  85. site.build().unwrap();
  86. assert!(&public.exists());
  87. assert!(file_exists!(public, "index.html"));
  88. assert!(file_exists!(public, "sitemap.xml"));
  89. assert!(file_exists!(public, "robots.txt"));
  90. assert!(file_exists!(public, "a-fixed-url/index.html"));
  91. assert!(file_exists!(public, "posts/python/index.html"));
  92. // Shortcodes work
  93. assert!(file_contains!(public, "posts/python/index.html", "Basic shortcode"));
  94. assert!(file_contains!(public, "posts/python/index.html", "Arrrh Bob"));
  95. assert!(file_contains!(public, "posts/python/index.html", "Arrrh Bob_Sponge"));
  96. assert!(file_exists!(public, "posts/tutorials/devops/nix/index.html"));
  97. assert!(file_exists!(public, "posts/with-assets/index.html"));
  98. assert!(file_exists!(public, "posts/no-section/simple/index.html"));
  99. // Sections
  100. assert!(file_exists!(public, "posts/index.html"));
  101. assert!(file_exists!(public, "posts/tutorials/index.html"));
  102. assert!(file_exists!(public, "posts/tutorials/devops/index.html"));
  103. assert!(file_exists!(public, "posts/tutorials/programming/index.html"));
  104. // Ensure subsection pages are correctly filled
  105. assert!(file_contains!(public, "posts/tutorials/index.html", "Sub-pages: 2"));
  106. // TODO: add assertion for syntax highlighting
  107. // aliases work
  108. assert!(file_exists!(public, "an-old-url/old-page/index.html"));
  109. assert!(file_contains!(public, "an-old-url/old-page/index.html", "something-else"));
  110. // html aliases work
  111. assert!(file_exists!(public, "an-old-url/an-old-alias.html"));
  112. assert!(file_contains!(public, "an-old-url/an-old-alias.html", "something-else"));
  113. // redirect_to works
  114. assert!(file_exists!(public, "posts/tutorials/devops/index.html"));
  115. assert!(file_contains!(public, "posts/tutorials/devops/index.html", "docker"));
  116. // No tags or categories
  117. assert_eq!(file_exists!(public, "categories/index.html"), false);
  118. assert_eq!(file_exists!(public, "tags/index.html"), false);
  119. // Theme files are there
  120. assert!(file_exists!(public, "sample.css"));
  121. assert!(file_exists!(public, "some.js"));
  122. // SASS and SCSS files compile correctly
  123. assert!(file_exists!(public, "blog.css"));
  124. assert!(file_contains!(public, "blog.css", "red"));
  125. assert!(file_contains!(public, "blog.css", "blue"));
  126. assert!(!file_contains!(public, "blog.css", "@import \"included\""));
  127. assert!(file_contains!(public, "blog.css", "2rem")); // check include
  128. assert!(!file_exists!(public, "_included.css"));
  129. assert!(file_exists!(public, "scss.css"));
  130. assert!(file_exists!(public, "sass.css"));
  131. assert!(file_exists!(public, "nested_sass/sass.css"));
  132. assert!(file_exists!(public, "nested_sass/scss.css"));
  133. // no live reload code
  134. assert_eq!(file_contains!(public, "index.html", "/livereload.js?port=1112&mindelay=10"), false);
  135. // Both pages and sections are in the sitemap
  136. assert!(file_contains!(public, "sitemap.xml", "<loc>https://replace-this-with-your-url.com/posts/simple/</loc>"));
  137. assert!(file_contains!(public, "sitemap.xml", "<loc>https://replace-this-with-your-url.com/posts/</loc>"));
  138. // Drafts are not in the sitemap
  139. assert!(!file_contains!(public, "sitemap.xml", "draft"));
  140. }
  141. #[test]
  142. fn can_build_site_with_live_reload() {
  143. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  144. path.push("test_site");
  145. let mut site = Site::new(&path, "config.toml").unwrap();
  146. site.load().unwrap();
  147. let tmp_dir = tempdir().expect("create temp dir");
  148. let public = &tmp_dir.path().join("public");
  149. site.set_output_path(&public);
  150. site.enable_live_reload();
  151. site.build().unwrap();
  152. assert!(Path::new(&public).exists());
  153. assert!(file_exists!(public, "index.html"));
  154. assert!(file_exists!(public, "sitemap.xml"));
  155. assert!(file_exists!(public, "robots.txt"));
  156. assert!(file_exists!(public, "a-fixed-url/index.html"));
  157. assert!(file_exists!(public, "posts/python/index.html"));
  158. assert!(file_exists!(public, "posts/tutorials/devops/nix/index.html"));
  159. assert!(file_exists!(public, "posts/with-assets/index.html"));
  160. // Sections
  161. assert!(file_exists!(public, "posts/index.html"));
  162. assert!(file_exists!(public, "posts/tutorials/index.html"));
  163. assert!(file_exists!(public, "posts/tutorials/devops/index.html"));
  164. assert!(file_exists!(public, "posts/tutorials/programming/index.html"));
  165. // TODO: add assertion for syntax highlighting
  166. // No tags or categories
  167. assert_eq!(file_exists!(public, "categories/index.html"), false);
  168. assert_eq!(file_exists!(public, "tags/index.html"), false);
  169. // no live reload code
  170. assert!(file_contains!(public, "index.html", "/livereload.js"));
  171. // the summary anchor link has been created
  172. assert!(file_contains!(public, "posts/python/index.html", r#"<a name="continue-reading"></a>"#));
  173. assert!(file_contains!(public, "posts/draft/index.html", r#"THEME_SHORTCODE"#));
  174. }
  175. #[test]
  176. fn can_build_site_with_taxonomies() {
  177. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  178. path.push("test_site");
  179. let mut site = Site::new(&path, "config.toml").unwrap();
  180. site.load().unwrap();
  181. for (i, page) in site.pages.values_mut().enumerate() {
  182. page.meta.taxonomies = {
  183. let mut taxonomies = HashMap::new();
  184. taxonomies.insert("categories".to_string(), vec![if i % 2 == 0 { "A" } else { "B" }.to_string()]);
  185. taxonomies
  186. };
  187. }
  188. site.populate_taxonomies();
  189. let tmp_dir = tempdir().expect("create temp dir");
  190. let public = &tmp_dir.path().join("public");
  191. site.set_output_path(&public);
  192. site.build().unwrap();
  193. assert!(Path::new(&public).exists());
  194. assert_eq!(site.taxonomies.len(), 1);
  195. assert!(file_exists!(public, "index.html"));
  196. assert!(file_exists!(public, "sitemap.xml"));
  197. assert!(file_exists!(public, "robots.txt"));
  198. assert!(file_exists!(public, "a-fixed-url/index.html"));
  199. assert!(file_exists!(public, "posts/python/index.html"));
  200. assert!(file_exists!(public, "posts/tutorials/devops/nix/index.html"));
  201. assert!(file_exists!(public, "posts/with-assets/index.html"));
  202. // Sections
  203. assert!(file_exists!(public, "posts/index.html"));
  204. assert!(file_exists!(public, "posts/tutorials/index.html"));
  205. assert!(file_exists!(public, "posts/tutorials/devops/index.html"));
  206. assert!(file_exists!(public, "posts/tutorials/programming/index.html"));
  207. // Categories are there
  208. assert!(file_exists!(public, "categories/index.html"));
  209. assert!(file_exists!(public, "categories/a/index.html"));
  210. assert!(file_exists!(public, "categories/b/index.html"));
  211. assert!(file_exists!(public, "categories/a/rss.xml"));
  212. assert!(file_contains!(public, "categories/a/rss.xml", "https://replace-this-with-your-url.com/categories/a/rss.xml"));
  213. // Extending from a theme works
  214. assert!(file_contains!(public, "categories/a/index.html", "EXTENDED"));
  215. // Tags aren't
  216. assert_eq!(file_exists!(public, "tags/index.html"), false);
  217. // Categories are in the sitemap
  218. assert!(file_contains!(public, "sitemap.xml", "<loc>https://replace-this-with-your-url.com/categories/</loc>"));
  219. assert!(file_contains!(public, "sitemap.xml", "<loc>https://replace-this-with-your-url.com/categories/a/</loc>"));
  220. }
  221. #[test]
  222. fn can_build_site_and_insert_anchor_links() {
  223. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  224. path.push("test_site");
  225. let mut site = Site::new(&path, "config.toml").unwrap();
  226. site.load().unwrap();
  227. let tmp_dir = tempdir().expect("create temp dir");
  228. let public = &tmp_dir.path().join("public");
  229. site.set_output_path(&public);
  230. site.build().unwrap();
  231. assert!(Path::new(&public).exists());
  232. // anchor link inserted
  233. assert!(file_contains!(public, "posts/something-else/index.html", "<h1 id=\"title\"><a class=\"gutenberg-anchor\" href=\"#title\""));
  234. }
  235. #[test]
  236. fn can_build_site_with_pagination_for_section() {
  237. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  238. path.push("test_site");
  239. let mut site = Site::new(&path, "config.toml").unwrap();
  240. site.load().unwrap();
  241. for section in site.sections.values_mut(){
  242. if section.is_index() {
  243. continue;
  244. }
  245. section.meta.paginate_by = Some(2);
  246. section.meta.template = Some("section_paginated.html".to_string());
  247. }
  248. let tmp_dir = tempdir().expect("create temp dir");
  249. let public = &tmp_dir.path().join("public");
  250. site.set_output_path(&public);
  251. site.build().unwrap();
  252. assert!(Path::new(&public).exists());
  253. assert!(file_exists!(public, "index.html"));
  254. assert!(file_exists!(public, "sitemap.xml"));
  255. assert!(file_exists!(public, "robots.txt"));
  256. assert!(file_exists!(public, "a-fixed-url/index.html"));
  257. assert!(file_exists!(public, "posts/python/index.html"));
  258. assert!(file_exists!(public, "posts/tutorials/devops/nix/index.html"));
  259. assert!(file_exists!(public, "posts/with-assets/index.html"));
  260. // Sections
  261. assert!(file_exists!(public, "posts/index.html"));
  262. // And pagination!
  263. assert!(file_exists!(public, "posts/page/1/index.html"));
  264. // even if there is no pages, only the section!
  265. assert!(file_exists!(public, "paginated/page/1/index.html"));
  266. assert!(file_exists!(public, "paginated/index.html"));
  267. // should redirect to posts/
  268. assert!(file_contains!(
  269. public,
  270. "posts/page/1/index.html",
  271. "http-equiv=\"refresh\" content=\"0;url=https://replace-this-with-your-url.com/posts/\""
  272. ));
  273. assert!(file_contains!(public, "posts/index.html", "Num pagers: 3"));
  274. assert!(file_contains!(public, "posts/index.html", "Page size: 2"));
  275. assert!(file_contains!(public, "posts/index.html", "Current index: 1"));
  276. assert!(file_contains!(public, "posts/index.html", "has_next"));
  277. assert!(file_contains!(public, "posts/index.html", "First: https://replace-this-with-your-url.com/posts/"));
  278. assert!(file_contains!(public, "posts/index.html", "Last: https://replace-this-with-your-url.com/posts/page/3/"));
  279. assert_eq!(file_contains!(public, "posts/index.html", "has_prev"), false);
  280. assert!(file_exists!(public, "posts/page/2/index.html"));
  281. assert!(file_contains!(public, "posts/page/2/index.html", "Num pagers: 3"));
  282. assert!(file_contains!(public, "posts/page/2/index.html", "Page size: 2"));
  283. assert!(file_contains!(public, "posts/page/2/index.html", "Current index: 2"));
  284. assert!(file_contains!(public, "posts/page/2/index.html", "has_prev"));
  285. assert!(file_contains!(public, "posts/page/2/index.html", "has_next"));
  286. assert!(file_contains!(public, "posts/page/2/index.html", "First: https://replace-this-with-your-url.com/posts/"));
  287. assert!(file_contains!(public, "posts/page/2/index.html", "Last: https://replace-this-with-your-url.com/posts/page/3/"));
  288. }
  289. #[test]
  290. fn can_build_site_with_pagination_for_index() {
  291. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  292. path.push("test_site");
  293. let mut site = Site::new(&path, "config.toml").unwrap();
  294. site.load().unwrap();
  295. {
  296. let index = site.sections.get_mut(&path.join("content").join("_index.md")).unwrap();
  297. index.meta.paginate_by = Some(2);
  298. index.meta.template = Some("index_paginated.html".to_string());
  299. }
  300. let tmp_dir = tempdir().expect("create temp dir");
  301. let public = &tmp_dir.path().join("public");
  302. site.set_output_path(&public);
  303. site.build().unwrap();
  304. assert!(Path::new(&public).exists());
  305. assert!(file_exists!(public, "index.html"));
  306. assert!(file_exists!(public, "sitemap.xml"));
  307. assert!(file_exists!(public, "robots.txt"));
  308. assert!(file_exists!(public, "a-fixed-url/index.html"));
  309. assert!(file_exists!(public, "posts/python/index.html"));
  310. assert!(file_exists!(public, "posts/tutorials/devops/nix/index.html"));
  311. assert!(file_exists!(public, "posts/with-assets/index.html"));
  312. // And pagination!
  313. assert!(file_exists!(public, "page/1/index.html"));
  314. // even if there is no pages, only the section!
  315. assert!(file_exists!(public, "paginated/page/1/index.html"));
  316. assert!(file_exists!(public, "paginated/index.html"));
  317. // should redirect to index
  318. assert!(file_contains!(
  319. public,
  320. "page/1/index.html",
  321. "http-equiv=\"refresh\" content=\"0;url=https://replace-this-with-your-url.com/\""
  322. ));
  323. assert!(file_contains!(public, "index.html", "Num pages: 1"));
  324. assert!(file_contains!(public, "index.html", "Current index: 1"));
  325. assert!(file_contains!(public, "index.html", "First: https://replace-this-with-your-url.com/"));
  326. assert!(file_contains!(public, "index.html", "Last: https://replace-this-with-your-url.com/"));
  327. assert_eq!(file_contains!(public, "index.html", "has_prev"), false);
  328. assert_eq!(file_contains!(public, "index.html", "has_next"), false);
  329. }
  330. #[test]
  331. fn can_build_rss_feed() {
  332. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  333. path.push("test_site");
  334. let mut site = Site::new(&path, "config.toml").unwrap();
  335. site.load().unwrap();
  336. let tmp_dir = tempdir().expect("create temp dir");
  337. let public = &tmp_dir.path().join("public");
  338. site.set_output_path(&public);
  339. site.build().unwrap();
  340. assert!(Path::new(&public).exists());
  341. assert!(file_exists!(public, "rss.xml"));
  342. // latest article is posts/simple.md
  343. assert!(file_contains!(public, "rss.xml", "Simple article with shortcodes"));
  344. // Next is posts/python.md
  345. assert!(file_contains!(public, "rss.xml", "Python in posts"));
  346. }
  347. #[test]
  348. fn can_build_search_index() {
  349. let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
  350. path.push("test_site");
  351. let mut site = Site::new(&path, "config.toml").unwrap();
  352. site.load().unwrap();
  353. site.config.build_search_index = true;
  354. let tmp_dir = tempdir().expect("create temp dir");
  355. let public = &tmp_dir.path().join("public");
  356. site.set_output_path(&public);
  357. site.build().unwrap();
  358. assert!(Path::new(&public).exists());
  359. assert!(file_exists!(public, "elasticlunr.min.js"));
  360. assert!(file_exists!(public, "search_index.en.js"));
  361. }