summaryrefslogtreecommitdiff
path: root/src/push/handlers/ping/test.rs
blob: 5725131739dd176a2ee1e74e0f431f545a7299a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use axum::{
    extract::{Json, State},
    http::StatusCode,
};

use crate::test::fixtures;

#[tokio::test]
async fn ping_without_subscriptions() {
    let app = fixtures::scratch_app().await;

    let recipient = fixtures::identity::create(&app, &fixtures::now()).await;

    app.vapid()
        .refresh_key(&fixtures::now())
        .await
        .expect("refreshing the VAPID key always succeeds");

    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.webpush().sent().is_empty());
}

// 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.