|
- extern crate site;
- mod common;
-
- use std::env;
-
- use common::build_site;
- use site::Site;
-
- #[test]
- fn can_parse_multilingual_site() {
- let mut path = env::current_dir().unwrap().parent().unwrap().parent().unwrap().to_path_buf();
- path.push("test_site_i18n");
- let mut site = Site::new(&path, "config.toml").unwrap();
- site.load().unwrap();
-
- assert_eq!(site.library.pages().len(), 10);
- assert_eq!(site.library.sections().len(), 6);
-
- // default index sections
- let default_index_section =
- site.library.get_section(&path.join("content").join("_index.md")).unwrap();
- assert_eq!(default_index_section.pages.len(), 1);
- assert!(default_index_section.ancestors.is_empty());
-
- let fr_index_section =
- site.library.get_section(&path.join("content").join("_index.fr.md")).unwrap();
- assert_eq!(fr_index_section.pages.len(), 1);
- assert!(fr_index_section.ancestors.is_empty());
-
- // blog sections get only their own language pages
- let blog_path = path.join("content").join("blog");
-
- let default_blog = site.library.get_section(&blog_path.join("_index.md")).unwrap();
- assert_eq!(default_blog.subsections.len(), 0);
- assert_eq!(default_blog.pages.len(), 4);
- assert_eq!(
- default_blog.ancestors,
- vec![*site.library.get_section_key(&default_index_section.file.path).unwrap()]
- );
- for key in &default_blog.pages {
- let page = site.library.get_page_by_key(*key);
- assert_eq!(page.lang, None);
- }
-
- let fr_blog = site.library.get_section(&blog_path.join("_index.fr.md")).unwrap();
- assert_eq!(fr_blog.subsections.len(), 0);
- assert_eq!(fr_blog.pages.len(), 3);
- assert_eq!(
- fr_blog.ancestors,
- vec![*site.library.get_section_key(&fr_index_section.file.path).unwrap()]
- );
- for key in &fr_blog.pages {
- let page = site.library.get_page_by_key(*key);
- assert_eq!(page.lang, Some("fr".to_string()));
- }
- }
-
- #[test]
- fn can_build_multilingual_site() {
- let (_, _tmp_dir, public) = build_site("test_site_i18n");
-
- assert!(public.exists());
-
- // Index pages
- assert!(file_exists!(public, "index.html"));
- assert!(file_exists!(public, "fr/index.html"));
- assert!(file_contains!(public, "fr/index.html", "Une page"));
- assert!(file_contains!(public, "fr/index.html", "Language: fr"));
-
- assert!(file_exists!(public, "base/index.html"));
- assert!(file_exists!(public, "fr/base/index.html"));
-
- // Sections are there as well, with translations info
- assert!(file_exists!(public, "blog/index.html"));
- assert!(file_contains!(
- public,
- "blog/index.html",
- "Translated in fr: Mon blog https://example.com/fr/blog/"
- ));
- assert!(file_contains!(
- public,
- "blog/index.html",
- "Translated in it: Il mio blog https://example.com/it/blog/"
- ));
- assert!(file_exists!(public, "fr/blog/index.html"));
- assert!(file_contains!(public, "fr/blog/index.html", "Language: fr"));
- assert!(file_contains!(
- public,
- "fr/blog/index.html",
- "Translated in : My blog https://example.com/blog/"
- ));
- assert!(file_contains!(
- public,
- "fr/blog/index.html",
- "Translated in it: Il mio blog https://example.com/it/blog/"
- ));
-
- // Normal pages are there with the translations
- assert!(file_exists!(public, "blog/something/index.html"));
- assert!(file_contains!(
- public,
- "blog/something/index.html",
- "Translated in fr: Quelque chose https://example.com/fr/blog/something/"
- ));
- assert!(file_exists!(public, "fr/blog/something/index.html"));
- assert!(file_contains!(public, "fr/blog/something/index.html", "Language: fr"));
- assert!(file_contains!(
- public,
- "fr/blog/something/index.html",
- "Translated in : Something https://example.com/blog/something/"
- ));
-
- // sitemap contains all languages
- assert!(file_exists!(public, "sitemap.xml"));
- assert!(file_contains!(public, "sitemap.xml", "https://example.com/blog/something-else/"));
- assert!(file_contains!(public, "sitemap.xml", "https://example.com/fr/blog/something-else/"));
- assert!(file_contains!(public, "sitemap.xml", "https://example.com/it/blog/something-else/"));
-
- // one rss per language
- assert!(file_exists!(public, "rss.xml"));
- assert!(file_contains!(public, "rss.xml", "https://example.com/blog/something-else/"));
- assert!(!file_contains!(public, "rss.xml", "https://example.com/fr/blog/something-else/"));
- assert!(file_exists!(public, "fr/rss.xml"));
- assert!(!file_contains!(public, "fr/rss.xml", "https://example.com/blog/something-else/"));
- assert!(file_contains!(public, "fr/rss.xml", "https://example.com/fr/blog/something-else/"));
- // Italian doesn't have RSS enabled
- assert!(!file_exists!(public, "it/rss.xml"));
- }
|