pop-common 0.14.0

Library that provides a collection of essential utilities and shared functionality for pop.
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
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
// SPDX-License-Identifier: GPL-3.0

use crate::{Git, Release, SortedSlice, Status, api, git::GITHUB_API_CLIENT};
pub use binary::*;
use derivative::Derivative;
use duct::cmd;
use flate2::read::GzDecoder;
use regex::Regex;
use reqwest::StatusCode;
use reqwest_middleware::{ClientBuilder, ClientWithMiddleware};
use reqwest_retry::{RetryTransientMiddleware, policies::ExponentialBackoff};
use std::{
	collections::HashMap,
	error::Error as _,
	fs::{File, copy, metadata, read_dir, rename},
	io::{BufRead, Seek, SeekFrom, Write},
	os::unix::fs::PermissionsExt,
	path::{Path, PathBuf},
	time::Duration,
};
use tar::Archive;
use tempfile::{tempdir, tempfile};
use thiserror::Error;
use url::Url;

mod binary;

/// An error relating to the sourcing of binaries.
#[derive(Error, Debug)]
pub enum Error {
	/// An error occurred.
	#[error("Anyhow error: {0}")]
	AnyhowError(#[from] anyhow::Error),
	/// An API error occurred.
	#[error("API error: {0}")]
	ApiError(#[from] api::Error),
	/// An error occurred sourcing a binary from an archive.
	#[error("Archive error: {0}")]
	ArchiveError(String),
	/// A HTTP error occurred.
	#[error("HTTP error: {0} caused by {:?}", reqwest::Error::source(.0))]
	HttpError(#[from] reqwest::Error),
	/// A HTTP middleware error occurred.
	#[error("HTTP middleware error: {0}")]
	MiddlewareError(#[from] reqwest_middleware::Error),
	/// An IO error occurred.
	#[error("IO error: {0}")]
	IO(#[from] std::io::Error),
	/// A binary cannot be sourced.
	#[error("Missing binary: {0}")]
	MissingBinary(String),
	/// An error occurred during parsing.
	#[error("ParseError error: {0}")]
	ParseError(#[from] url::ParseError),
}

/// The source of a binary.
#[derive(Clone, Debug, PartialEq)]
pub enum Source {
	/// An archive for download.
	#[allow(dead_code)]
	Archive {
		/// The url of the archive.
		url: String,
		/// The archive contents required, including the binary name.
		contents: Vec<String>,
	},
	/// A git repository.
	Git {
		/// The url of the repository.
		url: Url,
		/// If applicable, the branch, tag or commit.
		reference: Option<String>,
		/// If applicable, a specification of the path to the manifest.
		manifest: Option<PathBuf>,
		/// The name of the package to be built.
		package: String,
		/// Any additional build artifacts that are required.
		artifacts: Vec<String>,
	},
	/// A GitHub repository.
	GitHub(GitHub),
	/// A URL for download.
	#[allow(dead_code)]
	Url {
		/// The URL for download.
		url: String,
		/// The name of the binary.
		name: String,
	},
}

impl Source {
	/// Sources the binary.
	///
	/// # Arguments
	/// * `cache` - the cache to be used.
	/// * `release` - whether any binaries needing to be built should be done so using the release
	///   profile.
	/// * `status` - used to observe status updates.
	/// * `verbose` - whether verbose output is required.
	pub(super) async fn source(
		&self,
		cache: &Path,
		release: bool,
		status: &impl Status,
		verbose: bool,
	) -> Result<(), Error> {
		use Source::*;
		match self {
			Archive { url, contents } => {
				let contents: Vec<_> = contents
					.iter()
					.map(|name| ArchiveFileSpec::new(name.into(), Some(cache.join(name)), true))
					.collect();
				from_archive(url, &contents, status).await
			},
			Git { url, reference, manifest, package, artifacts } => {
				let artifacts: Vec<_> = artifacts
					.iter()
					.map(|name| match reference {
						Some(version) => (name.as_str(), cache.join(format!("{name}-{version}"))),
						None => (name.as_str(), cache.join(name)),
					})
					.collect();
				from_git(
					url.as_str(),
					reference.as_deref(),
					manifest.as_ref(),
					package,
					&artifacts,
					release,
					status,
					verbose,
				)
				.await
			},
			GitHub(source) => source.source(cache, release, status, verbose).await,
			Url { url, name } => from_url(url, &cache.join(name), status).await,
		}
	}

	/// Performs any additional processing required to resolve the binary from a source.
	///
	/// Determines whether the binary already exists locally, using the latest version available,
	/// and whether there are any newer versions available
	///
	/// # Arguments
	/// * `name` - the name of the binary.
	/// * `version` - a specific version of the binary required.
	/// * `cache` - the cache being used.
	/// * `cache_filter` - a filter to be used to determine whether a cached binary is eligible.
	pub async fn resolve(
		self,
		name: &str,
		version: Option<&str>,
		cache: &Path,
		cache_filter: impl for<'a> FnOnce(&'a str) -> bool + Copy,
	) -> Self {
		match self {
			Source::GitHub(github) =>
				Source::GitHub(github.resolve(name, version, cache, cache_filter).await),
			_ => self,
		}
	}
}

/// A binary sourced from GitHub.
#[derive(Clone, Debug, Derivative)]
#[derivative(PartialEq)]
pub enum GitHub {
	/// An archive for download from a GitHub release.
	ReleaseArchive {
		/// The owner of the repository - i.e. <https://github.com/{owner}/repository>.
		owner: String,
		/// The name of the repository - i.e. <https://github.com/owner/{repository}>.
		repository: String,
		/// The release tag to be used, where `None` is latest.
		tag: Option<String>,
		/// If applicable, a pattern to be used to determine applicable releases along with
		/// determining subcomponents from a release tag - e.g. `polkadot-{version}`.
		tag_pattern: Option<TagPattern>,
		/// Whether pre-releases are to be used.
		prerelease: bool,
		/// A function that orders candidates for selection when multiple versions are available.
		#[derivative(PartialEq = "ignore")]
		version_comparator: for<'a> fn(&'a mut [String]) -> SortedSlice<'a, String>,
		/// The version to use if an appropriate version cannot be resolved.
		fallback: String,
		/// The name of the archive (asset) to download.
		archive: String,
		/// The archive contents required.
		contents: Vec<ArchiveFileSpec>,
		/// If applicable, the latest release tag available.
		latest: Option<String>,
	},
	/// A source code archive for download from GitHub.
	SourceCodeArchive {
		/// The owner of the repository - i.e. <https://github.com/{owner}/repository>.
		owner: String,
		/// The name of the repository - i.e. <https://github.com/owner/{repository}>.
		repository: String,
		/// If applicable, the branch, tag or commit.
		reference: Option<String>,
		/// If applicable, a specification of the path to the manifest.
		manifest: Option<PathBuf>,
		/// The name of the package to be built.
		package: String,
		/// Any additional artifacts that are required.
		artifacts: Vec<String>,
	},
}

impl GitHub {
	/// Sources the binary.
	///
	/// # Arguments
	///
	/// * `cache` - the cache to be used.
	/// * `release` - whether any binaries needing to be built should be done so using the release
	///   profile.
	/// * `status` - used to observe status updates.
	/// * `verbose` - whether verbose output is required.
	async fn source(
		&self,
		cache: &Path,
		release: bool,
		status: &impl Status,
		verbose: bool,
	) -> Result<(), Error> {
		use GitHub::*;
		match self {
			ReleaseArchive { owner, repository, tag, tag_pattern, archive, contents, .. } => {
				// Complete url and contents based on the tag
				let base_url = format!("https://github.com/{owner}/{repository}/releases");
				let url = match tag.as_ref() {
					Some(tag) => {
						format!("{base_url}/download/{tag}/{archive}")
					},
					None => format!("{base_url}/latest/download/{archive}"),
				};
				let contents: Vec<_> = contents
					.iter()
					.map(|ArchiveFileSpec { name, target, required }| match tag.as_ref() {
						Some(tag) => ArchiveFileSpec::new(
							name.into(),
							Some(cache.join(format!(
									"{}-{}",
									target.as_ref().map_or(name.as_str(), |t| t
										.to_str()
										.expect("expected target file name to be valid utf-8")),
									tag_pattern
										.as_ref()
										.and_then(|pattern| pattern.version(tag))
										.unwrap_or(tag)
								))),
							*required,
						),
						None => ArchiveFileSpec::new(
							name.into(),
							Some(cache.join(target.as_ref().map_or(name.as_str(), |t| {
								t.to_str().expect("expected target file name to be valid utf-8")
							}))),
							*required,
						),
					})
					.collect();
				from_archive(&url, &contents, status).await
			},
			SourceCodeArchive { owner, repository, reference, manifest, package, artifacts } => {
				let artifacts: Vec<_> = artifacts
					.iter()
					.map(|name| match reference {
						Some(reference) =>
							(name.as_str(), cache.join(format!("{name}-{reference}"))),
						None => (name.as_str(), cache.join(name)),
					})
					.collect();
				from_github_archive(
					owner,
					repository,
					reference.as_ref().map(|r| r.as_str()),
					manifest.as_ref(),
					package,
					&artifacts,
					release,
					status,
					verbose,
				)
				.await
			},
		}
	}

	/// Performs any additional processing required to resolve the binary from a source.
	///
	/// Determines whether the binary already exists locally, using the latest version available,
	/// and whether there are any newer versions available
	///
	/// # Arguments
	/// * `name` - the name of the binary.
	/// * `version` - a specific version of the binary required.
	/// * `cache` - the cache being used.
	/// * `cache_filter` - a filter to be used to determine whether a cached binary is eligible.
	async fn resolve(
		self,
		name: &str,
		version: Option<&str>,
		cache: &Path,
		cache_filter: impl FnOnce(&str) -> bool + Copy,
	) -> Self {
		match self {
			Self::ReleaseArchive {
				owner,
				repository,
				tag: _,
				tag_pattern,
				prerelease,
				version_comparator,
				fallback,
				archive,
				contents,
				latest: _,
			} => {
				// Get releases, defaulting to the specified fallback version if there's an error.
				let repo = crate::GitHub::new(owner.as_str(), repository.as_str());
				let mut releases = repo.releases(prerelease).await.unwrap_or_else(|_e| {
					// Use any specified version or fall back to the last known version.
					let version = version.unwrap_or(fallback.as_str());
					vec![Release {
						tag_name: tag_pattern.as_ref().map_or_else(
							|| version.to_string(),
							|pattern| pattern.resolve_tag(version),
						),
						name: String::default(),
						prerelease,
						commit: None,
						published_at: String::default(),
					}]
				});

				// Filter releases if a tag pattern specified
				if let Some(pattern) = tag_pattern.as_ref() {
					releases.retain(|r| pattern.regex.is_match(&r.tag_name));
				}

				// Select versions from release tags, used for resolving the candidate versions and
				// local binary versioning.
				let mut binaries: HashMap<_, _> = releases
					.into_iter()
					.map(|r| {
						let version = tag_pattern
							.as_ref()
							.and_then(|pattern| pattern.version(&r.tag_name).map(|v| v.to_string()))
							.unwrap_or_else(|| r.tag_name.clone());
						(version, r.tag_name)
					})
					.collect();

				// Resolve any specified version - i.e., the version could be provided as a concrete
				// version or just a tag.
				let version = version.map(|v| {
					tag_pattern
						.as_ref()
						.and_then(|pattern| pattern.version(v))
						.unwrap_or(v)
						.to_string()
				});

				// Extract versions from any cached binaries - e.g., offline or rate-limited.
				let cached_files = read_dir(cache).into_iter().flatten();
				let cached_file_names = cached_files
					.filter_map(|f| f.ok().and_then(|f| f.file_name().into_string().ok()));
				for file in cached_file_names.filter(|f| cache_filter(f)) {
					let version = file.replace(&format!("{name}-"), "");
					let tag = tag_pattern.as_ref().map_or_else(
						|| version.to_string(),
						|pattern| pattern.resolve_tag(&version),
					);
					binaries.insert(version, tag);
				}

				// Prepare for version resolution by sorting by configured version comparator.
				let mut versions: Vec<_> = binaries.keys().cloned().collect();
				let versions = version_comparator(versions.as_mut_slice());

				// Define the tag to be used as either a specified version or the latest available
				// locally.
				let tag = version.as_ref().map_or_else(
					|| {
						// Resolve the version to be used.
						let resolved_version =
							Binary::resolve_version(name, None, &versions, cache);
						resolved_version.and_then(|v| binaries.get(v)).cloned()
					},
					|v| {
						// Ensure any specified version is a tag.
						Some(
							tag_pattern
								.as_ref()
								.map_or_else(|| v.to_string(), |pattern| pattern.resolve_tag(v)),
						)
					},
				);

				// // Default to the latest version when no specific version is provided by the
				// caller.
				let latest: Option<String> = version
					.is_none()
					.then(|| versions.first().and_then(|v| binaries.get(v.as_str()).cloned()))
					.flatten();

				Self::ReleaseArchive {
					owner,
					repository,
					tag,
					tag_pattern,
					prerelease,
					version_comparator,
					fallback,
					archive,
					contents,
					latest,
				}
			},
			_ => self,
		}
	}
}

/// A specification of a file within an archive.
#[derive(Clone, Debug, PartialEq)]
pub struct ArchiveFileSpec {
	/// The name of the file within the archive.
	pub name: String,
	/// An optional file name to be used for the file once extracted.
	pub target: Option<PathBuf>,
	/// Whether the file is required.
	pub required: bool,
}

impl ArchiveFileSpec {
	/// A specification of a file within an archive.
	///
	/// # Arguments
	/// * `name` - The name of the file within the archive.
	/// * `target` - An optional file name to be used for the file once extracted.
	/// * `required` - Whether the file is required.
	pub fn new(name: String, target: Option<PathBuf>, required: bool) -> Self {
		Self { name, target, required }
	}
}

/// A pattern used to determine captures from a release tag.
///
/// Only `{version}` is currently supported, used to determine a version from a release tag.
/// Examples: `polkadot-{version}`, `node-{version}`.
#[derive(Clone, Debug)]
pub struct TagPattern {
	regex: Regex,
	pattern: String,
}

impl TagPattern {
	/// A new pattern used to determine captures from a release tag.
	///
	/// # Arguments
	/// * `pattern` - the pattern to be used.
	pub fn new(pattern: &str) -> Self {
		Self {
			regex: Regex::new(&format!("^{}$", pattern.replace("{version}", "(?P<version>.+)")))
				.expect("expected valid regex"),
			pattern: pattern.into(),
		}
	}

	/// Resolves a tag for the specified value.
	///
	/// # Arguments
	/// * `value` - the value to resolve into a tag using the inner tag pattern.
	pub fn resolve_tag(&self, value: &str) -> String {
		// If input already in expected tag format, return as-is.
		if self.regex.is_match(value) {
			return value.to_string();
		}

		self.pattern.replace("{version}", value)
	}

	/// Extracts a version from the specified value.
	///
	/// # Arguments
	/// * `value` - the value to parse.
	pub fn version<'a>(&self, value: &'a str) -> Option<&'a str> {
		self.regex.captures(value).and_then(|c| c.name("version").map(|v| v.as_str()))
	}
}

impl PartialEq for TagPattern {
	fn eq(&self, other: &Self) -> bool {
		self.regex.as_str() == other.regex.as_str() && self.pattern == other.pattern
	}
}

impl From<&str> for TagPattern {
	fn from(value: &str) -> Self {
		Self::new(value)
	}
}

/// Creates an HTTP client with retry middleware using exponential backoff.
///
/// Retries up to 3 times on transient errors (5xx, 408, 429, and connection failures).
/// Non-retryable errors (e.g. 404) fail immediately.
fn retry_client() -> ClientWithMiddleware {
	#[cfg(not(test))]
	let retry_bounds = (Duration::from_secs(2), Duration::from_secs(8));
	#[cfg(test)]
	let retry_bounds = (Duration::from_millis(1), Duration::from_millis(4));

	let retry_policy = ExponentialBackoff::builder()
		.retry_bounds(retry_bounds.0, retry_bounds.1)
		.build_with_max_retries(3);
	ClientBuilder::new(reqwest::Client::new())
		.with(RetryTransientMiddleware::new_with_policy(retry_policy))
		.build()
}

/// Source binary by downloading and extracting from an archive.
///
/// # Arguments
/// * `url` - The url of the archive.
/// * `contents` - The contents within the archive which are required.
/// * `status` - Used to observe status updates.
async fn from_archive(
	url: &str,
	contents: &[ArchiveFileSpec],
	status: &impl Status,
) -> Result<(), Error> {
	// Download archive
	status.update(&format!("Downloading from {url}..."));
	let response = retry_client().get(url).send().await?.error_for_status()?;
	let mut file = tempfile()?;
	file.write_all(&response.bytes().await?)?;
	file.seek(SeekFrom::Start(0))?;
	// Extract contents
	status.update("Extracting from archive...");
	let tar = GzDecoder::new(file);
	let mut archive = Archive::new(tar);
	let temp_dir = tempdir()?;
	let working_dir = temp_dir.path();
	archive.unpack(working_dir)?;
	for ArchiveFileSpec { name, target, required } in contents {
		let src = working_dir.join(name);
		if src.exists() {
			set_executable_permission(&src)?;
			if let Some(target) = target &&
				let Err(_e) = rename(&src, target)
			{
				// If rename fails (e.g., due to cross-device linking), fallback to copy and
				// remove
				copy(&src, target)?;
				std::fs::remove_file(&src)?;
			}
		} else if *required {
			return Err(Error::ArchiveError(format!(
				"Expected file '{}' in archive, but it was not found.",
				name
			)));
		}
	}
	status.update("Sourcing complete.");
	Ok(())
}

/// Source binary by cloning a git repository and then building.
///
/// # Arguments
/// * `url` - The url of the repository.
/// * `reference` - If applicable, the branch, tag or commit.
/// * `manifest` - If applicable, a specification of the path to the manifest.
/// * `package` - The name of the package to be built.
/// * `artifacts` - Any additional artifacts that are required.
/// * `release` - Whether to build optimized artifacts using the release profile.
/// * `status` - Used to observe status updates.
/// * `verbose` - Whether verbose output is required.
#[allow(clippy::too_many_arguments)]
async fn from_git(
	url: &str,
	reference: Option<&str>,
	manifest: Option<impl AsRef<Path>>,
	package: &str,
	artifacts: &[(&str, impl AsRef<Path>)],
	release: bool,
	status: &impl Status,
	verbose: bool,
) -> Result<(), Error> {
	// Clone repository into working directory
	let temp_dir = tempdir()?;
	let working_dir = temp_dir.path();
	status.update(&format!("Cloning {url}..."));
	Git::clone(&Url::parse(url)?, working_dir, reference)?;
	// Build binaries
	status.update("Starting build of binary...");
	let manifest = manifest
		.as_ref()
		.map_or_else(|| working_dir.join("Cargo.toml"), |m| working_dir.join(m));
	build(manifest, package, artifacts, release, status, verbose).await?;
	status.update("Sourcing complete.");
	Ok(())
}

/// Source binary by downloading from a source code archive and then building.
///
/// # Arguments
/// * `owner` - The owner of the repository.
/// * `repository` - The name of the repository.
/// * `reference` - If applicable, the branch, tag or commit.
/// * `manifest` - If applicable, a specification of the path to the manifest.
/// * `package` - The name of the package to be built.
/// * `artifacts` - Any additional artifacts that are required.
/// * `release` - Whether to build optimized artifacts using the release profile.
/// * `status` - Used to observe status updates.
/// * `verbose` - Whether verbose output is required.
#[allow(clippy::too_many_arguments)]
async fn from_github_archive(
	owner: &str,
	repository: &str,
	reference: Option<&str>,
	manifest: Option<impl AsRef<Path>>,
	package: &str,
	artifacts: &[(&str, impl AsRef<Path>)],
	release: bool,
	status: &impl Status,
	verbose: bool,
) -> Result<(), Error> {
	// User agent required when using GitHub API
	let response = match reference {
		Some(reference) => {
			// Various potential urls to try based on not knowing the type of ref
			let urls = [
				format!(
					"https://github.com/{owner}/{repository}/archive/refs/heads/{reference}.tar.gz"
				),
				format!(
					"https://github.com/{owner}/{repository}/archive/refs/tags/{reference}.tar.gz"
				),
				format!("https://github.com/{owner}/{repository}/archive/{reference}.tar.gz"),
			];
			let mut response = None;
			for url in urls {
				status.update(&format!("Downloading from {url}..."));
				response = Some(GITHUB_API_CLIENT.get(url).await);
				if let Some(Err(api::Error::HttpError(e))) = &response &&
					e.status() == Some(StatusCode::NOT_FOUND)
				{
					tokio::time::sleep(Duration::from_secs(1)).await;
					continue;
				}
				break;
			}
			response.expect("value set above")?
		},
		None => {
			let url = format!("https://api.github.com/repos/{owner}/{repository}/tarball");
			status.update(&format!("Downloading from {url}..."));
			GITHUB_API_CLIENT.get(url).await?
		},
	};
	let mut file = tempfile()?;
	file.write_all(&response)?;
	file.seek(SeekFrom::Start(0))?;
	// Extract contents
	status.update("Extracting from archive...");
	let tar = GzDecoder::new(file);
	let mut archive = Archive::new(tar);
	let temp_dir = tempdir()?;
	let mut working_dir = temp_dir.path().into();
	archive.unpack(&working_dir)?;
	// Prepare archive contents for build
	let entries: Vec<_> = read_dir(&working_dir)?.take(2).filter_map(|x| x.ok()).collect();
	match entries.len() {
		0 => {
			return Err(Error::ArchiveError(
				"The downloaded archive does not contain any entries.".into(),
			));
		},
		1 => working_dir = entries[0].path(), // Automatically switch to top level directory
		_ => {},                              /* Assume that downloaded archive does not have a
		                                        * top level directory */
	}
	// Build binaries
	status.update("Starting build of binary...");
	let manifest = manifest
		.as_ref()
		.map_or_else(|| working_dir.join("Cargo.toml"), |m| working_dir.join(m));
	build(&manifest, package, artifacts, release, status, verbose).await?;
	status.update("Sourcing complete.");
	Ok(())
}

/// Source binary by building a local package.
///
/// # Arguments
/// * `manifest` - The path to the local package manifest.
/// * `package` - The name of the package to be built.
/// * `release` - Whether to build optimized artifacts using the release profile.
/// * `status` - Used to observe status updates.
/// * `verbose` - Whether verbose output is required.
pub(crate) async fn from_local_package(
	manifest: &Path,
	package: &str,
	release: bool,
	status: &impl Status,
	verbose: bool,
) -> Result<(), Error> {
	// Build binaries
	status.update("Starting build of binary...");
	const EMPTY: [(&str, PathBuf); 0] = [];
	build(manifest, package, &EMPTY, release, status, verbose).await?;
	status.update("Sourcing complete.");
	Ok(())
}

/// Source binary by downloading from a URL.
///
/// # Arguments
/// * `url` - The url of the binary.
/// * `path` - The (local) destination path.
/// * `status` - Used to observe status updates.
async fn from_url(url: &str, path: &Path, status: &impl Status) -> Result<(), Error> {
	// Download the binary
	status.update(&format!("Downloading from {url}..."));
	download(url, path).await?;
	status.update("Sourcing complete.");
	Ok(())
}

/// Builds a package.
///
/// # Arguments
/// * `manifest` - The path to the manifest.
/// * `package` - The name of the package to be built.
/// * `artifacts` - Any additional artifacts that are required.
/// * `release` - Whether to build optimized artifacts using the release profile.
/// * `status` - Used to observe status updates.
/// * `verbose` - Whether verbose output is required.
async fn build(
	manifest: impl AsRef<Path>,
	package: &str,
	artifacts: &[(&str, impl AsRef<Path>)],
	release: bool,
	status: &impl Status,
	verbose: bool,
) -> Result<(), Error> {
	// Define arguments
	let manifest_path = manifest.as_ref().to_str().expect("expected manifest path to be valid");
	let mut args = vec!["build", "-p", package, "--manifest-path", manifest_path];
	if release {
		args.push("--release")
	}
	// Build binaries
	let command = cmd("cargo", args);
	match verbose {
		false => {
			let reader = command.stderr_to_stdout().reader()?;
			let output = std::io::BufReader::new(reader).lines();
			for line in output {
				status.update(&line?);
			}
		},
		true => {
			command.run()?;
		},
	}
	// Copy required artifacts to the destination path
	let target = manifest
		.as_ref()
		.parent()
		.expect("expected parent directory to be valid")
		.join(format!("target/{}", if release { "release" } else { "debug" }));
	for (name, dest) in artifacts {
		copy(target.join(name), dest)?;
	}
	Ok(())
}

/// Downloads a file from a URL.
///
/// # Arguments
/// * `url` - The url of the file.
/// * `path` - The (local) destination path.
async fn download(url: &str, dest: &Path) -> Result<(), Error> {
	// Download to the destination path
	let response = retry_client().get(url).send().await?.error_for_status()?;
	let mut file = File::create(dest)?;
	file.write_all(&response.bytes().await?)?;
	// Make executable
	set_executable_permission(dest)?;
	Ok(())
}

/// Sets the executable permission for a given file.
///
/// # Arguments
/// * `path` - The file path to which permissions should be granted.
pub fn set_executable_permission<P: AsRef<Path>>(path: P) -> Result<(), Error> {
	let mut perms = metadata(&path)?.permissions();
	perms.set_mode(0o755);
	std::fs::set_permissions(path, perms)?;
	Ok(())
}

#[cfg(test)]
pub(super) mod tests {
	use super::{GitHub::*, Status, *};
	use crate::{polkadot_sdk::parse_version, target};
	use tempfile::tempdir;

	#[tokio::test]
	async fn sourcing_from_archive_works() -> anyhow::Result<()> {
		let url = "https://github.com/r0gue-io/polkadot/releases/latest/download/polkadot-aarch64-apple-darwin.tar.gz".to_string();
		let name = "polkadot".to_string();
		let contents =
			vec![name.clone(), "polkadot-execute-worker".into(), "polkadot-prepare-worker".into()];
		let temp_dir = tempdir()?;

		Source::Archive { url, contents: contents.clone() }
			.source(temp_dir.path(), true, &Output, true)
			.await?;
		for item in contents {
			assert!(temp_dir.path().join(item).exists());
		}
		Ok(())
	}

	#[tokio::test]
	async fn resolve_from_archive_is_noop() -> anyhow::Result<()> {
		let url = "https://github.com/r0gue-io/polkadot/releases/latest/download/polkadot-aarch64-apple-darwin.tar.gz".to_string();
		let name = "polkadot".to_string();
		let contents =
			vec![name.clone(), "polkadot-execute-worker".into(), "polkadot-prepare-worker".into()];
		let temp_dir = tempdir()?;

		let source = Source::Archive { url, contents: contents.clone() };
		assert_eq!(
			source.clone().resolve(&name, None, temp_dir.path(), filters::polkadot).await,
			source
		);
		Ok(())
	}

	#[tokio::test]
	async fn sourcing_from_git_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let url = Url::parse("https://github.com/hpaluch/rust-hello-world")?;
				let package = "hello_world".to_string();
				let temp_dir = tempdir()?;

				Source::Git {
					url,
					reference: None,
					manifest: None,
					package: package.clone(),
					artifacts: vec![package.clone()],
				}
				.source(temp_dir.path(), true, &Output, true)
				.await?;
				assert!(temp_dir.path().join(package).exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn resolve_from_git_is_noop() -> anyhow::Result<()> {
		let url = Url::parse("https://github.com/hpaluch/rust-hello-world")?;
		let package = "hello_world".to_string();
		let temp_dir = tempdir()?;

		let source = Source::Git {
			url,
			reference: None,
			manifest: None,
			package: package.clone(),
			artifacts: vec![package.clone()],
		};
		assert_eq!(
			source
				.clone()
				.resolve(&package, None, temp_dir.path(), |f| filters::prefix(f, &package))
				.await,
			source
		);
		Ok(())
	}

	#[tokio::test]
	async fn sourcing_from_git_ref_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let url = Url::parse("https://github.com/hpaluch/rust-hello-world")?;
				let initial_commit = "436b7dbffdfaaf7ad90bf44ae8fdcb17eeee65a3".to_string();
				let package = "hello_world".to_string();
				let temp_dir = tempdir()?;

				Source::Git {
					url,
					reference: Some(initial_commit.clone()),
					manifest: None,
					package: package.clone(),
					artifacts: vec![package.clone()],
				}
				.source(temp_dir.path(), true, &Output, true)
				.await?;
				assert!(temp_dir.path().join(format!("{package}-{initial_commit}")).exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn sourcing_from_github_release_archive_works() -> anyhow::Result<()> {
		let owner = "r0gue-io".to_string();
		let repository = "polkadot".to_string();
		let version = "stable2512";
		let tag_pattern = Some("polkadot-{version}".into());
		let fallback = "stable2512".into();
		let archive = format!("polkadot-{}.tar.gz", target()?);
		let contents = ["polkadot", "polkadot-execute-worker", "polkadot-prepare-worker"];
		let temp_dir = tempdir()?;

		Source::GitHub(ReleaseArchive {
			owner,
			repository,
			tag: Some(format!("polkadot-{version}")),
			tag_pattern,
			prerelease: false,
			version_comparator,
			fallback,
			archive,
			contents: contents.map(|n| ArchiveFileSpec::new(n.into(), None, true)).to_vec(),
			latest: None,
		})
		.source(temp_dir.path(), true, &Output, true)
		.await?;
		for item in contents {
			assert!(temp_dir.path().join(format!("{item}-{version}")).exists());
		}
		Ok(())
	}

	#[tokio::test]
	async fn resolve_from_github_release_archive_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let owner = "r0gue-io".to_string();
				let repository = "polkadot".to_string();
				let version = "stable2512";
				let tag_pattern = Some("polkadot-{version}".into());
				let fallback = "stable2512".into();
				let archive = format!("polkadot-{}.tar.gz", target()?);
				let contents = ["polkadot", "polkadot-execute-worker", "polkadot-prepare-worker"];
				let temp_dir = tempdir()?;

				// Determine release for comparison
				let mut releases: Vec<_> = crate::GitHub::new(owner.as_str(), repository.as_str())
					.releases(false)
					.await?
					.into_iter()
					.map(|r| r.tag_name)
					.collect();
				let sorted_releases = version_comparator(releases.as_mut_slice());

				let source = Source::GitHub(ReleaseArchive {
					owner,
					repository,
					tag: None,
					tag_pattern,
					prerelease: false,
					version_comparator,
					fallback,
					archive,
					contents: contents.map(|n| ArchiveFileSpec::new(n.into(), None, true)).to_vec(),
					latest: None,
				});

				// Check results for a specified/unspecified version
				for version in [Some(version), None] {
					let source = source
						.clone()
						.resolve("polkadot", version, temp_dir.path(), filters::polkadot)
						.await;
					let expected_tag = version.map_or_else(
						|| sorted_releases.0.first().unwrap().into(),
						|v| format!("polkadot-{v}"),
					);
					let expected_latest =
						version.map_or_else(|| sorted_releases.0.first(), |_| None);
					assert!(matches!(
						source,
						Source::GitHub(ReleaseArchive { tag, latest, .. } )
							if tag == Some(expected_tag) && latest.as_ref() == expected_latest
					));
				}

				// Create a later version as a cached binary
				let cached_version = "polkadot-stable2612";
				File::create(temp_dir.path().join(cached_version))?;
				for version in [Some(version), None] {
					let source = source
						.clone()
						.resolve("polkadot", version, temp_dir.path(), filters::polkadot)
						.await;
					let expected_tag = version
						.map_or_else(|| cached_version.to_string(), |v| format!("polkadot-{v}"));
					let expected_latest =
						version.map_or_else(|| Some(cached_version.to_string()), |_| None);
					assert!(matches!(
						source,
						Source::GitHub(ReleaseArchive { tag, latest, .. } )
							if tag == Some(expected_tag) && latest == expected_latest
					));
				}

				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn sourcing_from_github_release_archive_maps_contents() -> anyhow::Result<()> {
		let owner = "r0gue-io".to_string();
		let repository = "polkadot".to_string();
		let version = "stable2512";
		let tag_pattern = Some("polkadot-{version}".into());
		let name = "polkadot".to_string();
		let fallback = "stable2512".into();
		let archive = format!("{name}-{}.tar.gz", target()?);
		let contents = ["polkadot", "polkadot-execute-worker", "polkadot-prepare-worker"];
		let temp_dir = tempdir()?;
		let prefix = "test";

		Source::GitHub(ReleaseArchive {
			owner,
			repository,
			tag: Some(format!("polkadot-{version}")),
			tag_pattern,
			prerelease: false,
			version_comparator,
			fallback,
			archive,
			contents: contents
				.map(|n| ArchiveFileSpec::new(n.into(), Some(format!("{prefix}-{n}").into()), true))
				.to_vec(),
			latest: None,
		})
		.source(temp_dir.path(), true, &Output, true)
		.await?;
		for item in contents {
			assert!(temp_dir.path().join(format!("{prefix}-{item}-{version}")).exists());
		}
		Ok(())
	}

	#[tokio::test]
	async fn sourcing_from_latest_github_release_archive_works() -> anyhow::Result<()> {
		let owner = "r0gue-io".to_string();
		let repository = "polkadot".to_string();
		let tag_pattern = Some("polkadot-{version}".into());
		let name = "polkadot".to_string();
		let fallback = "stable2512".into();
		let archive = format!("{name}-{}.tar.gz", target()?);
		let contents = ["polkadot", "polkadot-execute-worker", "polkadot-prepare-worker"];
		let temp_dir = tempdir()?;

		Source::GitHub(ReleaseArchive {
			owner,
			repository,
			tag: None,
			tag_pattern,
			prerelease: false,
			version_comparator,
			fallback,
			archive,
			contents: contents.map(|n| ArchiveFileSpec::new(n.into(), None, true)).to_vec(),
			latest: None,
		})
		.source(temp_dir.path(), true, &Output, true)
		.await?;
		for item in contents {
			assert!(temp_dir.path().join(item).exists());
		}
		Ok(())
	}

	#[tokio::test]
	async fn sourcing_from_github_source_code_archive_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let owner = "paritytech".to_string();
				let repository = "polkadot-sdk".to_string();
				let package = "polkadot".to_string();
				let temp_dir = tempdir()?;
				let initial_commit = "72dba98250a6267c61772cd55f8caf193141050f";
				let manifest = PathBuf::from("substrate/Cargo.toml");

				Source::GitHub(SourceCodeArchive {
					owner,
					repository,
					reference: Some(initial_commit.to_string()),
					manifest: Some(manifest),
					package: package.clone(),
					artifacts: vec![package.clone()],
				})
				.source(temp_dir.path(), true, &Output, true)
				.await?;
				assert!(temp_dir.path().join(format!("{package}-{initial_commit}")).exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn resolve_from_github_source_code_archive_is_noop() -> anyhow::Result<()> {
		let owner = "paritytech".to_string();
		let repository = "polkadot-sdk".to_string();
		let package = "polkadot".to_string();
		let temp_dir = tempdir()?;
		let initial_commit = "72dba98250a6267c61772cd55f8caf193141050f";
		let manifest = PathBuf::from("substrate/Cargo.toml");

		let source = Source::GitHub(SourceCodeArchive {
			owner,
			repository,
			reference: Some(initial_commit.to_string()),
			manifest: Some(manifest),
			package: package.clone(),
			artifacts: vec![package.clone()],
		});
		assert_eq!(
			source.clone().resolve(&package, None, temp_dir.path(), filters::polkadot).await,
			source
		);
		Ok(())
	}

	#[tokio::test]
	async fn sourcing_from_latest_github_source_code_archive_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let owner = "hpaluch".to_string();
				let repository = "rust-hello-world".to_string();
				let package = "hello_world".to_string();
				let temp_dir = tempdir()?;

				Source::GitHub(SourceCodeArchive {
					owner,
					repository,
					reference: None,
					manifest: None,
					package: package.clone(),
					artifacts: vec![package.clone()],
				})
				.source(temp_dir.path(), true, &Output, true)
				.await?;
				assert!(temp_dir.path().join(package).exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn sourcing_from_url_works() -> anyhow::Result<()> {
		let url =
			"https://github.com/paritytech/polkadot-sdk/releases/latest/download/polkadot.asc"
				.to_string();
		let name = "polkadot";
		let temp_dir = tempdir()?;

		Source::Url { url, name: name.into() }
			.source(temp_dir.path(), false, &Output, true)
			.await?;
		assert!(temp_dir.path().join(name).exists());
		Ok(())
	}

	#[tokio::test]
	async fn resolve_from_url_is_noop() -> anyhow::Result<()> {
		let url =
			"https://github.com/paritytech/polkadot-sdk/releases/latest/download/polkadot.asc"
				.to_string();
		let name = "polkadot";
		let temp_dir = tempdir()?;

		let source = Source::Url { url, name: name.into() };
		assert_eq!(
			source.clone().resolve(name, None, temp_dir.path(), filters::polkadot).await,
			source
		);
		Ok(())
	}

	#[tokio::test]
	async fn from_archive_works() -> anyhow::Result<()> {
		let temp_dir = tempdir()?;
		let url = "https://github.com/r0gue-io/polkadot/releases/latest/download/polkadot-aarch64-apple-darwin.tar.gz";
		let contents: Vec<_> = ["polkadot", "polkadot-execute-worker", "polkadot-prepare-worker"]
			.into_iter()
			.map(|b| ArchiveFileSpec::new(b.into(), Some(temp_dir.path().join(b)), true))
			.collect();

		from_archive(url, &contents, &Output).await?;
		for ArchiveFileSpec { target, .. } in contents {
			assert!(target.unwrap().exists());
		}
		Ok(())
	}

	#[tokio::test]
	async fn from_git_works() -> anyhow::Result<()> {
		let url = "https://github.com/hpaluch/rust-hello-world";
		let package = "hello_world";
		let initial_commit = "436b7dbffdfaaf7ad90bf44ae8fdcb17eeee65a3";
		let temp_dir = tempdir()?;
		let path = temp_dir.path().join(package);

		from_git(
			url,
			Some(initial_commit),
			None::<&Path>,
			package,
			&[(package, &path)],
			true,
			&Output,
			false,
		)
		.await?;
		assert!(path.exists());
		Ok(())
	}

	#[tokio::test]
	async fn from_github_archive_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let owner = "paritytech";
				let repository = "polkadot-sdk";
				let package = "polkadot";
				let temp_dir = tempdir()?;
				let path = temp_dir.path().join(package);
				let initial_commit = "72dba98250a6267c61772cd55f8caf193141050f";
				let manifest = "substrate/Cargo.toml";

				from_github_archive(
					owner,
					repository,
					Some(initial_commit),
					Some(manifest),
					package,
					&[(package, &path)],
					true,
					&Output,
					true,
				)
				.await?;
				assert!(path.exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn from_latest_github_archive_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let owner = "hpaluch";
				let repository = "rust-hello-world";
				let package = "hello_world";
				let temp_dir = tempdir()?;
				let path = temp_dir.path().join(package);

				from_github_archive(
					owner,
					repository,
					None,
					None::<&Path>,
					package,
					&[(package, &path)],
					true,
					&Output,
					true,
				)
				.await?;
				assert!(path.exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn from_local_package_works() -> anyhow::Result<()> {
		crate::command_mock::CommandMock::default()
			.execute(async || {
				let temp_dir = tempdir()?;
				let name = "hello_world";
				cmd("cargo", ["new", name, "--bin"]).dir(temp_dir.path()).run()?;
				let manifest = temp_dir.path().join(name).join("Cargo.toml");

				from_local_package(&manifest, name, false, &Output, true).await?;
				assert!(manifest.parent().unwrap().join("target/debug").join(name).exists());
				Ok(())
			})
			.await
	}

	#[tokio::test]
	async fn from_url_works() -> anyhow::Result<()> {
		let url =
			"https://github.com/paritytech/polkadot-sdk/releases/latest/download/polkadot.asc";
		let temp_dir = tempdir()?;
		let path = temp_dir.path().join("polkadot");

		from_url(url, &path, &Output).await?;
		assert!(path.exists());
		assert_ne!(metadata(path)?.permissions().mode() & 0o755, 0);
		Ok(())
	}

	#[test]
	fn tag_pattern_works() {
		let pattern: TagPattern = "polkadot-{version}".into();
		assert_eq!(pattern.regex.as_str(), "^polkadot-(?P<version>.+)$");
		assert_eq!(pattern.pattern, "polkadot-{version}");
		assert_eq!(pattern, pattern.clone());

		for value in ["polkadot-stable2512", "stable2512"] {
			assert_eq!(pattern.resolve_tag(value).as_str(), "polkadot-stable2512");
		}
		assert_eq!(pattern.version("polkadot-stable2512"), Some("stable2512"));
	}

	fn version_comparator<T: AsRef<str> + Ord>(versions: &'_ mut [T]) -> SortedSlice<'_, T> {
		SortedSlice::by(versions, |a, b| parse_version(b.as_ref()).cmp(&parse_version(a.as_ref())))
	}

	pub(crate) struct Output;
	impl Status for Output {
		fn update(&self, status: &str) {
			println!("{status}")
		}
	}

	mod retry {
		use super::*;
		use mockito::{Mock, Server};

		async fn mock_status(server: &mut Server, code: u16) -> Mock {
			server.mock("GET", "/test").with_status(code as usize).create_async().await
		}

		#[tokio::test]
		async fn retry_client_succeeds_on_first_attempt() {
			let mut server = Server::new_async().await;
			let mock = mock_status(&mut server, 200).await;

			let url = format!("{}/test", server.url());
			let response = retry_client().get(&url).send().await.unwrap();
			assert_eq!(response.status(), 200);
			mock.assert_async().await;
		}

		#[tokio::test]
		async fn retry_client_retries_on_503_then_succeeds() {
			let mut server = Server::new_async().await;
			let fail_mock =
				server.mock("GET", "/test").with_status(503).expect(1).create_async().await;
			let success_mock =
				server.mock("GET", "/test").with_status(200).expect(1).create_async().await;

			let url = format!("{}/test", server.url());
			let response = retry_client().get(&url).send().await.unwrap();
			assert_eq!(response.status(), 200);
			fail_mock.assert_async().await;
			success_mock.assert_async().await;
		}

		#[tokio::test]
		async fn retry_client_fails_after_max_retries() {
			let mut server = Server::new_async().await;
			// 1 initial attempt + 3 retries = 4 total requests.
			let mock = server.mock("GET", "/test").with_status(500).expect(4).create_async().await;

			let url = format!("{}/test", server.url());
			let response = retry_client().get(&url).send().await.unwrap();
			assert!(response.error_for_status().is_err());
			mock.assert_async().await;
		}

		#[tokio::test]
		async fn retry_client_does_not_retry_on_404() {
			let mut server = Server::new_async().await;
			let mock = server.mock("GET", "/test").with_status(404).expect(1).create_async().await;

			let url = format!("{}/test", server.url());
			let response = retry_client().get(&url).send().await.unwrap();
			assert!(response.error_for_status().is_err());
			mock.assert_async().await;
		}
	}
}

/// Traits for the sourcing of a binary.
pub mod traits {
	/// The source of a binary.
	pub trait Source {
		/// The type returned in the event of an error.
		type Error;

		/// Defines the source of a binary.
		fn source(&self) -> Result<super::Source, Self::Error>;
	}

	/// Traits for the sourcing of a binary using [strum]-based configuration.
	pub mod enums {
		use strum::EnumProperty;

		/// The source of a binary.
		pub trait Source {
			/// The name of the binary.
			fn binary(&self) -> &'static str;

			/// The fallback version to be used when the latest version cannot be determined.
			fn fallback(&self) -> &str;

			/// Whether pre-releases are to be used.
			fn prerelease(&self) -> Option<bool>;
		}

		/// The source of a binary.
		pub trait Repository: Source {
			/// The repository to be used.
			fn repository(&self) -> &str;

			/// If applicable, a pattern to be used to determine applicable releases along with
			/// subcomponents from a release tag - e.g. `polkadot-{version}`.
			fn tag_pattern(&self) -> Option<&str>;
		}

		impl<T: EnumProperty> Source for T {
			fn binary(&self) -> &'static str {
				self.get_str("Binary").expect("expected specification of `Binary` name")
			}

			fn fallback(&self) -> &str {
				self.get_str("Fallback")
					.expect("expected specification of `Fallback` release tag")
			}

			fn prerelease(&self) -> Option<bool> {
				self.get_str("Prerelease").map(|v| {
					v.parse().expect("expected parachain prerelease value to be true/false")
				})
			}
		}

		impl<T: EnumProperty> Repository for T {
			fn repository(&self) -> &str {
				self.get_str("Repository").expect("expected specification of `Repository` url")
			}

			fn tag_pattern(&self) -> Option<&str> {
				self.get_str("TagPattern")
			}
		}
	}

	#[cfg(test)]
	mod tests {
		use super::enums::{Repository, Source};
		use strum_macros::{EnumProperty, VariantArray};

		#[derive(EnumProperty, VariantArray)]
		pub(super) enum Chain {
			#[strum(props(
				Repository = "https://github.com/paritytech/polkadot-sdk",
				Binary = "polkadot",
				Prerelease = "false",
				Fallback = "v1.12.0",
				TagPattern = "polkadot-{version}"
			))]
			Polkadot,
			#[strum(props(Repository = "https://github.com/r0gue-io/fallback", Fallback = "v1.0"))]
			Fallback,
		}

		#[test]
		fn binary_works() {
			assert_eq!("polkadot", Chain::Polkadot.binary())
		}

		#[test]
		fn fallback_works() {
			assert_eq!("v1.12.0", Chain::Polkadot.fallback())
		}

		#[test]
		fn prerelease_works() {
			assert!(!Chain::Polkadot.prerelease().unwrap())
		}

		#[test]
		fn repository_works() {
			assert_eq!("https://github.com/paritytech/polkadot-sdk", Chain::Polkadot.repository())
		}

		#[test]
		fn tag_pattern_works() {
			assert_eq!("polkadot-{version}", Chain::Polkadot.tag_pattern().unwrap())
		}
	}
}

/// Filters which can be used when resolving a binary.
pub mod filters {
	/// A filter which ensures a candidate file name starts with a prefix.
	///
	/// # Arguments
	/// * `candidate` - the candidate to be evaluated.
	/// * `prefix` - the specified prefix.
	pub fn prefix(candidate: &str, prefix: &str) -> bool {
		candidate.starts_with(prefix) &&
			// Ignore any known related `polkadot`-prefixed binaries when `polkadot` only.
			(prefix != "polkadot" ||
				!["polkadot-execute-worker", "polkadot-prepare-worker", "polkadot-parachain", "polkadot-omni-node"]
					.iter()
					.any(|i| candidate.starts_with(i)))
	}

	#[cfg(test)]
	pub(crate) fn polkadot(file: &str) -> bool {
		prefix(file, "polkadot")
	}

	#[cfg(test)]
	mod tests {
		use super::*;

		#[test]
		fn prefix_filter_excludes_polkadot_variants() {
			// polkadot binary should match itself
			assert!(prefix("polkadot", "polkadot"));
			assert!(prefix("polkadot-stable2512", "polkadot"));
			assert!(prefix("polkadot-stable2512-1", "polkadot"));

			// But should NOT match these related binaries
			assert!(!prefix("polkadot-execute-worker", "polkadot"));
			assert!(!prefix("polkadot-execute-worker-stable2512", "polkadot"));
			assert!(!prefix("polkadot-prepare-worker", "polkadot"));
			assert!(!prefix("polkadot-prepare-worker-stable2512-1", "polkadot"));
			assert!(!prefix("polkadot-parachain", "polkadot"));
			assert!(!prefix("polkadot-parachain-stable2512", "polkadot"));
			assert!(!prefix("polkadot-omni-node", "polkadot"));
			assert!(!prefix("polkadot-omni-node-stable2512-1", "polkadot"));

			// Other binaries should work normally
			assert!(prefix("polkadot-parachain", "polkadot-parachain"));
			assert!(prefix("polkadot-omni-node", "polkadot-omni-node"));
		}
	}
}