aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_blog.rs3
-rw-r--r--tests/test_router.rs19
2 files changed, 16 insertions, 6 deletions
diff --git a/tests/test_blog.rs b/tests/test_blog.rs
index b72f800..6cd3249 100644
--- a/tests/test_blog.rs
+++ b/tests/test_blog.rs
@@ -1,4 +1,5 @@
use macroblog::blog::*;
+use macroblog::assets::*;
use chrono::NaiveDate;
@@ -17,7 +18,7 @@ fn test_create_blog_entry() {
#[test]
fn test_read_assets() {
// This test meant to test if all files are parsed correctly
- let assets = BlogEntry::read_assets();
+ let assets = read_assets();
assert!(assets.iter().count() > 1)
}
diff --git a/tests/test_router.rs b/tests/test_router.rs
index 7ebe019..cfd4c32 100644
--- a/tests/test_router.rs
+++ b/tests/test_router.rs
@@ -1,11 +1,11 @@
-use macroblog::router::{Router};
+use macroblog::router::Router;
#[test]
fn test_router_new_posts() {
- match Router::new("/posts/k8s.html") {
+ match Router::new("/posts/2021-12-26Enable_NFS_on_K3S.md") {
Router::NotFound => assert!(false, "Wrong type parse"),
Router::Index => assert!(false, "Wrong type parse"),
- Router::Post { page } => assert_eq!(page, "k8s.html".to_string())
+ Router::Post { page } => assert_eq!(page, "2021-12-26Enable_NFS_on_K3S.md".to_string()),
};
}
@@ -14,7 +14,7 @@ fn test_router_new_index() {
match Router::new("/") {
Router::Index => assert!(true),
Router::NotFound => assert!(false, "Wrong type parse"),
- Router::Post { page: _ } => assert!(false, "Wrong type parse")
+ Router::Post { page: _ } => assert!(false, "Wrong type parse"),
};
}
@@ -23,6 +23,15 @@ fn test_router_new_not_found() {
match Router::new("/not_found") {
Router::NotFound => assert!(true),
Router::Index => assert!(false, "Wrong type parse"),
- Router::Post { page: _ } => assert!(false, "Wrong type parse")
+ Router::Post { page: _ } => assert!(false, "Wrong type parse"),
+ };
+}
+
+#[test]
+fn test_router_new_not_found_matching_regex() {
+ match Router::new("/posts/2021-12-03Enable_NFS_on_K3S.html") {
+ Router::NotFound => assert!(true),
+ Router::Index => assert!(false, "Wrong type parse"),
+ Router::Post { page: _ } => assert!(false, "Wrong type parse"),
};
}