use crate::helpers::spawn_app; use reqwest::Url; use wiremock::matchers::{method, path}; use wiremock::{Mock, ResponseTemplate}; #[tokio::test] async fn the_link_returned_by_subscribe_returns_a_200_if_called() { // Arrange let app = spawn_app().await; let body = "name=le%20guin&email=ursula_le_guin%40gmail.com"; Mock::given(path("/email")) .and(method("POST")) .respond_with(ResponseTemplate::new(200)) .mount(&app.email_server) .await; app.post_subscriptions(body.into()).await; let email_request = &app.email_server.received_requests().await.unwrap()[0]; let confirmation_links = app.get_confirmation_links(email_request); // Act let response = reqwest::get(confirmation_links.html).await.unwrap(); // Assert assert_eq!(response.status().as_u16(), 200); } #[tokio::test] async fn confirmations_without_token_are_rejected_with_a_400() { // Arrange let app = spawn_app().await; // Act let response = reqwest::get(&format!("{}/subscriptions/confirm", app.address)) .await .unwrap(); // Assert assert_eq!(response.status().as_u16(), 400); }