influxdb3-plugin-schemas 0.4.0

Schema types for InfluxDB 3 plugins.
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
//! Plugin manifest (`manifest.toml`) types and parsing.

use crate::{IndexUrl, PluginName, SchemaError};
use std::fmt;
use std::str::FromStr;

/// Supported major. Parsers refuse unsupported majors; bumped on breaking
/// schema changes.
pub(crate) const SUPPORTED_MANIFEST_MAJOR: u32 = 1;

/// The `manifest_schema_version` top-level field, format `<major>.<minor>`.
///
/// Unsupported majors are rejected. Within a known major, unknown fields are
/// tolerated by the structural parser.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ManifestSchemaVersion {
    major: u32,
    minor: u32,
}

impl ManifestSchemaVersion {
    pub const CURRENT: Self = Self { major: 1, minor: 3 };

    pub fn new(major: u32, minor: u32) -> Self {
        Self { major, minor }
    }
    pub fn major(&self) -> u32 {
        self.major
    }
    pub fn minor(&self) -> u32 {
        self.minor
    }
}

impl fmt::Display for ManifestSchemaVersion {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}.{}", self.major, self.minor)
    }
}

impl FromStr for ManifestSchemaVersion {
    type Err = SchemaError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let malformed = || SchemaError::MalformedSchemaVersion {
            value: s.to_owned(),
        };
        let (major_str, minor_str) = s.split_once('.').ok_or_else(malformed)?;
        if major_str.is_empty() || minor_str.is_empty() || minor_str.contains('.') {
            return Err(malformed());
        }
        let major: u32 = major_str.parse().map_err(|_| malformed())?;
        let minor: u32 = minor_str.parse().map_err(|_| malformed())?;

        if major != SUPPORTED_MANIFEST_MAJOR {
            return Err(SchemaError::UnsupportedManifestMajor {
                found: s.to_owned(),
                supported: SUPPORTED_MANIFEST_MAJOR,
            });
        }
        Ok(Self { major, minor })
    }
}

impl<'de> serde::Deserialize<'de> for ManifestSchemaVersion {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let raw = String::deserialize(deserializer)?;
        Self::from_str(&raw).map_err(serde::de::Error::custom)
    }
}

impl serde::Serialize for ManifestSchemaVersion {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.collect_str(self)
    }
}

/// One-line plugin description. 1–200 characters.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Description(String);

impl Description {
    pub fn try_new(s: &str) -> Result<Self, SchemaError> {
        if s.is_empty() {
            return Err(SchemaError::DescriptionEmpty);
        }
        // The newline check is the more specific rule, so it precedes the
        // length check: a 201-char string that also contains a newline is
        // reported as multiline rather than too-long.
        if s.contains('\n') || s.contains('\r') {
            return Err(SchemaError::DescriptionMultiline {
                len: s.chars().count(),
            });
        }
        let len = s.chars().count();
        if len > 200 {
            return Err(SchemaError::DescriptionTooLong { len });
        }
        Ok(Self(s.to_owned()))
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl<'de> serde::Deserialize<'de> for Description {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let raw = String::deserialize(deserializer)?;
        Self::try_new(&raw).map_err(serde::de::Error::custom)
    }
}

impl serde::Serialize for Description {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.serialize_str(&self.0)
    }
}

/// Closed set of supported trigger types. Manifests are rejected if any
/// trigger identifier is outside this set.
///
/// Serde goes through `TryFrom<String>` / `Into<String>`, so `rename_all`
/// would be a no-op.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize)]
#[serde(try_from = "String", into = "String")]
pub enum TriggerType {
    ProcessWrites,
    ProcessScheduledCall,
    ProcessRequest,
}

impl TriggerType {
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::ProcessWrites => "process_writes",
            Self::ProcessScheduledCall => "process_scheduled_call",
            Self::ProcessRequest => "process_request",
        }
    }
}

impl fmt::Display for TriggerType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl FromStr for TriggerType {
    type Err = SchemaError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "process_writes" => Ok(Self::ProcessWrites),
            "process_scheduled_call" => Ok(Self::ProcessScheduledCall),
            "process_request" => Ok(Self::ProcessRequest),
            other => Err(SchemaError::UnknownTriggerType {
                trigger: other.to_owned(),
            }),
        }
    }
}

impl TryFrom<String> for TriggerType {
    type Error = SchemaError;
    fn try_from(value: String) -> Result<Self, Self::Error> {
        value.parse()
    }
}

impl From<TriggerType> for String {
    fn from(value: TriggerType) -> Self {
        value.as_str().to_owned()
    }
}

/// A PEP 508 Python package requirement string (e.g., `requests>=2.31,<3`).
/// Validated for parseability at construction; stored in its canonical string
/// form.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PythonRequirement(String);

impl PythonRequirement {
    pub fn try_new(s: &str) -> Result<Self, SchemaError> {
        // Parse for validation only; store the original string. The
        // `<VerbatimUrl>` turbofish tracks pep508_rs's pre-1.0 generic
        // Requirement; on upgrade, also review SchemaError::InvalidPythonRequirement.
        pep508_rs::Requirement::<pep508_rs::VerbatimUrl>::from_str(s).map_err(|e| {
            SchemaError::InvalidPythonRequirement {
                requirement: s.to_owned(),
                source: Box::new(e),
            }
        })?;
        Ok(Self(s.to_owned()))
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl<'de> serde::Deserialize<'de> for PythonRequirement {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let raw = String::deserialize(deserializer)?;
        Self::try_new(&raw).map_err(serde::de::Error::custom)
    }
}

impl serde::Serialize for PythonRequirement {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.serialize_str(&self.0)
    }
}

/// One `[[dependencies.plugins]]` entry: a fully-resolved reference to a
/// plugin at another (or the same) registry. `version` is a SemVer range —
/// "any version of `name` at `index_url` that satisfies `version`".
#[derive(Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct PluginDependency {
    pub index_url: IndexUrl,
    pub name: crate::PluginName,
    pub version: semver::VersionReq,
}

/// A parsed plugin manifest.
#[derive(Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct Manifest {
    pub manifest_schema_version: ManifestSchemaVersion,
    pub plugin: PluginMetadata,
    pub dependencies: Dependencies,
}

impl Manifest {
    /// Parses a manifest from TOML, reporting every field-level defect in one
    /// pass via `SchemaErrors`.
    ///
    /// # Errors
    ///
    /// Returns `Err(SchemaErrors)` with a single `TomlParse` error if TOML
    /// syntax fails; a single error if `manifest_schema_version` is malformed
    /// or unsupported (short-circuit, no field-level validation); or one or
    /// more field-level errors with field-path context.
    ///
    /// # Examples
    ///
    /// ```
    /// use influxdb3_plugin_schemas::Manifest;
    ///
    /// let source = r#"
    /// manifest_schema_version = "1.0"
    ///
    /// [plugin]
    /// name = "example"
    /// version = "0.1.0"
    /// description = "Example plugin."
    /// triggers = ["process_writes"]
    ///
    /// [dependencies]
    /// database_version = ">=3.0.0"
    /// "#;
    ///
    /// let manifest = Manifest::parse_toml(source).unwrap();
    /// assert_eq!(manifest.plugin.name.as_str(), "example");
    /// ```
    pub fn parse_toml(input: &str) -> Result<Self, crate::SchemaErrors> {
        use crate::raw::RawManifest;
        use crate::{FieldPath, ReportedError, SchemaErrors};
        use std::str::FromStr;

        // Phase 1: raw deserialize. Syntax / required-field errors are fatal.
        let raw: RawManifest = toml::from_str(input)
            .map_err(|source| SchemaErrors::single_at_root(SchemaError::TomlParse { source }))?;

        // Phase 2a: schema-version short-circuit — skips field-level validation.
        let schema_version = ManifestSchemaVersion::from_str(&raw.manifest_schema_version)
            .map_err(|e| {
                SchemaErrors::new(vec![ReportedError::new(
                    FieldPath::root().field("manifest_schema_version"),
                    e,
                )])
            })?;

        // Phase 2b: collect field-level errors.
        let mut errors = Vec::new();
        let plugin_path = FieldPath::root().field("plugin");
        let deps_path = FieldPath::root().field("dependencies");

        let name = PluginName::from_str(&raw.plugin.name);
        let name_ok = name.as_ref().ok().cloned();
        if let Err(e) = name {
            errors.push(ReportedError::new(plugin_path.field("name"), e));
        }

        let version = semver::Version::parse(&raw.plugin.version).map_err(|source| {
            SchemaError::InvalidVersion {
                version: raw.plugin.version.clone(),
                source,
            }
        });
        let version_ok = version.as_ref().ok().cloned();
        if let Err(e) = version {
            errors.push(ReportedError::new(plugin_path.field("version"), e));
        }

        let description = Description::try_new(&raw.plugin.description);
        let description_ok = description.as_ref().ok().cloned();
        if let Err(e) = description {
            errors.push(ReportedError::new(plugin_path.field("description"), e));
        }

        // Triggers: non-empty + each entry must parse as TriggerType.
        let mut triggers_ok: Vec<TriggerType> = Vec::with_capacity(raw.plugin.triggers.len());
        if raw.plugin.triggers.is_empty() {
            errors.push(ReportedError::new(
                plugin_path.field("triggers"),
                SchemaError::EmptyTriggers,
            ));
        } else {
            for (i, trig) in raw.plugin.triggers.iter().enumerate() {
                match TriggerType::from_str(trig) {
                    Ok(t) => triggers_ok.push(t),
                    Err(e) => errors.push(ReportedError::new(
                        plugin_path.field("triggers").index(i),
                        e,
                    )),
                }
            }
        }

        // Optional URL fields: must parse and use http/https scheme when present.
        let homepage = parse_optional_http_url_from_path(
            &raw.plugin.homepage,
            &mut errors,
            &plugin_path,
            "homepage",
        );
        let repository = parse_optional_http_url_from_path(
            &raw.plugin.repository,
            &mut errors,
            &plugin_path,
            "repository",
        );
        let documentation = parse_optional_http_url_from_path(
            &raw.plugin.documentation,
            &mut errors,
            &plugin_path,
            "documentation",
        );

        let database_version = semver::VersionReq::parse(&raw.dependencies.database_version)
            .map_err(|source| SchemaError::InvalidDatabaseVersion {
                range: raw.dependencies.database_version.clone(),
                source,
            });
        let database_version_ok = database_version.as_ref().ok().cloned();
        if let Err(e) = database_version {
            errors.push(ReportedError::new(deps_path.field("database_version"), e));
        }

        let mut python_ok: Vec<PythonRequirement> =
            Vec::with_capacity(raw.dependencies.python.len());
        for (i, p) in raw.dependencies.python.iter().enumerate() {
            match PythonRequirement::try_new(p) {
                Ok(pr) => python_ok.push(pr),
                Err(e) => errors.push(ReportedError::new(deps_path.field("python").index(i), e)),
            }
        }

        let plugins_ok =
            validate_raw_plugin_dependencies(&raw.dependencies.plugins, &deps_path, &mut errors);

        if !errors.is_empty() {
            return Err(SchemaErrors::new(errors));
        }

        // Safe unwraps: each `_ok` is `Some(_)` whenever no error was pushed.
        Ok(Manifest {
            manifest_schema_version: schema_version,
            plugin: PluginMetadata {
                name: name_ok.unwrap(),
                version: version_ok.unwrap(),
                description: description_ok.unwrap(),
                triggers: triggers_ok,
                homepage,
                repository,
                documentation,
                exclude: raw.plugin.exclude,
            },
            dependencies: Dependencies {
                database_version: database_version_ok.unwrap(),
                python: python_ok,
                plugins: plugins_ok,
            },
        })
    }
}

/// Parses an optional URL field, requiring `http` or `https` scheme. Returns
/// `None` when absent; on parse or scheme failure, pushes a `ReportedError`
/// and returns `None`. Shared with `index.rs` for per-entry URL validation.
pub(crate) fn parse_optional_http_url_from_path(
    raw: &Option<String>,
    errors: &mut Vec<crate::ReportedError>,
    parent: &crate::FieldPath,
    field_name: &str,
) -> Option<url::Url> {
    use crate::ReportedError;

    let raw = raw.as_deref()?;
    match url::Url::parse(raw) {
        Ok(u) => match u.scheme() {
            "http" | "https" => Some(u),
            other => {
                errors.push(ReportedError::new(
                    parent.field(field_name),
                    SchemaError::InvalidUrlScheme {
                        url: raw.to_owned(),
                        scheme: other.to_owned(),
                    },
                ));
                None
            }
        },
        Err(source) => {
            errors.push(ReportedError::new(
                parent.field(field_name),
                SchemaError::InvalidUrl {
                    url: raw.to_owned(),
                    source,
                },
            ));
            None
        }
    }
}

/// Validates `dependencies.plugins` entries, pushing errors into `errors`
/// with paths relative to `deps_path` (the `dependencies` table). Returns the
/// successfully validated entries. Shared by `Manifest::parse_toml` and
/// `Index::parse_json` so both parsers apply identical rules.
///
/// Entries must be unique by `(index_url, canonical(name))`: `index_url`
/// compares by parsed-URL equality (normalized) and `name` by the existing
/// lowercase-and-underscore folding. The duplicate check considers only
/// entries whose `index_url` and `name` parsed cleanly, so one malformed
/// field never cascades into spurious duplicate errors.
pub(crate) fn validate_raw_plugin_dependencies(
    raw: &[crate::raw::RawPluginDependency],
    deps_path: &crate::FieldPath,
    errors: &mut Vec<crate::ReportedError>,
) -> Vec<PluginDependency> {
    use crate::ReportedError;
    use std::collections::HashSet;

    let mut out: Vec<PluginDependency> = Vec::with_capacity(raw.len());
    let mut seen: HashSet<(String, String)> = HashSet::new();

    for (i, dep) in raw.iter().enumerate() {
        let entry_path = deps_path.field("plugins").index(i);

        let index_url = match IndexUrl::try_new(&dep.index_url) {
            Ok(u) => Some(u),
            Err(e) => {
                errors.push(ReportedError::new(entry_path.field("index_url"), e));
                None
            }
        };

        let name = match crate::PluginName::from_str(&dep.name) {
            Ok(n) => Some(n),
            Err(e) => {
                errors.push(ReportedError::new(entry_path.field("name"), e));
                None
            }
        };

        let version = match semver::VersionReq::parse(&dep.version) {
            Ok(v) => Some(v),
            Err(source) => {
                errors.push(ReportedError::new(
                    entry_path.field("version"),
                    SchemaError::InvalidPluginDependencyVersion {
                        range: dep.version.clone(),
                        source,
                    },
                ));
                None
            }
        };

        let duplicate = if let (Some(u), Some(n)) = (&index_url, &name) {
            let key = (u.as_url().as_str().to_owned(), n.canonical());
            let is_dup = !seen.insert(key);
            if is_dup {
                errors.push(ReportedError::new(
                    entry_path,
                    SchemaError::DuplicatePluginDependency {
                        index_url: u.as_url().as_str().to_owned(),
                        name: n.as_str().to_owned(),
                    },
                ));
            }
            is_dup
        } else {
            false
        };

        if let (Some(index_url), Some(name), Some(version), false) =
            (index_url, name, version, duplicate)
        {
            out.push(PluginDependency {
                index_url,
                name,
                version,
            });
        }
    }
    out
}

// No TOML serializer: manifests are author-written and the SDK never emits
// them. If one is added later, introduce a dedicated
// `SchemaError::TomlSerialize { source: toml::ser::Error }` variant rather
// than casting through `toml::de::Error::custom`.

/// `[plugin]` section of the manifest.
#[derive(Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct PluginMetadata {
    pub name: crate::PluginName,
    pub version: semver::Version,
    pub description: Description,
    pub triggers: Vec<TriggerType>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub homepage: Option<url::Url>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub repository: Option<url::Url>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub documentation: Option<url::Url>,
    /// Gitignore-style patterns, relative to the plugin root, naming files to
    /// omit from source-file selection (packaging + validation). Optional;
    /// missing or `[]` means no manifest-level exclusions. Pattern *syntax* is
    /// validated by the SDK at selection time, not here.
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub exclude: Vec<String>,
}

/// `[dependencies]` section of the manifest.
#[derive(Debug, Clone, PartialEq, serde::Deserialize, serde::Serialize)]
pub struct Dependencies {
    pub database_version: semver::VersionReq,
    #[serde(default)]
    pub python: Vec<PythonRequirement>,
    /// Inter-plugin dependencies. Deliberately not the `python` serde pattern
    /// (always emitted): omitting the empty field keeps pre-existing index
    /// entries byte-identical when legacy indexes are rewritten by newer
    /// tooling (design doc D4).
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    pub plugins: Vec<PluginDependency>,
}

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

    #[test]
    fn parses_major_minor() {
        let v: ManifestSchemaVersion = "1.0".parse().unwrap();
        assert_eq!(v.major(), 1);
        assert_eq!(v.minor(), 0);
    }

    #[test]
    fn parses_higher_minor_within_known_major() {
        let v: ManifestSchemaVersion = "1.42".parse().unwrap();
        assert_eq!((v.major(), v.minor()), (1, 42));
    }

    #[test]
    fn rejects_malformed() {
        assert_matches!(
            "1".parse::<ManifestSchemaVersion>(),
            Err(SchemaError::MalformedSchemaVersion { .. })
        );
        assert_matches!(
            "1.0.0".parse::<ManifestSchemaVersion>(),
            Err(SchemaError::MalformedSchemaVersion { .. })
        );
        assert_matches!(
            "a.b".parse::<ManifestSchemaVersion>(),
            Err(SchemaError::MalformedSchemaVersion { .. })
        );
    }

    #[test]
    fn rejects_unsupported_major() {
        let err = "2.0".parse::<ManifestSchemaVersion>().unwrap_err();
        assert_matches!(err, SchemaError::UnsupportedManifestMajor { .. });
    }

    #[test]
    fn display_round_trip() {
        let v = ManifestSchemaVersion::new(1, 3);
        assert_eq!(format!("{v}"), "1.3");
        let parsed: ManifestSchemaVersion = "1.3".parse().unwrap();
        assert_eq!(parsed, v);
    }

    #[test]
    fn current_major_equals_supported() {
        assert_eq!(
            ManifestSchemaVersion::CURRENT.major(),
            SUPPORTED_MANIFEST_MAJOR
        );
    }

    #[test]
    fn current_to_string_round_trips() {
        let s = ManifestSchemaVersion::CURRENT.to_string();
        let parsed: ManifestSchemaVersion = s.parse().unwrap();
        assert_eq!(parsed, ManifestSchemaVersion::CURRENT);
    }

    #[test]
    fn current_is_one_three() {
        assert_eq!(
            (
                ManifestSchemaVersion::CURRENT.major(),
                ManifestSchemaVersion::CURRENT.minor()
            ),
            (1, 3)
        );
    }
}

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

    #[test]
    fn accepts_up_to_200_chars() {
        let ok_200 = "a".repeat(200);
        let d = Description::try_new(&ok_200).unwrap();
        assert_eq!(d.as_str().chars().count(), 200);
    }

    #[test]
    fn rejects_201_chars() {
        let too_long = "a".repeat(201);
        assert_matches!(
            Description::try_new(&too_long),
            Err(SchemaError::DescriptionTooLong { len: 201 })
        );
    }

    #[test]
    fn rejects_empty() {
        assert_matches!(Description::try_new(""), Err(SchemaError::DescriptionEmpty));
    }

    #[test]
    fn accepts_single_char() {
        assert!(Description::try_new("x").is_ok());
    }

    #[test]
    fn rejects_multiline_description_lf() {
        assert_matches!(
            Description::try_new("first\nsecond"),
            Err(SchemaError::DescriptionMultiline { .. })
        );
    }

    #[test]
    fn rejects_multiline_description_crlf() {
        assert_matches!(
            Description::try_new("first\r\nsecond"),
            Err(SchemaError::DescriptionMultiline { .. })
        );
    }

    #[test]
    fn rejects_multiline_description_cr() {
        assert_matches!(
            Description::try_new("first\rsecond"),
            Err(SchemaError::DescriptionMultiline { .. })
        );
    }

    /// A 201-char string containing a newline must be reported as multiline,
    /// not as too-long. The newline rule is the more specific.
    /// `rejects_201_chars` proves that the same 201-char input absent a
    /// newline fires `DescriptionTooLong`; together they pin precedence.
    #[test]
    fn multiline_check_precedes_length_check() {
        let s = format!("{}\n{}", "a".repeat(100), "b".repeat(100));
        assert_eq!(s.chars().count(), 201, "fixture sanity: input is 201 chars");
        let err = Description::try_new(&s).expect_err("must reject");
        let SchemaError::DescriptionMultiline { len } = err else {
            panic!("expected DescriptionMultiline, got {err:?}");
        };
        assert_eq!(len, 201);
    }
}

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

    #[rstest]
    #[case("process_writes", TriggerType::ProcessWrites)]
    #[case("process_scheduled_call", TriggerType::ProcessScheduledCall)]
    #[case("process_request", TriggerType::ProcessRequest)]
    fn valid_triggers_parse(#[case] input: &str, #[case] expected: TriggerType) {
        assert_eq!(input.parse::<TriggerType>().unwrap(), expected);
    }

    #[rstest]
    #[case("on_startup")]
    #[case("process_Writes")]
    #[case("")]
    fn invalid_triggers_rejected(#[case] input: &str) {
        use assert_matches::assert_matches;
        assert_matches!(
            input.parse::<TriggerType>(),
            Err(SchemaError::UnknownTriggerType { .. })
        );
    }

    #[test]
    fn serde_round_trip() {
        let t = TriggerType::ProcessScheduledCall;
        let json = serde_json::to_string(&t).unwrap();
        assert_eq!(json, "\"process_scheduled_call\"");
        let back: TriggerType = serde_json::from_str(&json).unwrap();
        assert_eq!(back, t);
    }

    #[test]
    fn serde_rejects_unknown() {
        let result: Result<TriggerType, _> = serde_json::from_str("\"on_startup\"");
        let err = result.expect_err("should reject unknown trigger");
        assert!(
            err.to_string().contains("on_startup"),
            "error should name the rejected trigger, got: {err}"
        );
    }
}

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

    #[test]
    fn accepts_simple_requirement() {
        assert!(PythonRequirement::try_new("requests>=2.31,<3").is_ok());
    }

    #[test]
    fn accepts_compatible_release() {
        assert!(PythonRequirement::try_new("pydantic~=2.0").is_ok());
    }

    #[test]
    fn rejects_malformed() {
        // `>>=` (double operator) is unambiguously rejected by PEP 508.
        assert_matches!(
            PythonRequirement::try_new("requests>>=2.0"),
            Err(SchemaError::InvalidPythonRequirement { .. })
        );
    }

    #[test]
    fn preserves_original_string() {
        let r = PythonRequirement::try_new("requests>=2.31,<3").unwrap();
        assert_eq!(r.as_str(), "requests>=2.31,<3");
    }
}

#[cfg(test)]
mod manifest_parse_tests {
    use super::*;
    use assert_matches::assert_matches;
    use pretty_assertions::assert_eq;

    const MINIMAL: &str = r#"
manifest_schema_version = "1.0"

[plugin]
name = "downsampler"
version = "1.2.0"
description = "Test plugin"
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.2.0,<4.0.0"
"#;

    const FULL: &str = r#"
manifest_schema_version = "1.0"

[plugin]
name = "downsampler"
version = "1.2.0"
description = "Notify an HTTP endpoint on every WAL commit."
triggers = ["process_writes", "process_scheduled_call"]
homepage = "https://influxdata.com"
repository = "https://github.com/influxdata/plugin-downsampler"
documentation = "https://github.com/influxdata/plugin-downsampler/readme.md"

[dependencies]
database_version = ">=3.2.0,<4.0.0"
python = ["requests>=2.31,<3", "pydantic~=2.0"]
"#;

    #[test]
    fn parses_minimal_manifest() {
        let m = Manifest::parse_toml(MINIMAL).expect("minimal manifest should parse");
        assert_eq!(m.plugin.name.as_str(), "downsampler");
        assert_eq!(m.plugin.version, semver::Version::new(1, 2, 0));
        assert_eq!(m.plugin.triggers.len(), 1);
    }

    #[test]
    fn parses_full_manifest() {
        let m = Manifest::parse_toml(FULL).expect("full manifest should parse");
        assert_eq!(m.plugin.triggers.len(), 2);
        assert_eq!(m.dependencies.python.len(), 2);
        assert!(m.plugin.homepage.is_some());
    }

    #[test]
    fn parses_snapshot_matches() {
        let m = Manifest::parse_toml(FULL).unwrap();
        insta::assert_debug_snapshot!("full_manifest_parsed", m);
    }

    #[test]
    fn rejects_missing_plugin_section() {
        let missing = r#"
manifest_schema_version = "1.0"

[dependencies]
database_version = ">=3.2.0"
"#;
        let errors = Manifest::parse_toml(missing).unwrap_err();
        assert_eq!(errors.errors().len(), 1);
        assert_eq!(errors.errors()[0].path.as_str(), "");
        assert_matches!(errors.errors()[0].error, SchemaError::TomlParse { .. });
    }

    #[test]
    fn rejects_missing_schema_version() {
        let missing = r#"
[plugin]
name = "x"
version = "1.0.0"
description = "x"
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.2.0"
"#;
        let errors = Manifest::parse_toml(missing).unwrap_err();
        assert_eq!(errors.errors().len(), 1);
        assert_eq!(errors.errors()[0].path.as_str(), "");
        assert_matches!(errors.errors()[0].error, SchemaError::TomlParse { .. });
    }

    #[test]
    fn ignores_unknown_top_level_field() {
        // Field is placed above any table header so it's unambiguously
        // top-level (appending to MINIMAL would land it in `[dependencies]`).
        let with_unknown = r#"
manifest_schema_version = "1.0"
experimental_feature = true

[plugin]
name = "downsampler"
version = "1.2.0"
description = "Test plugin"
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.2.0,<4.0.0"
"#;
        assert!(Manifest::parse_toml(with_unknown).is_ok());
    }

    #[test]
    fn parses_one_one_schema_version() {
        let src = MINIMAL.replace(
            r#"manifest_schema_version = "1.0""#,
            r#"manifest_schema_version = "1.1""#,
        );
        let m = Manifest::parse_toml(&src).unwrap();
        assert_eq!(m.manifest_schema_version.minor(), 1);
    }

    /// N distinct field-level defects must produce exactly N errors in one
    /// pass — guards against accidental short-circuiting in Phase 2.
    #[test]
    fn collects_multiple_defects_in_one_pass() {
        // Four defects: name contains a space, non-SemVer version, unknown
        // trigger, ftp URL.
        let input = r#"
manifest_schema_version = "1.0"

[plugin]
name = "Bad Name"
version = "1.2"
description = "multi-defect fixture"
triggers = ["on_startup"]
homepage = "ftp://bad"

[dependencies]
database_version = ">=3.0.0"
"#;
        let errors = Manifest::parse_toml(input).expect_err("should fail");
        let e = errors.errors();
        assert_eq!(
            e.len(),
            4,
            "expected 4 errors, got {}: {:?}",
            e.len(),
            e.iter().map(|r| &r.error).collect::<Vec<_>>()
        );

        let paths: Vec<&str> = e.iter().map(|r| r.path.as_str()).collect();
        assert!(
            paths.contains(&"plugin.name"),
            "missing plugin.name: {paths:?}"
        );
        assert!(
            paths.contains(&"plugin.version"),
            "missing plugin.version: {paths:?}"
        );
        assert!(
            paths.contains(&"plugin.triggers[0]"),
            "missing plugin.triggers[0]: {paths:?}"
        );
        assert!(
            paths.contains(&"plugin.homepage"),
            "missing plugin.homepage: {paths:?}"
        );
    }

    /// An unsupported major short-circuits before field-level validation,
    /// returning exactly 1 error even when other defects exist.
    #[test]
    fn schema_version_mismatch_short_circuits_with_single_error() {
        let input = r#"
manifest_schema_version = "99.0"

[plugin]
name = "Bad Name"
version = "1.0.0"
description = "x"
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.0.0"
"#;
        let errors = Manifest::parse_toml(input).expect_err("should fail");
        assert_eq!(
            errors.errors().len(),
            1,
            "short-circuit: expected exactly 1 error"
        );
        assert_matches::assert_matches!(
            errors.errors()[0].error,
            SchemaError::UnsupportedManifestMajor { .. }
        );
    }

    #[test]
    fn accepts_missing_exclude_defaults_empty() {
        let m = Manifest::parse_toml(MINIMAL).unwrap();
        assert!(m.plugin.exclude.is_empty());
    }

    #[test]
    fn accepts_empty_exclude() {
        let src = MINIMAL.replace(
            r#"triggers = ["process_writes"]"#,
            "triggers = [\"process_writes\"]\nexclude = []",
        );
        let m = Manifest::parse_toml(&src).unwrap();
        assert!(m.plugin.exclude.is_empty());
    }

    #[test]
    fn accepts_exclude_patterns_verbatim() {
        let src = MINIMAL.replace(
            r#"triggers = ["process_writes"]"#,
            "triggers = [\"process_writes\"]\nexclude = [\"tests/**\", \"*.pyc\"]",
        );
        let m = Manifest::parse_toml(&src).unwrap();
        assert_eq!(
            m.plugin.exclude,
            vec!["tests/**".to_string(), "*.pyc".to_string()]
        );
    }

    #[test]
    fn exclude_works_regardless_of_minor_version() {
        // Parser must not branch exclude support on the minor version.
        for ver in ["1.0", "1.1"] {
            let src = MINIMAL
                .replace(
                    r#"manifest_schema_version = "1.0""#,
                    &format!("manifest_schema_version = \"{ver}\""),
                )
                .replace(
                    r#"triggers = ["process_writes"]"#,
                    "triggers = [\"process_writes\"]\nexclude = [\"tests/**\"]",
                );
            let m = Manifest::parse_toml(&src).unwrap_or_else(|e| panic!("ver {ver}: {e}"));
            assert_eq!(m.plugin.exclude, vec!["tests/**".to_string()], "ver {ver}");
        }
    }

    #[test]
    fn rejects_non_array_exclude() {
        let src = MINIMAL.replace(
            r#"triggers = ["process_writes"]"#,
            "triggers = [\"process_writes\"]\nexclude = \"tests\"",
        );
        let errs = Manifest::parse_toml(&src).unwrap_err();
        assert_matches!(errs.errors()[0].error, SchemaError::TomlParse { .. });
    }

    #[test]
    fn rejects_non_string_exclude_item() {
        let src = MINIMAL.replace(
            r#"triggers = ["process_writes"]"#,
            "triggers = [\"process_writes\"]\nexclude = [1, 2]",
        );
        let errs = Manifest::parse_toml(&src).unwrap_err();
        assert_matches!(errs.errors()[0].error, SchemaError::TomlParse { .. });
    }

    /// A triple-quoted TOML string with embedded newlines must be rejected
    /// for `plugin.description`. (TOML strips the leading newline immediately
    /// after `"""`, so the rejection here fires on the inner `\n`s.)
    #[test]
    fn rejects_description_with_embedded_newline_in_toml() {
        let input = r#"
manifest_schema_version = "1.0"

[plugin]
name = "downsampler"
version = "1.2.0"
description = """
line one
line two
"""
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.0.0"
"#;
        let errors = Manifest::parse_toml(input).expect_err("multiline description must fail");
        assert_eq!(errors.errors().len(), 1);
        let e = &errors.errors()[0];
        assert_eq!(e.path.as_str(), "plugin.description");
        assert_matches!(e.error, SchemaError::DescriptionMultiline { .. });
    }
}

#[cfg(test)]
mod plugin_dependency_tests {
    use super::*;
    use assert_matches::assert_matches;
    use rstest::rstest;

    fn manifest_with_plugins(plugins_toml: &str) -> String {
        format!(
            r#"
manifest_schema_version = "1.3"

[plugin]
name = "downsampler"
version = "1.2.0"
description = "Test plugin"
triggers = ["process_writes"]

[dependencies]
database_version = ">=3.2.0,<4.0.0"
{plugins_toml}
"#
        )
    }

    #[test]
    fn parses_plugin_dependencies() {
        let src = manifest_with_plugins(
            r#"
[[dependencies.plugins]]
index_url = "https://plugins.example.com/index.json"
name = "geo-lookup"
version = ">=1.0.0,<2.0.0"

[[dependencies.plugins]]
index_url = "https://other.example.com/index.json"
name = "geo-lookup"
version = "2.1"
"#,
        );
        let m = Manifest::parse_toml(&src).expect("plugin deps should parse");
        assert_eq!(m.dependencies.plugins.len(), 2);
        let dep = &m.dependencies.plugins[0];
        assert_eq!(
            dep.index_url.as_url().as_str(),
            "https://plugins.example.com/index.json"
        );
        assert_eq!(dep.name.as_str(), "geo-lookup");
        assert!(dep.version.matches(&semver::Version::new(1, 5, 0)));
        // Cargo semantics: bare "2.1" means ^2.1.
        assert!(
            m.dependencies.plugins[1]
                .version
                .matches(&semver::Version::new(2, 5, 0))
        );
    }

    #[test]
    fn missing_plugins_defaults_empty() {
        let src = manifest_with_plugins("");
        let m = Manifest::parse_toml(&src).unwrap();
        assert!(m.dependencies.plugins.is_empty());
    }

    #[rstest]
    #[case(
        r#"index_url = "s3://bucket/index.json""#,
        "dependencies.plugins[0].index_url",
        "UnsupportedIndexUrlScheme"
    )]
    #[case(
        r#"index_url = "not a url""#,
        "dependencies.plugins[0].index_url",
        "InvalidUrl"
    )]
    #[case(
        r#"name = "Bad Name""#,
        "dependencies.plugins[0].name",
        "InvalidPluginName"
    )]
    #[case(
        r#"name = "con""#,
        "dependencies.plugins[0].name",
        "ReservedPluginName"
    )]
    #[case(
        r#"version = ">=bad""#,
        "dependencies.plugins[0].version",
        "InvalidPluginDependencyVersion"
    )]
    fn rejects_invalid_entry_field(
        #[case] override_line: &str,
        #[case] expected_path: &str,
        #[case] expected_variant: &str,
    ) {
        let (key, _) = override_line.split_once(" = ").unwrap();
        let mut lines = vec![
            r#"index_url = "https://plugins.example.com/index.json""#,
            r#"name = "geo-lookup""#,
            r#"version = ">=1.0.0""#,
        ];
        for line in &mut lines {
            if line.starts_with(key) {
                *line = override_line;
            }
        }
        let src =
            manifest_with_plugins(&format!("[[dependencies.plugins]]\n{}\n", lines.join("\n")));
        let errors = Manifest::parse_toml(&src).expect_err("should reject");
        assert_eq!(errors.errors().len(), 1, "errors: {errors}");
        assert_eq!(errors.errors()[0].path.as_str(), expected_path);
        assert_eq!(errors.errors()[0].error.variant_name(), expected_variant);
    }

    /// Duplicates fold the name (`geo-lookup` == `geo_lookup`) and compare
    /// `index_url` by parsed-URL equality (`EXAMPLE.com` == `example.com`).
    #[rstest]
    #[case("https://plugins.example.com/index.json", "geo-lookup")]
    #[case("https://plugins.example.com/index.json", "geo_lookup")]
    #[case("https://plugins.EXAMPLE.com/index.json", "GEO-LOOKUP")]
    fn rejects_duplicate_entries(#[case] second_url: &str, #[case] second_name: &str) {
        let src = manifest_with_plugins(&format!(
            r#"
[[dependencies.plugins]]
index_url = "https://plugins.example.com/index.json"
name = "geo-lookup"
version = ">=1.0.0"

[[dependencies.plugins]]
index_url = "{second_url}"
name = "{second_name}"
version = ">=2.0.0"
"#
        ));
        let errors = Manifest::parse_toml(&src).expect_err("duplicate should reject");
        assert_eq!(errors.errors().len(), 1, "errors: {errors}");
        assert_eq!(errors.errors()[0].path.as_str(), "dependencies.plugins[1]");
        assert_matches!(
            errors.errors()[0].error,
            SchemaError::DuplicatePluginDependency { .. }
        );
    }

    /// The same canonical name at two different registries is legitimate —
    /// different `index_url`s are distinct plugins by the identity model.
    #[test]
    fn same_name_at_different_registries_allowed() {
        let src = manifest_with_plugins(
            r#"
[[dependencies.plugins]]
index_url = "https://a.example.com/index.json"
name = "geo-lookup"
version = ">=1.0.0"

[[dependencies.plugins]]
index_url = "https://b.example.com/index.json"
name = "geo-lookup"
version = ">=1.0.0"
"#,
        );
        let m = Manifest::parse_toml(&src).expect("distinct registries should parse");
        assert_eq!(m.dependencies.plugins.len(), 2);
    }

    /// One malformed field must not cascade into spurious duplicate errors,
    /// and defects across entries collect in one pass.
    #[test]
    fn collects_multiple_entry_defects_in_one_pass() {
        let src = manifest_with_plugins(
            r#"
[[dependencies.plugins]]
index_url = "s3://bucket/index.json"
name = "geo-lookup"
version = ">=1.0.0"

[[dependencies.plugins]]
index_url = "https://plugins.example.com/index.json"
name = "geo-lookup"
version = ">=bad"
"#,
        );
        let errors = Manifest::parse_toml(&src).expect_err("should reject");
        let paths: Vec<&str> = errors.errors().iter().map(|r| r.path.as_str()).collect();
        assert_eq!(
            paths,
            vec![
                "dependencies.plugins[0].index_url",
                "dependencies.plugins[1].version"
            ],
            "no duplicate error should fire: entry 0's url never parsed"
        );
    }

    /// A dependency entry missing a required key fails phase 1 as a
    /// root-level TOML parse error, consistent with other required fields.
    #[test]
    fn missing_required_key_is_root_parse_error() {
        let src = manifest_with_plugins(
            r#"
[[dependencies.plugins]]
index_url = "https://plugins.example.com/index.json"
version = ">=1.0.0"
"#,
        );
        let errors = Manifest::parse_toml(&src).expect_err("missing name should reject");
        assert_eq!(errors.errors().len(), 1);
        assert_eq!(errors.errors()[0].path.as_str(), "");
        assert_matches!(errors.errors()[0].error, SchemaError::TomlParse { .. });
    }
}

#[cfg(test)]
mod validation_tests {
    use super::*;
    use assert_matches::assert_matches;
    use rstest::rstest;

    fn with_fragment(key: &str, value: &str) -> String {
        format!(
            r#"
manifest_schema_version = "1.0"

[plugin]
name = "x"
version = "1.0.0"
description = "x"
triggers = ["process_writes"]
{key} = {value}

[dependencies]
database_version = ">=3.0.0"
"#
        )
    }

    #[rstest]
    #[case("homepage", r#""ftp://bad/""#)]
    #[case("homepage", r#""file:///local""#)]
    #[case("repository", r#""git://bad""#)]
    #[case("documentation", r#""s3://bucket""#)]
    fn rejects_non_http_urls(#[case] field: &str, #[case] value: &str) {
        let manifest = with_fragment(field, value);
        let errors = Manifest::parse_toml(&manifest).unwrap_err();
        assert_eq!(errors.errors().len(), 1);
        assert_matches!(
            errors.errors()[0].error,
            SchemaError::InvalidUrlScheme { .. }
        );
        assert_eq!(errors.errors()[0].path.as_str(), &format!("plugin.{field}"));
    }

    #[rstest]
    #[case("homepage", r#""http://example.com""#)]
    #[case("homepage", r#""https://example.com""#)]
    #[case("repository", r#""https://github.com/foo/bar""#)]
    #[case("documentation", r#""http://docs.example.com/plugin""#)]
    fn accepts_http_and_https_urls(#[case] field: &str, #[case] value: &str) {
        let manifest = with_fragment(field, value);
        Manifest::parse_toml(&manifest)
            .unwrap_or_else(|e| panic!("expected {field}={value} to parse, got {e}"));
    }

    #[test]
    fn rejects_empty_triggers() {
        let input = r#"
manifest_schema_version = "1.0"

[plugin]
name = "x"
version = "1.0.0"
description = "x"
triggers = []

[dependencies]
database_version = ">=3.0.0"
"#;
        let errors = Manifest::parse_toml(input).unwrap_err();
        assert_eq!(errors.errors().len(), 1);
        assert_matches!(errors.errors()[0].error, SchemaError::EmptyTriggers);
        assert_eq!(errors.errors()[0].path.as_str(), "plugin.triggers");
    }

    /// Invalid `dependencies.database_version` surfaces as
    /// `InvalidDatabaseVersion` with the `dependencies.database_version`
    /// path, not flattened through `serde::Error::custom`.
    #[test]
    fn rejects_invalid_database_version() {
        let input = r#"
manifest_schema_version = "1.0"

[plugin]
name = "x"
version = "1.0.0"
description = "x"
triggers = ["process_writes"]

[dependencies]
database_version = ">=not-a-version"
"#;
        let errors = Manifest::parse_toml(input).unwrap_err();
        assert_eq!(errors.errors().len(), 1);
        assert_matches!(
            errors.errors()[0].error,
            SchemaError::InvalidDatabaseVersion { .. }
        );
        assert_eq!(
            errors.errors()[0].path.as_str(),
            "dependencies.database_version"
        );
    }
}