instrumentality 0.3.0

A data aggregation platform.
Documentation
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
mod common;
use axum::body::Body;
use axum::http::Method;
use axum::http::Request;
use axum::http::StatusCode;
use chrono::Utc;
use common::create_mock_content;
use common::create_mock_presence;
use common::Environment;
use instrumentality::data::Datas;
use tower::Service;
use uuid::Uuid;

/// add tests:
/// - Authentication of the test user works as expected.
/// - Upon receiving a valid single piece of data the add route returns:
///     - an OK.
#[tokio::test]
async fn add() {
    use instrumentality::routes::response::OkResponse;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![create_mock_content(USERNAME, PLATFORM_NAME)],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::CREATED);

    let body = hyper::body::to_bytes(res.into_body()).await.unwrap();
    let okr: OkResponse = serde_json::from_slice(&body).unwrap();

    assert_eq!(okr.response, "OK".to_string());
    env.cleanup().await;
}

/// add_multiple tests:
/// - Authentication of the test user works as expected.
/// - Upon receiving multiple valid pieces of data the add route returns:
///     - an OK.
#[tokio::test]
async fn add_multiple() {
    use instrumentality::routes::response::OkResponse;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![
            create_mock_content(USERNAME, PLATFORM_NAME),
            create_mock_presence(USERNAME, PLATFORM_NAME),
        ],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::CREATED);

    let body = hyper::body::to_bytes(res.into_body()).await.unwrap();
    let okr: OkResponse = serde_json::from_slice(&body).unwrap();

    assert_eq!(okr.response, "OK".to_string());
    env.cleanup().await;
}

/// add_bad_key tests:
/// - Authentication of the test user fails with an invalid key.
#[tokio::test]
async fn add_bad_key() {
    use instrumentality::routes::response::ErrorResponse;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_API_KEY: &str = "INVALID_API_KEY";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![create_mock_content(USERNAME, PLATFORM_NAME)],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", INVALID_API_KEY)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::UNAUTHORIZED);

    let body = hyper::body::to_bytes(res.into_body()).await.unwrap();
    let er: ErrorResponse = serde_json::from_slice(&body).unwrap();

    assert_eq!(er.response, "ERROR".to_string());
    env.cleanup().await;
}

/// add_bad_queue_id tests:
/// - Adding data fails when an invalid queue ID is provided.
#[tokio::test]
async fn add_bad_queue_id() {
    use instrumentality::routes::response::ErrorResponse;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_QUEUE_ID: &str = "INVALID_QUEUE_ID";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: Some(INVALID_QUEUE_ID.to_string()),
        data: vec![create_mock_content(USERNAME, PLATFORM_NAME)],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    let body = hyper::body::to_bytes(res.into_body()).await.unwrap();
    let er: ErrorResponse = serde_json::from_slice(&body).unwrap();

    assert_eq!(er.response, "ERROR".to_string());
    env.cleanup().await;
}

/// add_empty_data tests:
/// - Adding data fails when no data is provided.
#[tokio::test]
async fn add_empty_data() {
    use instrumentality::routes::response::ErrorResponse;

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    let body = hyper::body::to_bytes(res.into_body()).await.unwrap();
    let er: ErrorResponse = serde_json::from_slice(&body).unwrap();

    assert_eq!(er.response, "ERROR".to_string());
    env.cleanup().await;
}

/// add_invalid_content_type tests:
/// - Authentication of the test user works as expected.
/// - Adding data fails when a content with an invalid content type is provided.
#[tokio::test]
async fn add_invalid_content_type() {
    use instrumentality::data::Data;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_CONTENT_TYPE: &str = "INVALID_CONTENT_TYPE";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![Data::Content {
            id: USERNAME.to_string(),
            platform: PLATFORM_NAME.to_string(),
            content_type: INVALID_CONTENT_TYPE.to_string(),
            retrieved_at: Utc::now(),
            content_id: Uuid::new_v4().to_string(),
            deleted: Some(false),
            retrieved_from: None,
            created_at: None,
            body: None,
            media: None,
            references: None,
            added_by: None,
            added_at: None,
        }],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    env.cleanup().await;
}

/// add_invalid_presence_type tests:
/// - Authentication of the test user works as expected.
/// - Adding data fails when a presence with an invalid presence type is
///   provided.
#[tokio::test]
async fn add_invalid_presence_type() {
    use instrumentality::data::Data;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_PRESENCE_TYPE: &str = "INVALID_PRESENCE_TYPE";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![Data::Presence {
            id: USERNAME.to_string(),
            platform: PLATFORM_NAME.to_string(),
            presence_type: INVALID_PRESENCE_TYPE.to_string(),
            retrieved_at: Utc::now(),
            added_by: None,
            added_at: None,
        }],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    env.cleanup().await;
}

/// add_invalid_presence_type_for_platform tests:
/// - Authentication of the test user works as expected.
/// - Adding data fails when a presence with an invalid presence type is
///   provided, but the presence type would be valid for another platform.
#[tokio::test]
async fn add_invalid_presence_type_for_platform() {
    use instrumentality::data::Data;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_PRESENCE_TYPE_FOR_PLATFORM: &str = "streaming_now";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![Data::Presence {
            id: USERNAME.to_string(),
            platform: PLATFORM_NAME.to_string(),
            presence_type: INVALID_PRESENCE_TYPE_FOR_PLATFORM.to_string(),
            retrieved_at: Utc::now(),
            added_by: None,
            added_at: None,
        }],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    env.cleanup().await;
}

/// add_invalid_content_type_for_platform tests:
/// - Authentication of the test user works as expected.
/// - Adding data fails when a content with an invalid content type is provided,
///   but the content type would be valid for another platform.
#[tokio::test]
async fn add_invalid_content_type_for_platform() {
    use instrumentality::data::Data;

    const PLATFORM_NAME: &str = "PLATFORM_1";
    const USERNAME: &str = "TEST_USER_1";
    const INVALID_CONTENT_TYPE_FOR_PLATFORM: &str = "scrobble";

    let mut env = Environment::default().await;

    let datas = Datas {
        queue_id: None,
        data: vec![Data::Content {
            id: USERNAME.to_string(),
            platform: PLATFORM_NAME.to_string(),
            content_type: INVALID_CONTENT_TYPE_FOR_PLATFORM.to_string(),
            retrieved_at: Utc::now(),
            content_id: Uuid::new_v4().to_string(),
            deleted: Some(false),
            retrieved_from: None,
            created_at: None,
            body: None,
            media: None,
            references: None,
            added_by: None,
            added_at: None,
        }],
    };

    let res = env
        .app
        .call(
            Request::builder()
                .method(Method::POST)
                .header("X-API-KEY", &env.user_key)
                .header(
                    axum::http::header::CONTENT_TYPE,
                    mime::APPLICATION_JSON.as_ref(),
                )
                .uri("/add")
                .body(Body::from(serde_json::to_vec(&datas).unwrap()))
                .unwrap(),
        )
        .await
        .unwrap();

    assert_eq!(res.status(), StatusCode::BAD_REQUEST);

    env.cleanup().await;
}