daphne 0.2.0

Implementation of the DAP specification
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
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
// Copyright (c) 2022 Cloudflare, Inc. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause

use crate::{
    auth::BearerToken,
    constants::{
        MEDIA_TYPE_AGG_CONT_REQ, MEDIA_TYPE_AGG_INIT_REQ, MEDIA_TYPE_AGG_SHARE_REQ,
        MEDIA_TYPE_COLLECT_REQ, MEDIA_TYPE_HPKE_CONFIG, MEDIA_TYPE_REPORT,
    },
    hpke::{HpkeDecrypter, HpkeReceiverConfig},
    messages::{
        AggregateContinueReq, AggregateInitializeReq, AggregateResp, AggregateShareReq,
        AggregateShareResp, BatchSelector, CollectReq, CollectResp, HpkeKemId, Id, Interval,
        PartialBatchSelector, Query, Report, ReportShare, Time, Transition, TransitionFailure,
        TransitionVar,
    },
    roles::{DapAggregator, DapAuthorizedSender, DapHelper, DapLeader},
    testing::{AggStore, DapBatchBucketOwned, MockAggregator, MockAggregatorReportSelector},
    vdaf::VdafVerifyKey,
    DapAbort, DapAggregateShare, DapCollectJob, DapGlobalConfig, DapLeaderTransition,
    DapMeasurement, DapQueryConfig, DapRequest, DapTaskConfig, DapVersion, Prio3Config, VdafConfig,
};
use assert_matches::assert_matches;
use matchit::Router;
use prio::codec::{Decode, Encode};
use rand::{thread_rng, Rng};
use std::{
    borrow::Cow,
    collections::HashMap,
    sync::{Arc, Mutex},
    time::SystemTime,
    vec,
};
use url::Url;

macro_rules! get_reports {
    ($leader:expr, $selector:expr) => {{
        let reports_per_task = $leader.get_reports($selector).await.unwrap();
        assert_eq!(reports_per_task.len(), 1);
        let (task_id, reports_per_part_batch_sel) = reports_per_task.into_iter().next().unwrap();
        assert_eq!(reports_per_part_batch_sel.len(), 1);
        let (part_batch_sel, reports) = reports_per_part_batch_sel.into_iter().next().unwrap();
        (task_id, part_batch_sel, reports)
    }};
}

struct Test {
    now: Time,
    leader: MockAggregator,
    helper: MockAggregator,
    collector_token: BearerToken,
    time_interval_task_id: Id,
    fixed_size_task_id: Id,
    expired_task_id: Id,
}

impl Test {
    fn new() -> Self {
        let now = SystemTime::now()
            .duration_since(SystemTime::UNIX_EPOCH)
            .unwrap()
            .as_secs();
        let mut rng = thread_rng();

        // Global config. In a real deployment, the Leader and Helper may make different choices
        // here.
        let global_config = DapGlobalConfig {
            report_storage_epoch_duration: 604800, // one week
            max_batch_duration: 360000,
            min_batch_interval_start: 259200,
            max_batch_interval_end: 259200,
            supported_hpke_kems: vec![HpkeKemId::X25519HkdfSha256],
        };

        // Task Parameters that the Leader and Helper must agree on.
        let vdaf_config = VdafConfig::Prio3(Prio3Config::Count);
        let leader_url = Url::parse("https://leader.biz/v02/").unwrap();
        let helper_url = Url::parse("http://helper.com:8788/v02/").unwrap();
        let time_precision = 3600;
        let version = DapVersion::Draft02;
        let collector_hpke_receiver_config =
            HpkeReceiverConfig::gen(rng.gen(), HpkeKemId::X25519HkdfSha256);

        // Create the task list.
        let time_interval_task_id = Id(rng.gen());
        let fixed_size_task_id = Id(rng.gen());
        let expired_task_id = Id(rng.gen());
        let mut tasks = HashMap::new();
        tasks.insert(
            time_interval_task_id.clone(),
            DapTaskConfig {
                version,
                collector_hpke_config: collector_hpke_receiver_config.config.clone(),
                leader_url: leader_url.clone(),
                helper_url: helper_url.clone(),
                time_precision,
                expiration: now + 3600,
                min_batch_size: 1,
                query: DapQueryConfig::TimeInterval,
                vdaf: vdaf_config.clone(),
                vdaf_verify_key: VdafVerifyKey::Prio3(rng.gen()),
            },
        );
        tasks.insert(
            fixed_size_task_id.clone(),
            DapTaskConfig {
                version,
                collector_hpke_config: collector_hpke_receiver_config.config.clone(),
                leader_url: leader_url.clone(),
                helper_url: helper_url.clone(),
                time_precision,
                expiration: now + 3600,
                min_batch_size: 1,
                query: DapQueryConfig::FixedSize { max_batch_size: 2 },
                vdaf: vdaf_config.clone(),
                vdaf_verify_key: VdafVerifyKey::Prio3(rng.gen()),
            },
        );
        tasks.insert(
            expired_task_id.clone(),
            DapTaskConfig {
                version,
                collector_hpke_config: collector_hpke_receiver_config.config.clone(),
                leader_url: leader_url.clone(),
                helper_url: helper_url.clone(),
                time_precision,
                expiration: now, // Expires this second
                min_batch_size: 1,
                query: DapQueryConfig::TimeInterval,
                vdaf: vdaf_config.clone(),
                vdaf_verify_key: VdafVerifyKey::Prio3(rng.gen()),
            },
        );

        // Authorization tokens, used for all tasks.
        let leader_token = BearerToken::from("this is a bearer token!");
        let collector_token = BearerToken::from("This is a DIFFERENT token.");

        let leader_hpke_receiver_config_list = global_config
            .gen_hpke_receiver_config_list(rng.gen())
            .into_iter()
            .collect();
        let leader = MockAggregator {
            now,
            global_config: global_config.clone(),
            tasks: tasks.clone(),
            hpke_receiver_config_list: leader_hpke_receiver_config_list,
            leader_token: leader_token.clone(),
            collector_token: Some(collector_token.clone()),
            report_store: Arc::new(Mutex::new(HashMap::new())),
            leader_state_store: Arc::new(Mutex::new(HashMap::new())),
            helper_state_store: Arc::new(Mutex::new(HashMap::new())),
            agg_store: Arc::new(Mutex::new(HashMap::new())),
        };

        let helper_hpke_receiver_config_list = global_config
            .gen_hpke_receiver_config_list(rng.gen())
            .into_iter()
            .collect();
        let helper = MockAggregator {
            now,
            global_config,
            tasks,
            leader_token,
            collector_token: None,
            hpke_receiver_config_list: helper_hpke_receiver_config_list,
            report_store: Arc::new(Mutex::new(HashMap::new())),
            leader_state_store: Arc::new(Mutex::new(HashMap::new())),
            helper_state_store: Arc::new(Mutex::new(HashMap::new())),
            agg_store: Arc::new(Mutex::new(HashMap::new())),
        };

        Self {
            now,
            leader,
            helper,
            collector_token,
            time_interval_task_id,
            fixed_size_task_id,
            expired_task_id,
        }
    }

    fn gen_test_upload_req(&self, report: Report) -> DapRequest<BearerToken> {
        let task_config = self.leader.tasks.get(&report.task_id).unwrap();
        let version = task_config.version.clone();

        DapRequest {
            version,
            media_type: Some(MEDIA_TYPE_REPORT),
            task_id: Some(report.task_id.clone()),
            payload: report.get_encoded(),
            url: task_config.leader_url.join("upload").unwrap(),
            sender_auth: None,
        }
    }

    async fn gen_test_agg_init_req(
        &self,
        task_id: &Id,
        report_shares: Vec<ReportShare>,
    ) -> DapRequest<BearerToken> {
        let mut rng = thread_rng();
        let task_config = self.leader.tasks.get(task_id).unwrap();
        let part_batch_sel = match task_config.query {
            DapQueryConfig::TimeInterval { .. } => PartialBatchSelector::TimeInterval,
            DapQueryConfig::FixedSize { .. } => PartialBatchSelector::FixedSize {
                batch_id: Id(rng.gen()),
            },
        };

        self.leader_authorized_req(
            task_id,
            task_config.version,
            MEDIA_TYPE_AGG_INIT_REQ,
            AggregateInitializeReq {
                task_id: task_id.clone(),
                agg_job_id: Id(rng.gen()),
                agg_param: Vec::default(),
                part_batch_sel,
                report_shares,
            },
            task_config.helper_url.join("aggregate").unwrap(),
        )
        .await
    }

    async fn gen_test_agg_cont_req(
        &self,
        agg_job_id: Id,
        transitions: Vec<Transition>,
    ) -> DapRequest<BearerToken> {
        let task_id = &self.time_interval_task_id;
        let task_config = self.leader.tasks.get(task_id).unwrap();

        self.leader_authorized_req(
            task_id,
            task_config.version,
            MEDIA_TYPE_AGG_CONT_REQ,
            AggregateContinueReq {
                task_id: task_id.clone(),
                agg_job_id,
                transitions,
            },
            task_config.helper_url.join("aggregate").unwrap(),
        )
        .await
    }

    async fn gen_test_agg_share_req(
        &self,
        report_count: u64,
        checksum: [u8; 32],
    ) -> DapRequest<BearerToken> {
        let task_id = &self.time_interval_task_id;
        let task_config = self.leader.tasks.get(task_id).unwrap();

        self.leader_authorized_req(
            task_id,
            task_config.version,
            MEDIA_TYPE_AGG_SHARE_REQ,
            AggregateShareReq {
                task_id: task_id.clone(),
                batch_sel: BatchSelector::default(),
                agg_param: Vec::default(),
                report_count,
                checksum,
            },
            task_config.helper_url.join("aggregate_share").unwrap(),
        )
        .await
    }

    async fn gen_test_report(&self, task_id: &Id) -> Report {
        // Construct HPKE config list.
        let hpke_config_list = [
            self.leader
                .get_hpke_config_for(Some(task_id))
                .await
                .unwrap()
                .as_ref()
                .clone(),
            self.helper
                .get_hpke_config_for(Some(task_id))
                .await
                .unwrap()
                .as_ref()
                .clone(),
        ];

        // Construct report.
        let vdaf_config: &VdafConfig = &VdafConfig::Prio3(Prio3Config::Count);
        let report = vdaf_config
            .produce_report(&hpke_config_list, self.now, task_id, DapMeasurement::U64(1))
            .unwrap();

        report
    }

    // TODO Rework the test framework to call DapLeader::run_agg_job() directly. The method here is
    // basically a re-implementration that allows us to avoid having to mock the HTTP connection.
    // The (major) downside is that we have to keep the code in-sync.
    async fn run_agg_job(&self, task_id: &Id) -> Result<(), DapAbort> {
        let wrapped = self
            .leader
            .get_task_config_for(Cow::Owned(task_id.clone()))
            .await
            .unwrap();
        let task_config = wrapped.as_ref().unwrap();

        // Leader: Store received report to ReportStore.
        let report_sel = MockAggregatorReportSelector(task_id.clone());
        let (task_id, part_batch_sel, reports) = get_reports!(self.leader, &report_sel);

        // Leader: Consume report share.
        let mut rng = thread_rng();
        let agg_job_id = Id(rng.gen());
        let transition = task_config
            .vdaf
            .produce_agg_init_req(
                &self.leader,
                &task_config.vdaf_verify_key,
                &task_id,
                &agg_job_id,
                &part_batch_sel,
                reports,
            )
            .await?;
        assert_matches!(transition, DapLeaderTransition::Continue(..));
        let (leader_state, agg_init_req) = transition.unwrap_continue();

        // Leader: Send aggregate initialization request to Helper and receive response.
        let version = task_config.version.clone();
        let req = self
            .leader_authorized_req(
                &task_id,
                version,
                MEDIA_TYPE_AGG_INIT_REQ,
                agg_init_req,
                task_config.helper_url.join("aggregate").unwrap(),
            )
            .await;
        let res = self.helper.http_post_aggregate(&req).await?;
        let agg_resp = AggregateResp::get_decoded(&res.payload).unwrap();

        // Leader: Produce Leader output share and prepare aggregate continue request for Helper.
        let transition =
            task_config
                .vdaf
                .handle_agg_resp(&task_id, &agg_job_id, leader_state, agg_resp)?;
        assert_matches!(transition, DapLeaderTransition::Uncommitted(..));
        let (leader_uncommitted, agg_cont_req) = transition.unwrap_uncommitted();

        // Leader: Send aggregate continue request to Helper and receive response.
        let version = task_config.version.clone();
        let req = self
            .leader_authorized_req(
                &task_id,
                version,
                MEDIA_TYPE_AGG_CONT_REQ,
                agg_cont_req,
                task_config.helper_url.join("aggregate").unwrap(),
            )
            .await;
        let res = self.helper.http_post_aggregate(&req).await?;
        let agg_resp = AggregateResp::get_decoded(&res.payload)?;

        // Leader: Commit output shares of Leader and Helper.
        let out_shares = task_config
            .vdaf
            .handle_final_agg_resp(leader_uncommitted, agg_resp)?;
        self.leader
            .put_out_shares(&task_id, &part_batch_sel, out_shares)
            .await?;

        Ok(())
    }

    async fn run_col_job(&self, task_id: &Id, query: &Query) -> Result<(), DapAbort> {
        let wrapped = self
            .leader
            .get_task_config_for(Cow::Owned(task_id.clone()))
            .await
            .unwrap();
        let task_config = wrapped.as_ref().unwrap();

        // Collector->Leader: HTTP POST /collect
        let req = self
            .collector_authorized_req(
                task_config.version,
                MEDIA_TYPE_COLLECT_REQ,
                task_id,
                CollectReq {
                    task_id: task_id.clone(),
                    query: query.clone(),
                    agg_param: Vec::default(),
                },
                task_config.helper_url.join("collect").unwrap(),
            )
            .await;

        // Handle request.
        self.leader.http_post_collect(&req).await?;
        let resp = self.leader.get_pending_collect_jobs().await?;
        let (collect_id, collect_req) = &resp[0];

        // Leader: Handle collect job. First, fetch the aggregate share.
        let leader_agg_share = self
            .leader
            .get_agg_share(&collect_req.task_id, &collect_req.query)
            .await?;
        let leader_enc_agg_share = task_config.vdaf.produce_leader_encrypted_agg_share(
            &task_config.collector_hpke_config,
            &collect_req.task_id,
            &collect_req.query,
            &leader_agg_share,
        )?;

        // Leader->Helper: HTTP POST /aggregate_share
        let agg_share_req = AggregateShareReq {
            task_id: collect_req.task_id.clone(),
            batch_sel: collect_req.query.clone(),
            agg_param: collect_req.agg_param.clone(),
            report_count: leader_agg_share.report_count,
            checksum: leader_agg_share.checksum,
        };
        let req = self
            .leader_authorized_req(
                &task_id,
                task_config.version,
                MEDIA_TYPE_AGG_SHARE_REQ,
                agg_share_req.clone(),
                task_config.helper_url.join("aggregate_share").unwrap(),
            )
            .await;

        // Helper: Handle request.
        let res = self.helper.http_post_aggregate_share(&req).await?;
        let agg_share_resp = AggregateShareResp::get_decoded(&res.payload).unwrap();

        // Leader: Complete the collect job.
        let collect_resp = CollectResp {
            part_batch_sel: collect_req.query.clone().into(),
            report_count: leader_agg_share.report_count,
            encrypted_agg_shares: vec![leader_enc_agg_share, agg_share_resp.encrypted_agg_share],
        };
        self.leader
            .finish_collect_job(task_id, collect_id, &collect_resp)
            .await?;
        self.leader
            .mark_collected(task_id, &agg_share_req.batch_sel)
            .await?;

        // Collector: Poll the collect job.
        let collect_job = self.leader.poll_collect_job(&task_id, &collect_id).await?;
        assert_matches!(collect_job, DapCollectJob::Done(..));

        Ok(())
    }

    async fn leader_authorized_req<M: Encode>(
        &self,
        task_id: &Id,
        version: DapVersion,
        media_type: &'static str,
        msg: M,
        url: Url,
    ) -> DapRequest<BearerToken> {
        let payload = msg.get_encoded();
        let sender_auth = Some(
            self.leader
                .authorize(task_id, media_type, &payload)
                .await
                .unwrap(),
        );
        DapRequest {
            version,
            media_type: Some(media_type),
            task_id: Some(task_id.clone()),
            payload,
            url,
            sender_auth,
        }
    }

    async fn collector_authorized_req<M: Encode>(
        &self,
        version: DapVersion,
        media_type: &'static str,
        task_id: &Id,
        msg: M,
        url: Url,
    ) -> DapRequest<BearerToken> {
        DapRequest {
            version,
            media_type: Some(media_type),
            task_id: Some(task_id.clone()),
            payload: msg.get_encoded(),
            url,
            sender_auth: Some(self.collector_token.clone()),
        }
    }
}

// Test that the Helper properly handles the batch parameter in the AggregateInitializeReq.
#[tokio::test]
async fn http_post_aggregate_invalid_batch_sel() {
    let mut rng = thread_rng();
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Helper expects "time_interval" query, but Leader indicates "fixed_size".
    let req = t
        .leader_authorized_req(
            task_id,
            task_config.version,
            MEDIA_TYPE_AGG_INIT_REQ,
            AggregateInitializeReq {
                task_id: task_id.clone(),
                agg_job_id: Id(rng.gen()),
                agg_param: Vec::default(),
                part_batch_sel: PartialBatchSelector::FixedSize {
                    batch_id: Id(rng.gen()),
                },
                report_shares: Vec::default(),
            },
            task_config.helper_url.join("aggregate").unwrap(),
        )
        .await;
    assert_matches!(
        t.helper.http_post_aggregate(&req).await.unwrap_err(),
        DapAbort::QueryMismatch
    );
}

#[tokio::test]
async fn http_post_aggregate_init_unauthorized_request() {
    let t = Test::new();
    let mut req = t
        .gen_test_agg_init_req(&t.time_interval_task_id, Vec::default())
        .await;
    req.sender_auth = None;

    // Expect failure due to missing bearer token.
    assert_matches!(
        t.helper.http_post_aggregate(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );

    // Expect failure due to incorrect bearer token.
    req.sender_auth = Some(BearerToken::from("incorrect auth token!".to_string()));
    assert_matches!(
        t.helper.http_post_aggregate(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );
}

// Test that the Helper rejects reports past the expiration date.
#[tokio::test]
async fn http_post_aggregate_init_expired_task() {
    let t = Test::new();

    let report = t.gen_test_report(&t.expired_task_id).await;
    let report_share = ReportShare {
        metadata: report.metadata,
        public_share: report.public_share,
        encrypted_input_share: report.encrypted_input_shares[1].clone(),
    };
    let req = t
        .gen_test_agg_init_req(&t.expired_task_id, vec![report_share])
        .await;

    let resp = t.helper.http_post_aggregate(&req).await.unwrap();
    let agg_resp = AggregateResp::get_decoded(&resp.payload).unwrap();
    assert_eq!(agg_resp.transitions.len(), 1);
    assert_matches!(
        agg_resp.transitions[0].var,
        TransitionVar::Failed(TransitionFailure::TaskExpired)
    );
}

#[tokio::test]
async fn http_get_hpke_config_unrecognized_task() {
    let t = Test::new();
    let mut rng = thread_rng();
    let task_id = Id(rng.gen());
    let req = DapRequest {
        version: DapVersion::Draft02,
        media_type: Some(MEDIA_TYPE_HPKE_CONFIG),
        payload: Vec::new(),
        task_id: Some(task_id.clone()),
        url: Url::parse(&format!(
            "http://aggregator.biz/v02/hpke_config?task_id={}",
            task_id.to_base64url()
        ))
        .unwrap(),
        sender_auth: None,
    };

    assert_matches!(
        t.leader.http_get_hpke_config(&req).await,
        Err(DapAbort::UnrecognizedTask)
    );
}

#[tokio::test]
async fn http_get_hpke_config_missing_task_id() {
    let t = Test::new();
    let req = DapRequest {
        version: DapVersion::Draft02,
        media_type: Some(MEDIA_TYPE_HPKE_CONFIG),
        task_id: Some(t.time_interval_task_id.clone()),
        payload: Vec::new(),
        url: Url::parse("http://aggregator.biz/v02/hpke_config").unwrap(),
        sender_auth: None,
    };

    // An Aggregator is permitted to abort an HPKE config request if the task ID is missing. Note
    // that Daphne-Workder does not implement this behavior. Instead it returns the HPKE config
    // used for all tasks.
    assert_matches!(
        t.leader.http_get_hpke_config(&req).await,
        Err(DapAbort::MissingTaskId)
    );
}

#[tokio::test]
async fn http_post_aggregate_cont_unauthorized_request() {
    let t = Test::new();
    let mut rng = thread_rng();
    let mut req = t.gen_test_agg_cont_req(Id(rng.gen()), Vec::default()).await;
    req.sender_auth = None;

    // Expect failure due to missing bearer token.
    assert_matches!(
        t.helper.http_post_aggregate(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );

    // Expect failure due to incorrect bearer token.
    req.sender_auth = Some(BearerToken::from("incorrect auth token!".to_string()));
    assert_matches!(
        t.helper.http_post_aggregate(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );
}

#[tokio::test]
async fn http_post_aggregate_share_unauthorized_request() {
    let t = Test::new();
    let mut req = t.gen_test_agg_share_req(0, [0; 32]).await;
    req.sender_auth = None;

    // Expect failure due to missing bearer token.
    assert_matches!(
        t.helper.http_post_aggregate_share(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );

    // Expect failure due to incorrect bearer token.
    req.sender_auth = Some(BearerToken::from("incorrect auth token!".to_string()));
    assert_matches!(
        t.helper.http_post_aggregate_share(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );
}

// Test that the Helper handles the batch selector sent from the Leader properly.
#[tokio::test]
async fn http_post_aggregate_share_invalid_batch_sel() {
    let mut rng = thread_rng();
    let t = Test::new();

    // Helper expects "time_interval" query, but Leader sent "fixed_size".
    let task_config = t.leader.tasks.get(&t.time_interval_task_id).unwrap();
    let req = t
        .leader_authorized_req(
            &t.time_interval_task_id,
            task_config.version,
            MEDIA_TYPE_AGG_SHARE_REQ,
            AggregateShareReq {
                task_id: t.time_interval_task_id.clone(),
                batch_sel: BatchSelector::FixedSize {
                    batch_id: Id(rng.gen()),
                },
                agg_param: Vec::default(),
                report_count: 0,
                checksum: [0; 32],
            },
            task_config.helper_url.join("aggregate_share").unwrap(),
        )
        .await;
    assert_matches!(
        t.helper.http_post_aggregate_share(&req).await.unwrap_err(),
        DapAbort::QueryMismatch
    );

    // Leader sends aggregate share request for unrecognized batch ID.
    let task_config = t.leader.tasks.get(&t.fixed_size_task_id).unwrap();
    let req = t
        .leader_authorized_req(
            &t.fixed_size_task_id,
            task_config.version,
            MEDIA_TYPE_AGG_SHARE_REQ,
            AggregateShareReq {
                task_id: t.fixed_size_task_id.clone(),
                batch_sel: BatchSelector::FixedSize {
                    batch_id: Id(rng.gen()), // Unrecognized batch ID
                },
                agg_param: Vec::default(),
                report_count: 0,
                checksum: [0; 32],
            },
            task_config.helper_url.join("aggregate_share").unwrap(),
        )
        .await;
    assert_matches!(
        t.helper.http_post_aggregate_share(&req).await.unwrap_err(),
        DapAbort::BatchInvalid
    );
}

#[tokio::test]
async fn http_post_collect_unauthorized_request() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();
    let mut req = DapRequest {
        version: task_config.version,
        media_type: Some(MEDIA_TYPE_COLLECT_REQ),
        task_id: Some(task_id.clone()),
        payload: CollectReq {
            task_id: task_id.clone(),
            query: Query::default(),
            agg_param: Vec::default(),
        }
        .get_encoded(),
        url: task_config.leader_url.join("collect").unwrap(),
        sender_auth: None, // Unauthorized request.
    };

    // Expect failure due to missing bearer token.
    assert_matches!(
        t.leader.http_post_collect(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );

    // Expect failure due to incorrect bearer token.
    req.sender_auth = Some(BearerToken::from("incorrect auth token!".to_string()));
    assert_matches!(
        t.leader.http_post_collect(&req).await,
        Err(DapAbort::UnauthorizedRequest)
    );
}

#[tokio::test]
async fn http_post_aggregate_failure_hpke_decrypt_error() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let (metadata, public_share, mut encrypted_input_share) = (
        report.metadata,
        report.public_share,
        report.encrypted_input_shares[1].clone(),
    );
    encrypted_input_share.payload[0] ^= 0xff; // Cause decryption to fail
    let report_shares = vec![ReportShare {
        metadata,
        public_share,
        encrypted_input_share,
    }];
    let req = t.gen_test_agg_init_req(task_id, report_shares).await;

    // Get AggregateResp and then extract the transition data from inside.
    let agg_resp =
        AggregateResp::get_decoded(&t.helper.http_post_aggregate(&req).await.unwrap().payload)
            .unwrap();
    let transition = &agg_resp.transitions[0];

    // Expect failure due to invalid ciphertext.
    assert_matches!(
        transition.var,
        TransitionVar::Failed(TransitionFailure::HpkeDecryptError)
    );
}

#[tokio::test]
async fn http_post_aggregate_transition_continue() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let report_shares = vec![ReportShare {
        metadata: report.metadata.clone(),
        public_share: report.public_share,
        // 1st share is for Leader and the rest is for Helpers (note that there is only 1 helper).
        encrypted_input_share: report.encrypted_input_shares[1].clone(),
    }];
    let req = t.gen_test_agg_init_req(task_id, report_shares).await;

    // Get AggregateResp and then extract the transition data from inside.
    let agg_resp =
        AggregateResp::get_decoded(&t.helper.http_post_aggregate(&req).await.unwrap().payload)
            .unwrap();
    let transition = &agg_resp.transitions[0];

    // Expect success due to valid ciphertext.
    assert_matches!(transition.var, TransitionVar::Continued(_));
}

#[tokio::test]
async fn http_post_aggregate_failure_report_replayed() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let report_shares = vec![ReportShare {
        metadata: report.metadata.clone(),
        public_share: report.public_share,
        // 1st share is for Leader and the rest is for Helpers (note that there is only 1 helper).
        encrypted_input_share: report.encrypted_input_shares[1].clone(),
    }];
    let req = t.gen_test_agg_init_req(task_id, report_shares).await;

    // Add dummy data to report store backend. This is done in a new scope so that the lock on the
    // report store is released before running the test.
    {
        let mut guard = t
            .helper
            .report_store
            .lock()
            .expect("report_store: failed to lock");
        let report_store = guard.entry(task_id.clone()).or_default();
        report_store.processed.insert(report.metadata.id.clone());
    }

    // Get AggregateResp and then extract the transition data from inside.
    let agg_resp =
        AggregateResp::get_decoded(&t.helper.http_post_aggregate(&req).await.unwrap().payload)
            .unwrap();
    let transition = &agg_resp.transitions[0];

    // Expect failure due to report store marked as collected.
    assert_matches!(
        transition.var,
        TransitionVar::Failed(TransitionFailure::ReportReplayed)
    );
}

#[tokio::test]
async fn http_post_aggregate_failure_batch_collected() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.helper.tasks.get(task_id).unwrap();

    let report = t.gen_test_report(task_id).await;
    let report_shares = vec![ReportShare {
        metadata: report.metadata.clone(),
        public_share: report.public_share,
        // 1st share is for Leader and the rest is for Helpers (note that there is only 1 helper).
        encrypted_input_share: report.encrypted_input_shares[1].clone(),
    }];
    let req = t.gen_test_agg_init_req(task_id, report_shares).await;

    // Add mock data to the aggreagte store backend. This is done in its own scope so that the lock
    // is released before running the test. Otherwise the test will deadlock.
    {
        let mut guard = t
            .helper
            .agg_store
            .lock()
            .expect("agg_store: failed to lock");
        let agg_store = guard.entry(task_id.clone()).or_default();

        agg_store.insert(
            DapBatchBucketOwned::TimeInterval {
                batch_window: task_config.truncate_time(t.now),
            },
            AggStore {
                agg_share: DapAggregateShare::default(),
                collected: true,
            },
        );
    }

    // Get AggregateResp and then extract the transition data from inside.
    let agg_resp =
        AggregateResp::get_decoded(&t.helper.http_post_aggregate(&req).await.unwrap().payload)
            .unwrap();
    let transition = &agg_resp.transitions[0];

    // Expect failure due to report store marked as collected.
    assert_matches!(
        transition.var,
        TransitionVar::Failed(TransitionFailure::BatchCollected)
    );
}

#[tokio::test]
async fn http_post_aggregate_abort_helper_state_overwritten() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let report_shares = vec![ReportShare {
        metadata: report.metadata.clone(),
        public_share: report.public_share,
        // 1st share is for Leader and the rest is for Helpers (note that there is only 1 helper).
        encrypted_input_share: report.encrypted_input_shares[1].clone(),
    }];
    let req = t.gen_test_agg_init_req(task_id, report_shares).await;

    // Send aggregate request.
    let _ = t.helper.http_post_aggregate(&req).await;

    // Send another aggregate request.
    let err = t.helper.http_post_aggregate(&req).await.unwrap_err();

    // Expect failure due to overwriting existing helper state.
    assert_matches!(err, DapAbort::BadRequest(e) =>
        assert_eq!(e, "unexpected message for aggregation job (already exists)")
    );
}

#[tokio::test]
async fn http_post_aggregate_fail_send_cont_req() {
    let t = Test::new();
    let mut rng = thread_rng();
    let req = t.gen_test_agg_cont_req(Id(rng.gen()), Vec::default()).await;

    // Send aggregate continue request to helper.
    let err = t.helper.http_post_aggregate(&req).await.unwrap_err();

    // Expect failure due to sending continue request before initialization request.
    assert_matches!(err, DapAbort::UnrecognizedAggregationJob);
}

#[tokio::test]
async fn http_post_upload_fail_send_invalid_report() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Construct a report payload with an invalid task ID.
    let mut report_invalid_task_id = t.gen_test_report(task_id).await;
    report_invalid_task_id.task_id = Id([0; 32]);
    let req = DapRequest {
        version: task_config.version,
        media_type: Some(MEDIA_TYPE_REPORT),
        task_id: Some(report_invalid_task_id.task_id.clone()),
        payload: report_invalid_task_id.get_encoded(),
        url: task_config.leader_url.join("upload").unwrap(),
        sender_auth: None,
    };

    // Expect failure due to invalid task ID in report.
    assert_matches!(
        t.leader.http_post_upload(&req).await,
        Err(DapAbort::UnrecognizedTask)
    );

    // Construct an invalid report payload that only has one input share.
    let mut report_one_input_share = t.gen_test_report(task_id).await;
    report_one_input_share.encrypted_input_shares =
        vec![report_one_input_share.encrypted_input_shares[0].clone()];
    let req = t.gen_test_upload_req(report_one_input_share);

    // Expect failure due to incorrect number of input shares
    assert_matches!(
        t.leader.http_post_upload(&req).await,
        Err(DapAbort::UnrecognizedMessage)
    );
}

// Test that the Leader rejects reports past the expiration date.
#[tokio::test]
async fn http_post_upload_task_expired() {
    let t = Test::new();
    let task_id = &t.expired_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    let report = t.gen_test_report(task_id).await;
    let req = DapRequest {
        version: task_config.version,
        media_type: Some(MEDIA_TYPE_REPORT),
        task_id: Some(task_id.clone()),
        payload: report.get_encoded(),
        url: task_config.leader_url.join("upload").unwrap(),
        sender_auth: None,
    };

    assert_matches!(
        t.leader.http_post_upload(&req).await.unwrap_err(),
        DapAbort::ReportTooLate
    );
}

#[tokio::test]
async fn get_reports_empty_response() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let req = t.gen_test_upload_req(report.clone());

    // Upload report.
    t.leader
        .http_post_upload(&req)
        .await
        .expect("upload failed unexpectedly");

    // Get one report. This should return with the report that was uploaded earlier.
    // We also check that the task ID associated to the report is the same one we
    // requested.
    let report_sel = MockAggregatorReportSelector(task_id.clone());
    let (returned_task_id, _part_batch_sel, reports) = get_reports!(t.leader, &report_sel);
    assert_eq!(reports.len(), 1);
    assert_eq!(&returned_task_id, task_id);

    // Try to get another report. This should not return an error, but simply
    // an empty vector, as we drained the ReportStore above. The task ID
    // associated to the report should be the same one we requested.
    let (returned_task_id, _part_batch_sel, reports) = get_reports!(t.leader, &report_sel);
    assert_eq!(reports.len(), 0);
    assert_eq!(&returned_task_id, task_id);
}

#[tokio::test]
async fn poll_collect_job_test_results() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Collector: Create a CollectReq.
    let version = task_config.version.clone();
    let req = t
        .collector_authorized_req(
            version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            CollectReq {
                task_id: task_id.clone(),
                query: task_config.query_for_current_batch_window(t.now),
                agg_param: Vec::default(),
            },
            task_config.helper_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    t.leader.http_post_collect(&req).await.unwrap();

    // Expect DapCollectJob::Unknown due to invalid collect ID.
    assert_eq!(
        t.leader
            .poll_collect_job(task_id, &Id::default())
            .await
            .unwrap(),
        DapCollectJob::Unknown
    );

    // Leader: Get pending collect job to obtain collect_id
    let resp = t.leader.get_pending_collect_jobs().await.unwrap();
    let (collect_id, _collect_req) = &resp[0];
    let collect_resp = CollectResp {
        part_batch_sel: PartialBatchSelector::TimeInterval,
        report_count: 0,
        encrypted_agg_shares: Vec::default(),
    };

    // Expect DapCollectJob::Pending due to pending collect job.
    assert_eq!(
        t.leader
            .poll_collect_job(task_id, &collect_id)
            .await
            .unwrap(),
        DapCollectJob::Pending
    );

    // Leader: Complete the collect job by storing CollectResp in LeaderStore.processed.
    t.leader
        .finish_collect_job(&task_id, &collect_id, &collect_resp)
        .await
        .unwrap();

    // Expect DapCollectJob::Done due to processed collect job.
    assert_matches!(
        t.leader
            .poll_collect_job(task_id, &collect_id)
            .await
            .unwrap(),
        DapCollectJob::Done(..)
    );
}

#[tokio::test]
async fn http_post_collect_fail_invalid_batch_interval() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Collector: Create a CollectReq with a very large batch interval.
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            CollectReq {
                task_id: task_id.clone(),
                query: Query::TimeInterval {
                    batch_interval: Interval {
                        start: t.now - (t.now % task_config.time_precision),
                        duration: t.leader.global_config.max_batch_duration
                            + task_config.time_precision,
                    },
                },
                agg_param: Vec::default(),
            },
            task_config.helper_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    let err = t.leader.http_post_collect(&req).await.unwrap_err();

    // Fails because the requested batch interval is too large.
    assert_matches!(err, DapAbort::BadRequest(s) => assert_eq!(s, "batch interval too large".to_string()));

    // Collector: Create a CollectReq with a batch interval in the past.
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            CollectReq {
                task_id: task_id.clone(),
                query: Query::TimeInterval {
                    batch_interval: Interval {
                        start: t.now
                            - (t.now % task_config.time_precision)
                            - t.leader.global_config.min_batch_interval_start
                            - task_config.time_precision,
                        duration: task_config.time_precision * 2,
                    },
                },
                agg_param: Vec::default(),
            },
            task_config.helper_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    let err = t.leader.http_post_collect(&req).await.unwrap_err();

    // Fails because the requested batch interval is too far into the past.
    assert_matches!(err, DapAbort::BadRequest(s) => assert_eq!(s, "batch interval too far into past".to_string()));

    // Collector: Create a CollectReq with a batch interval in the future.
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            CollectReq {
                task_id: task_id.clone(),
                query: Query::TimeInterval {
                    batch_interval: Interval {
                        start: t.now - (t.now % task_config.time_precision)
                            + t.leader.global_config.max_batch_interval_end
                            - task_config.time_precision,
                        duration: task_config.time_precision * 2,
                    },
                },
                agg_param: Vec::default(),
            },
            task_config.leader_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    let err = t.leader.http_post_collect(&req).await.unwrap_err();

    // Fails because the requested batch interval is too far into the future.
    assert_matches!(err, DapAbort::BadRequest(s) => assert_eq!(s, "batch interval too far into future".to_string()));
}

#[tokio::test]
async fn http_post_collect_succeed_max_batch_interval() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Collector: Create a CollectReq with a very large batch interval.
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            CollectReq {
                task_id: task_id.clone(),
                query: Query::TimeInterval {
                    batch_interval: Interval {
                        start: t.now
                            - (t.now % task_config.time_precision)
                            - t.leader.global_config.max_batch_duration / 2,
                        duration: t.leader.global_config.max_batch_duration,
                    },
                },
                agg_param: Vec::default(),
            },
            task_config.leader_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    let _collect_uri = t.leader.http_post_collect(&req).await.unwrap();
}

// Send a collect request with an overlapping batch interval.
#[tokio::test]
async fn http_post_collect_fail_overlapping_batch_interval() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Create a report.
    let report = t.gen_test_report(task_id).await;
    let req = t.gen_test_upload_req(report.clone());

    // Client: Send upload request to Leader.
    t.leader.http_post_upload(&req).await.unwrap();

    // Leader: Run aggregation job.
    t.run_agg_job(task_id).await.unwrap();

    // Run first collect job (expect success).
    let query = task_config.query_for_current_batch_window(t.now);
    t.run_col_job(task_id, &query).await.unwrap();

    // run a second collect job (expect failure due to overlapping batch).
    assert_matches!(
        t.run_col_job(task_id, &query).await.unwrap_err(),
        DapAbort::BatchOverlap
    );
}

// Test a successful collect request submission.
// This checks that the Leader reponds with the collect ID with the ID associated to the request.
#[tokio::test]
async fn http_post_collect_success() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Collector: Create a CollectReq.
    let collector_collect_req = CollectReq {
        task_id: task_id.clone(),
        query: task_config.query_for_current_batch_window(t.now),
        agg_param: Vec::default(),
    };
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            task_id,
            collector_collect_req.clone(),
            task_config.leader_url.join("collect").unwrap(),
        )
        .await;

    // Leader: Handle the CollectReq received from Collector.
    let url = t.leader.http_post_collect(&req).await.unwrap();
    let resp = t.leader.get_pending_collect_jobs().await.unwrap();
    let (leader_collect_id, leader_collect_req) = &resp[0];

    // Check that the CollectReq sent by Collector is the same that is received by Leader.
    assert_eq!(&collector_collect_req, leader_collect_req);

    // Check that the collect_id included in the URI is the same with the one received
    // by Leader.
    let path = url.path().to_string();
    let mut router = Router::new();
    router
        .insert("/:version/collect/task/:task_id/req/:collect_id", true)
        .unwrap();
    let url_match = router.at(&path).unwrap();
    let collector_collect_id = url_match.params.get("collect_id").unwrap();
    assert_eq!(
        collector_collect_id.to_string(),
        leader_collect_id.to_base64url()
    );
}

// Test that the Leader handles queries from the Collector properly.
#[tokio::test]
async fn http_post_collect_invalid_query() {
    let mut rng = thread_rng();
    let t = Test::new();

    // Leader expects "time_interval" query, but Collector sent "fixed_size".
    let task_config = t.leader.tasks.get(&t.time_interval_task_id).unwrap();
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            &t.time_interval_task_id,
            CollectReq {
                task_id: t.time_interval_task_id.clone(),
                query: Query::FixedSize {
                    batch_id: Id(rng.gen()),
                },
                agg_param: Vec::default(),
            },
            task_config.leader_url.join("collect").unwrap(),
        )
        .await;
    assert_matches!(
        t.leader.http_post_collect(&req).await.unwrap_err(),
        DapAbort::QueryMismatch
    );

    // Collector indicates unrecognized batch ID.
    let task_config = t.leader.tasks.get(&t.fixed_size_task_id).unwrap();
    let req = t
        .collector_authorized_req(
            task_config.version,
            MEDIA_TYPE_COLLECT_REQ,
            &t.fixed_size_task_id,
            CollectReq {
                task_id: t.fixed_size_task_id.clone(),
                query: Query::FixedSize {
                    batch_id: Id(rng.gen()), // Unrecognized batch ID
                },
                agg_param: Vec::default(),
            },
            task_config.leader_url.join("collect").unwrap(),
        )
        .await;
    assert_matches!(
        t.leader.http_post_collect(&req).await.unwrap_err(),
        DapAbort::BatchInvalid
    );
}

// Test HTTP POST requests with a wrong DAP version.
#[tokio::test]
async fn http_post_fail_wrong_dap_version() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;
    let task_config = t.leader.tasks.get(task_id).unwrap();

    // Send a request with the wrong DAP version.
    let report = t.gen_test_report(task_id).await;
    let mut req = t.gen_test_upload_req(report);
    req.version = DapVersion::Unknown;
    req.url = task_config.leader_url.join("upload").unwrap();

    let err = t.leader.http_post_upload(&req).await.unwrap_err();
    assert_matches!(err, DapAbort::InvalidProtocolVersion);
}

#[tokio::test]
async fn http_post_upload() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let req = t.gen_test_upload_req(report);

    t.leader
        .http_post_upload(&req)
        .await
        .expect("upload failed unexpectedly");
}

#[tokio::test]
async fn e2e_time_interval() {
    let t = Test::new();
    let task_id = &t.time_interval_task_id;

    let report = t.gen_test_report(task_id).await;
    let req = t.gen_test_upload_req(report);

    // Client: Send upload request to Leader.
    t.leader.http_post_upload(&req).await.unwrap();

    // Leader: Run aggregation job.
    t.run_agg_job(task_id).await.unwrap();

    // Collector: Create collection job and poll result.
    let query = t
        .leader
        .tasks
        .get(task_id)
        .unwrap()
        .query_for_current_batch_window(t.now);
    t.run_col_job(task_id, &query).await.unwrap();
}

#[tokio::test]
async fn e2e_fixed_size() {
    let t = Test::new();
    let task_id = &t.fixed_size_task_id;

    let report = t.gen_test_report(task_id).await;
    let req = t.gen_test_upload_req(report);

    // Client: Send upload request to Leader.
    t.leader.http_post_upload(&req).await.unwrap();

    // Leader: Run aggregation job.
    t.run_agg_job(task_id).await.unwrap();

    // Collector: Create collection job and poll result.
    let query = Query::FixedSize {
        batch_id: t.leader.current_batch(task_id).unwrap(),
    };
    t.run_col_job(task_id, &query).await.unwrap();
}