test: move logic to helpers
Some checks failed
Rust / Test (push) Has been cancelled
Rust / Rustfmt (push) Has been cancelled
Rust / Clippy (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled

This commit is contained in:
Sandro Eiler 2024-04-18 23:48:34 +02:00
parent efd1137c71
commit 6e07d9c33a
3 changed files with 38 additions and 31 deletions

View file

@ -18,23 +18,10 @@ async fn subscribe_sends_a_confirmation_email_with_a_link() {
app.post_subscriptions(body.into()).await;
// Assert
// Get the first intercepted request
let email_request = &app.email_server.received_requests().await.unwrap()[0];
// Parse the body as JSON, starting from raw bytes
let body: serde_json::Value = serde_json::from_slice(&email_request.body).unwrap();
// Extract the link from one of the request fields.
let get_link = |s: &str| {
let links: Vec<_> = linkify::LinkFinder::new()
.links(s)
.filter(|l| *l.kind() == linkify::LinkKind::Url)
.collect();
assert_eq!(links.len(), 1);
links[0].as_str().to_owned()
};
let html_link = get_link(body["HtmlBody"].as_str().unwrap());
let text_link = get_link(body["TextBody"].as_str().unwrap());
let confirmation_links = app.get_confirmation_links(email_request);
// The two links should be identical
assert_eq!(html_link, text_link);
assert_eq!(confirmation_links.html, confirmation_links.plain_text);
}
#[tokio::test]