zero-to-production/tests/api/subscriptions_confirm.rs

44 lines
1.1 KiB
Rust
Raw Normal View History

2021-03-11 09:24:57 +00:00
use crate::helpers::spawn_app;
use wiremock::{ResponseTemplate, Mock};
use wiremock::matchers::{path, method};
#[actix_rt::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);
}
#[actix_rt::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];
2021-03-11 21:14:29 +00:00
let confirmation_links = app.get_confirmation_links(&email_request);
2021-03-11 09:24:57 +00:00
// Act
2021-03-11 21:14:29 +00:00
let response = reqwest::get(confirmation_links.html)
2021-03-11 09:24:57 +00:00
.await
.unwrap();
// Assert
assert_eq!(response.status().as_u16(), 200);
}