summaryrefslogtreecommitdiff
path: root/src/push/handlers/subscribe/test.rs
blob: b72624d2b673c5f2498b94cfc0b1e40180d6a703 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
use axum::{
    extract::{Json, State},
    http::StatusCode,
};

use crate::{
    push::app::SubscribeError,
    test::{fixtures, fixtures::event},
};

#[tokio::test]
async fn accepts_new_subscription() {
    let app = fixtures::scratch_app().await;
    let subscriber = fixtures::identity::create(&app, &fixtures::now()).await;

    // Issue a VAPID key.

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

    // Find out what that VAPID key is.

    let boot = app.boot().snapshot().await.expect("boot always succeeds");
    let vapid = boot
        .events
        .into_iter()
        .filter_map(event::vapid)
        .filter_map(event::vapid::changed)
        .next_back()
        .expect("the application will have a vapid key after a refresh");

    // Create a dummy subscription with that key.

    let request = super::Request {
        subscription: super::Subscription {
            endpoint: String::from("https://push.example.com/endpoint"),
            keys: super::Keys {
                p256dh: String::from("test-p256dh-value"),
                auth: String::from("test-auth-value"),
            },
        },
        vapid: vapid.key,
    };
    let response = super::handler(State(app.push()), subscriber, Json(request))
        .await
        .expect("test request will succeed on a fresh app");

    // Check that the response looks as expected.

    assert_eq!(StatusCode::CREATED, response);
}

#[tokio::test]
async fn accepts_repeat_subscription() {
    let app = fixtures::scratch_app().await;
    let subscriber = fixtures::identity::create(&app, &fixtures::now()).await;

    // Issue a VAPID key.

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

    // Find out what that VAPID key is.

    let boot = app.boot().snapshot().await.expect("boot always succeeds");
    let vapid = boot
        .events
        .into_iter()
        .filter_map(event::vapid)
        .filter_map(event::vapid::changed)
        .next_back()
        .expect("the application will have a vapid key after a refresh");

    // Create a dummy subscription with that key.

    let request = super::Request {
        subscription: super::Subscription {
            endpoint: String::from("https://push.example.com/endpoint"),
            keys: super::Keys {
                p256dh: String::from("test-p256dh-value"),
                auth: String::from("test-auth-value"),
            },
        },
        vapid: vapid.key,
    };
    let response = super::handler(State(app.push()), subscriber.clone(), Json(request.clone()))
        .await
        .expect("test request will succeed on a fresh app");

    // Check that the response looks as expected.

    assert_eq!(StatusCode::CREATED, response);

    // Repeat the request

    let response = super::handler(State(app.push()), subscriber, Json(request))
        .await
        .expect("test request will succeed twice on a fresh app");

    // Check that the second response also looks as expected.

    assert_eq!(StatusCode::CREATED, response);
}

#[tokio::test]
async fn rejects_duplicate_subscription() {
    let app = fixtures::scratch_app().await;
    let subscriber = fixtures::identity::create(&app, &fixtures::now()).await;

    // Issue a VAPID key.

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

    // Find out what that VAPID key is.

    let boot = app.boot().snapshot().await.expect("boot always succeeds");
    let vapid = boot
        .events
        .into_iter()
        .filter_map(event::vapid)
        .filter_map(event::vapid::changed)
        .next_back()
        .expect("the application will have a vapid key after a refresh");

    // Create a dummy subscription with that key.

    let request = super::Request {
        subscription: super::Subscription {
            endpoint: String::from("https://push.example.com/endpoint"),
            keys: super::Keys {
                p256dh: String::from("test-p256dh-value"),
                auth: String::from("test-auth-value"),
            },
        },
        vapid: vapid.key,
    };
    super::handler(State(app.push()), subscriber.clone(), Json(request))
        .await
        .expect("test request will succeed on a fresh app");

    // Repeat the request with different keys

    let request = super::Request {
        subscription: super::Subscription {
            endpoint: String::from("https://push.example.com/endpoint"),
            keys: super::Keys {
                p256dh: String::from("different-test-p256dh-value"),
                auth: String::from("different-test-auth-value"),
            },
        },
        vapid: vapid.key,
    };
    let response = super::handler(State(app.push()), subscriber, Json(request))
        .await
        .expect_err("request with duplicate endpoint should fail");

    // Make sure we got the error we expected.

    assert!(matches!(response, super::Error(SubscribeError::Duplicate)));
}

#[tokio::test]
async fn rejects_stale_vapid_key() {
    let app = fixtures::scratch_app().await;
    let subscriber = fixtures::identity::create(&app, &fixtures::now()).await;

    // Issue a VAPID key.

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

    // Find out what that VAPID key is.

    let boot = app.boot().snapshot().await.expect("boot always succeeds");
    let vapid = boot
        .events
        .into_iter()
        .filter_map(event::vapid)
        .filter_map(event::vapid::changed)
        .next_back()
        .expect("the application will have a vapid key after a refresh");

    // Change the VAPID key.

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

    // Find out what the new VAPID key is.

    let boot = app.boot().snapshot().await.expect("boot always succeeds");
    let fresh_vapid = boot
        .events
        .into_iter()
        .filter_map(event::vapid)
        .filter_map(event::vapid::changed)
        .next_back()
        .expect("the application will have a vapid key after a refresh");

    // Create a dummy subscription with the original key.

    let request = super::Request {
        subscription: super::Subscription {
            endpoint: String::from("https://push.example.com/endpoint"),
            keys: super::Keys {
                p256dh: String::from("test-p256dh-value"),
                auth: String::from("test-auth-value"),
            },
        },
        vapid: vapid.key,
    };
    let response = super::handler(State(app.push()), subscriber, Json(request))
        .await
        .expect_err("test request has a stale vapid key");

    // Check that the response looks as expected.

    assert!(matches!(
        response,
        super::Error(SubscribeError::StaleVapidKey(key)) if key == fresh_vapid.key
    ));
}