forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracker_api.rs
More file actions
552 lines (421 loc) · 19.5 KB
/
Copy pathtracker_api.rs
File metadata and controls
552 lines (421 loc) · 19.5 KB
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/// Integration tests for the tracker API
///
/// ```text
/// cargo test tracker_api -- --nocapture
/// ```
extern crate rand;
mod api;
mod common;
mod tracker_api {
/*
Endpoints:
Stats:
GET /api/stats
Torrents:
GET /api/torrents?offset=:u32&limit=:u32
GET /api/torrent/:info_hash
Whitelisted torrents:
POST /api/whitelist/:info_hash
DELETE /api/whitelist/:info_hash
Whitelist command:
GET /api/whitelist/reload
Keys:
POST /api/key/:seconds_valid
GET /api/keys/reload
DELETE /api/key/:key
*/
use reqwest::Response;
use crate::api::ConnectionInfo;
async fn assert_token_not_valid(response: Response) {
assert_eq!(response.status(), 500);
assert_eq!(
response.text().await.unwrap(),
"Unhandled rejection: Err { reason: \"token not valid\" }"
);
}
async fn assert_unauthorized(response: Response) {
assert_eq!(response.status(), 500);
assert_eq!(
response.text().await.unwrap(),
"Unhandled rejection: Err { reason: \"unauthorized\" }"
);
}
fn connection_with_invalid_token(bind_address: &str) -> ConnectionInfo {
ConnectionInfo::authenticated(bind_address, "invalid token")
}
fn connection_with_no_token(bind_address: &str) -> ConnectionInfo {
ConnectionInfo::anonymous(bind_address)
}
mod for_stats_resources {
use std::str::FromStr;
use torrust_tracker::api::resource::stats::Stats;
use torrust_tracker::protocol::info_hash::InfoHash;
use super::{connection_with_invalid_token, connection_with_no_token};
use crate::api::{sample_peer, start_default_api_server, Client};
use crate::tracker_api::{assert_token_not_valid, assert_unauthorized};
#[tokio::test]
async fn should_allow_getting_tracker_statistics() {
let api_server = start_default_api_server().await;
api_server
.add_torrent(
&InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap(),
&sample_peer(),
)
.await;
let response = Client::new(api_server.get_connection_info()).get_tracker_statistics().await;
assert_eq!(response.status(), 200);
assert_eq!(
response.json::<Stats>().await.unwrap(),
Stats {
torrents: 1,
seeders: 1,
completed: 0,
leechers: 0,
tcp4_connections_handled: 0,
tcp4_announces_handled: 0,
tcp4_scrapes_handled: 0,
tcp6_connections_handled: 0,
tcp6_announces_handled: 0,
tcp6_scrapes_handled: 0,
udp4_connections_handled: 0,
udp4_announces_handled: 0,
udp4_scrapes_handled: 0,
udp6_connections_handled: 0,
udp6_announces_handled: 0,
udp6_scrapes_handled: 0,
}
);
}
#[tokio::test]
async fn should_not_allow_getting_tracker_statistics_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.get_tracker_statistics()
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.get_tracker_statistics()
.await;
assert_unauthorized(response).await;
}
}
mod for_torrent_resources {
use std::str::FromStr;
use torrust_tracker::api::resource;
use torrust_tracker::api::resource::torrent::{self, Torrent};
use torrust_tracker::protocol::info_hash::InfoHash;
use super::{connection_with_invalid_token, connection_with_no_token};
use crate::api::{sample_peer, start_default_api_server, Client, Query, QueryParam};
use crate::tracker_api::{assert_token_not_valid, assert_unauthorized};
#[tokio::test]
async fn should_allow_getting_torrents() {
let api_server = start_default_api_server().await;
let info_hash = InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap();
api_server.add_torrent(&info_hash, &sample_peer()).await;
let response = Client::new(api_server.get_connection_info())
.get_torrents(Query::empty())
.await;
assert_eq!(response.status(), 200);
assert_eq!(
response.json::<Vec<torrent::ListItem>>().await.unwrap(),
vec![torrent::ListItem {
info_hash: "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_string(),
seeders: 1,
completed: 0,
leechers: 0,
peers: None // Torrent list does not include the peer list for each torrent
}]
);
}
#[tokio::test]
async fn should_allow_limiting_the_torrents_in_the_result() {
let api_server = start_default_api_server().await;
// torrents are ordered alphabetically by infohashes
let info_hash_1 = InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap();
let info_hash_2 = InfoHash::from_str("0b3aea4adc213ce32295be85d3883a63bca25446").unwrap();
api_server.add_torrent(&info_hash_1, &sample_peer()).await;
api_server.add_torrent(&info_hash_2, &sample_peer()).await;
let response = Client::new(api_server.get_connection_info())
.get_torrents(Query::params([QueryParam::new("limit", "1")].to_vec()))
.await;
assert_eq!(response.status(), 200);
assert_eq!(
response.json::<Vec<torrent::ListItem>>().await.unwrap(),
vec![torrent::ListItem {
info_hash: "0b3aea4adc213ce32295be85d3883a63bca25446".to_string(),
seeders: 1,
completed: 0,
leechers: 0,
peers: None // Torrent list does not include the peer list for each torrent
}]
);
}
#[tokio::test]
async fn should_allow_the_torrents_result_pagination() {
let api_server = start_default_api_server().await;
// torrents are ordered alphabetically by infohashes
let info_hash_1 = InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap();
let info_hash_2 = InfoHash::from_str("0b3aea4adc213ce32295be85d3883a63bca25446").unwrap();
api_server.add_torrent(&info_hash_1, &sample_peer()).await;
api_server.add_torrent(&info_hash_2, &sample_peer()).await;
let response = Client::new(api_server.get_connection_info())
.get_torrents(Query::params([QueryParam::new("offset", "1")].to_vec()))
.await;
assert_eq!(response.status(), 200);
assert_eq!(
response.json::<Vec<torrent::ListItem>>().await.unwrap(),
vec![torrent::ListItem {
info_hash: "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_string(),
seeders: 1,
completed: 0,
leechers: 0,
peers: None // Torrent list does not include the peer list for each torrent
}]
);
}
#[tokio::test]
async fn should_not_allow_getting_torrents_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.get_torrents(Query::empty())
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.get_torrents(Query::default())
.await;
assert_unauthorized(response).await;
}
#[tokio::test]
async fn should_allow_getting_a_torrent_info() {
let api_server = start_default_api_server().await;
let info_hash = InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap();
let peer = sample_peer();
api_server.add_torrent(&info_hash, &peer).await;
let response = Client::new(api_server.get_connection_info())
.get_torrent(&info_hash.to_string())
.await;
assert_eq!(response.status(), 200);
assert_eq!(
response.json::<Torrent>().await.unwrap(),
Torrent {
info_hash: "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_string(),
seeders: 1,
completed: 0,
leechers: 0,
peers: Some(vec![resource::peer::Peer::from(peer)])
}
);
}
#[tokio::test]
async fn should_not_allow_getting_a_torrent_info_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let info_hash = InfoHash::from_str("9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d").unwrap();
api_server.add_torrent(&info_hash, &sample_peer()).await;
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.get_torrent(&info_hash.to_string())
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.get_torrent(&info_hash.to_string())
.await;
assert_unauthorized(response).await;
}
}
mod for_whitelisted_torrent_resources {
use std::str::FromStr;
use torrust_tracker::protocol::info_hash::InfoHash;
use super::{assert_token_not_valid, connection_with_invalid_token, connection_with_no_token};
use crate::api::{start_default_api_server, Client};
use crate::tracker_api::assert_unauthorized;
#[tokio::test]
async fn should_allow_whitelisting_a_torrent() {
let api_server = start_default_api_server().await;
let info_hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let res = Client::new(api_server.get_connection_info())
.whitelist_a_torrent(&info_hash)
.await;
assert_eq!(res.status(), 200);
assert!(
api_server
.tracker
.is_info_hash_whitelisted(&InfoHash::from_str(&info_hash).unwrap())
.await
);
}
#[tokio::test]
async fn should_allow_whitelisting_a_torrent_that_has_been_already_whitelisted() {
let api_server = start_default_api_server().await;
let info_hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let api_client = Client::new(api_server.get_connection_info());
let res = api_client.whitelist_a_torrent(&info_hash).await;
assert_eq!(res.status(), 200);
let res = api_client.whitelist_a_torrent(&info_hash).await;
assert_eq!(res.status(), 200);
}
#[tokio::test]
async fn should_not_allow_whitelisting_a_torrent_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let info_hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.whitelist_a_torrent(&info_hash)
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.whitelist_a_torrent(&info_hash)
.await;
assert_unauthorized(response).await;
}
#[tokio::test]
async fn should_allow_removing_a_torrent_from_the_whitelist() {
let api_server = start_default_api_server().await;
let hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let info_hash = InfoHash::from_str(&hash).unwrap();
api_server.tracker.add_torrent_to_whitelist(&info_hash).await.unwrap();
let response = Client::new(api_server.get_connection_info())
.remove_torrent_from_whitelist(&hash)
.await;
assert_eq!(response.status(), 200);
assert!(!api_server.tracker.is_info_hash_whitelisted(&info_hash).await);
}
#[tokio::test]
async fn should_not_allow_removing_a_torrent_from_the_whitelist_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let info_hash = InfoHash::from_str(&hash).unwrap();
api_server.tracker.add_torrent_to_whitelist(&info_hash).await.unwrap();
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.remove_torrent_from_whitelist(&hash)
.await;
assert_token_not_valid(response).await;
api_server.tracker.add_torrent_to_whitelist(&info_hash).await.unwrap();
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.remove_torrent_from_whitelist(&hash)
.await;
assert_unauthorized(response).await;
}
#[tokio::test]
async fn should_allow_reload_the_whitelist_from_the_database() {
let api_server = start_default_api_server().await;
let hash = "9e0217d0fa71c87332cd8bf9dbeabcb2c2cf3c4d".to_owned();
let info_hash = InfoHash::from_str(&hash).unwrap();
api_server.tracker.add_torrent_to_whitelist(&info_hash).await.unwrap();
let response = Client::new(api_server.get_connection_info()).reload_whitelist().await;
assert_eq!(response.status(), 200);
/* This assert fails because the whitelist has not been reloaded yet.
We could add a new endpoint GET /api/whitelist/:info_hash to check if a torrent
is whitelisted and use that endpoint to check if the torrent is still there after reloading.
assert!(
!(api_server
.tracker
.is_info_hash_whitelisted(&InfoHash::from_str(&info_hash).unwrap())
.await)
);
*/
}
}
mod for_key_resources {
use std::time::Duration;
use torrust_tracker::api::resource::auth_key::AuthKey;
use torrust_tracker::tracker::auth::Key;
use super::{connection_with_invalid_token, connection_with_no_token};
use crate::api::{start_default_api_server, Client};
use crate::tracker_api::{assert_token_not_valid, assert_unauthorized};
#[tokio::test]
async fn should_allow_generating_a_new_auth_key() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
let response = Client::new(api_server.get_connection_info())
.generate_auth_key(seconds_valid)
.await;
// Verify the key with the tracker
assert!(api_server
.tracker
.verify_auth_key(&Key::from(response.json::<AuthKey>().await.unwrap()))
.await
.is_ok());
}
#[tokio::test]
async fn should_not_allow_generating_a_new_auth_key_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.generate_auth_key(seconds_valid)
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.generate_auth_key(seconds_valid)
.await;
assert_unauthorized(response).await;
}
#[tokio::test]
async fn should_allow_deleting_an_auth_key() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
let auth_key = api_server
.tracker
.generate_auth_key(Duration::from_secs(seconds_valid))
.await
.unwrap();
let response = Client::new(api_server.get_connection_info())
.delete_auth_key(&auth_key.key)
.await;
assert_eq!(response.status(), 200);
assert_eq!(response.text().await.unwrap(), "{\"status\":\"ok\"}");
}
#[tokio::test]
async fn should_not_allow_deleting_an_auth_key_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
// Generate new auth key
let auth_key = api_server
.tracker
.generate_auth_key(Duration::from_secs(seconds_valid))
.await
.unwrap();
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.delete_auth_key(&auth_key.key)
.await;
assert_token_not_valid(response).await;
// Generate new auth key
let auth_key = api_server
.tracker
.generate_auth_key(Duration::from_secs(seconds_valid))
.await
.unwrap();
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.delete_auth_key(&auth_key.key)
.await;
assert_unauthorized(response).await;
}
#[tokio::test]
async fn should_allow_reloading_keys() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
api_server
.tracker
.generate_auth_key(Duration::from_secs(seconds_valid))
.await
.unwrap();
let response = Client::new(api_server.get_connection_info()).reload_keys().await;
assert_eq!(response.status(), 200);
}
#[tokio::test]
async fn should_not_allow_reloading_keys_for_unauthenticated_users() {
let api_server = start_default_api_server().await;
let seconds_valid = 60;
api_server
.tracker
.generate_auth_key(Duration::from_secs(seconds_valid))
.await
.unwrap();
let response = Client::new(connection_with_invalid_token(&api_server.get_bind_address()))
.reload_keys()
.await;
assert_token_not_valid(response).await;
let response = Client::new(connection_with_no_token(&api_server.get_bind_address()))
.reload_keys()
.await;
assert_unauthorized(response).await;
}
}
}