use axum::{ extract::{Json, State}, http::StatusCode, }; use itertools::Itertools; use crate::{event::Heartbeat, test::fixtures}; #[tokio::test] async fn ping_without_subscriptions() { let app = fixtures::scratch_app().await; let recipient = fixtures::identity::create(&app, &fixtures::now()).await; let response = super::handler(State(app.push()), recipient, Json(super::Request {})) .await .expect("sending a ping with no subscriptions always succeeds"); assert_eq!(StatusCode::ACCEPTED, response); assert!( app.publisher() .sent() .into_iter() .filter(|publish| publish.message_eq(&Heartbeat::Heartbeat) && publish.subscriptions.is_empty()) .exactly_one() .is_ok() ); } // More complete testing requires that we figure out how to generate working p256 ECDH keys for // testing _with_, as `web_push` will actually parse and use those keys even if push messages are // ultimately never serialized or sent over HTTP. // // Tests that are missing: // // * Verify that subscribing and sending a ping causes a ping to be delivered to that subscription. // * Verify that two subscriptions both get pings. // * Verify that other users' subscriptions are not pinged. // * Verify that a ping that causes a permanent error causes the subscription to be deleted. // * Verify that a ping that causes a non-permanent error does not cause the subscription to be // deleted. // * Verify that a failure on one subscription doesn't affect delivery on other subscriptions.