mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-22 08:41:01 +00:00
44 lines
1.3 KiB
Rust
44 lines
1.3 KiB
Rust
|
use crate::helpers::{assert_is_redirect_to, spawn_app};
|
||
|
|
||
|
#[tokio::test]
|
||
|
async fn you_must_be_logged_in_to_access_the_admin_dashboard() {
|
||
|
// Arrange
|
||
|
let app = spawn_app().await;
|
||
|
|
||
|
// Act
|
||
|
let response = app.get_admin_dashboard().await;
|
||
|
|
||
|
// Assert
|
||
|
assert_is_redirect_to(&response, "/login");
|
||
|
}
|
||
|
|
||
|
#[tokio::test]
|
||
|
async fn logout_clears_session_state() {
|
||
|
// Arrange
|
||
|
let app = spawn_app().await;
|
||
|
|
||
|
// Act - Part 1 - Login
|
||
|
let login_body = serde_json::json!({
|
||
|
"username": &app.test_user.username,
|
||
|
"password": &app.test_user.password
|
||
|
});
|
||
|
let response = app.post_login(&login_body).await;
|
||
|
assert_is_redirect_to(&response, "/admin/dashboard");
|
||
|
|
||
|
// Act - Part 2 - Follow the redirect
|
||
|
let html_page = app.get_admin_dashboard_html().await;
|
||
|
assert!(html_page.contains(&format!("Welcome {}", app.test_user.username)));
|
||
|
|
||
|
// Act - Part 3 - Logout
|
||
|
let response = app.post_logout().await;
|
||
|
assert_is_redirect_to(&response, "/login");
|
||
|
|
||
|
// Act - Part 4 - Follow the redirect
|
||
|
let html_page = app.get_login_html().await;
|
||
|
assert!(html_page.contains(r#"<p><i>You have successfully logged out.</i></p>"#));
|
||
|
|
||
|
// Act - Part 5 - Attempt to load admin panel
|
||
|
let response = app.get_admin_dashboard().await;
|
||
|
assert_is_redirect_to(&response, "/login");
|
||
|
}
|