sdf-metadata 0.14.0

metadata definition for core sdf
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
use crate::{
    util::{
        config_error::{ConfigError, INDENT},
        sdf_types_map::SdfTypesMap,
    },
    wit::{
        dataflow::{DefaultConfigurations, Topic},
        io::TypeRef,
        metadata::{OutputType, SdfKeyValue},
    },
};

#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd)]
pub struct TopicValidationFailure {
    pub name: String,
    pub errors: Vec<TopicValidationError>,
}

impl ConfigError for TopicValidationFailure {
    fn readable(&self, indents: usize) -> String {
        let mut result = format!(
            "{}Topic `{}` is invalid:\n",
            INDENT.repeat(indents),
            self.name
        );

        for error in &self.errors {
            result.push_str(&error.readable(indents + 1));
        }

        result
    }
}

#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd)]
pub enum TopicValidationError {
    InvalidKeyRef(String),
    InvalidValueRef(String),
    Name(Vec<TopicNameError>),
    MissingConverter,
}

impl ConfigError for TopicValidationError {
    fn readable(&self, indents: usize) -> String {
        let indent = INDENT.repeat(indents);

        match self {
            Self::InvalidKeyRef(key) => {
                format!(
                    "{}Referenced key type `{}` not found in config or imported types\n",
                    indent, key
                )
            }
            Self::InvalidValueRef(value) => {
                format!(
                    "{}Referenced type `{}` not found in config or imported types\n",
                    indent, value
                )
            }
            Self::Name(errors) => {
                let mut result = format!("{}Topic name is invalid:\n", indent);

                for error in errors {
                    result.push_str(&error.readable(indents + 1));
                }
                result
            }
            Self::MissingConverter => {
                format!(
                    "{}Topic needs to have a \"converter\" specified for serializing/deserializing records\n",
                    indent
                )
            }
        }
    }
}

#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd)]
pub enum TopicNameError {
    Empty,
    TooLong,
    InvalidChars,
    StartsOrEndsWithDash,
}

impl ConfigError for TopicNameError {
    fn readable(&self, indents: usize) -> String {
        let indent = INDENT.repeat(indents);

        match self {
            Self::Empty => format!("{}Name cannot be empty\n", indent),
            Self::TooLong => format!(
                "{}Name is too long, Topic names may only have {MAX_TOPIC_NAME_LEN} characters\n",
                indent
            ),
            Self::InvalidChars => format!(
                "{}Name may only contain lowercase alphanumeric characters or '-'\n",
                indent
            ),
            Self::StartsOrEndsWithDash => {
                format!("{}Name cannot start or end with a dash\n", indent)
            }
        }
    }
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct KVSchemaType {
    pub key: Option<TypeRef>,
    pub value: TypeRef,
}

impl KVSchemaType {
    pub fn timestamp() -> Self {
        Self {
            key: None,
            value: TypeRef {
                name: "s64".to_string(),
            },
        }
    }
}

impl From<(Option<TypeRef>, TypeRef)> for KVSchemaType {
    fn from((key, value): (Option<TypeRef>, TypeRef)) -> Self {
        Self { key, value }
    }
}

impl From<OutputType> for KVSchemaType {
    fn from(output_type: OutputType) -> Self {
        match output_type {
            OutputType::Ref(r) => Self {
                key: None,
                value: r,
            },
            OutputType::KeyValue(SdfKeyValue { key, value }) => Self {
                key: Some(key),
                value,
            },
        }
    }
}

const MAX_TOPIC_NAME_LEN: usize = 63;

impl Topic {
    pub fn validate(
        &self,
        default_configs: Option<DefaultConfigurations>,
        types_map: &SdfTypesMap,
    ) -> Result<(), TopicValidationFailure> {
        let mut failure = TopicValidationFailure {
            name: self.name.clone(),
            errors: vec![],
        };

        if let Err(name_errors) = validate_topic_name(&self.name) {
            failure.errors.push(TopicValidationError::Name(name_errors));
        }

        if let Some(key) = &self.schema.key {
            if !types_map.contains_key(&key.type_.name) {
                // Important! if we extract a ValidationError trait, see if we want to impl a push_str to
                // to simplify things like this

                failure
                    .errors
                    .push(TopicValidationError::InvalidKeyRef(key.type_.name.clone()));
            }
        }

        if !types_map.contains_key(&self.schema.value.type_.name) {
            failure.errors.push(TopicValidationError::InvalidValueRef(
                self.schema.value.type_.name.clone(),
            ))
        }

        if self
            .schema
            .value
            .converter
            .or(default_configs.and_then(|c| c.converter))
            .is_none()
        {
            failure.errors.push(TopicValidationError::MissingConverter);
        }
        if failure.errors.is_empty() {
            Ok(())
        } else {
            Err(failure)
        }
    }

    pub fn type_(&self) -> KVSchemaType {
        (
            self.schema.key.as_ref().map(|key| key.type_.clone()),
            self.schema.value.type_.clone(),
        )
            .into()
    }
}

pub fn validate_topic_name(name: &str) -> Result<(), Vec<TopicNameError>> {
    let mut errors = vec![];

    if name.is_empty() {
        errors.push(TopicNameError::Empty);
    }

    if name.len() > MAX_TOPIC_NAME_LEN {
        errors.push(TopicNameError::TooLong);
    }

    if !name
        .chars()
        .all(|ch| ch.is_ascii_lowercase() || ch.is_ascii_digit() || ch == '-')
    {
        errors.push(TopicNameError::InvalidChars);
    }

    if name.ends_with('-') || name.starts_with('-') {
        errors.push(TopicNameError::StartsOrEndsWithDash);
    }

    if errors.is_empty() {
        Ok(())
    } else {
        Err(errors)
    }
}

#[cfg(test)]
mod test {
    use crate::wit::io::{SchemaSerDe, TopicSchema, TypeRef, SerdeConverter::Json};
    use crate::util::config_error::ConfigError;

    use super::*;

    #[test]
    fn test_validate_topic_name_rejects_long_name() {
        let name = "a".repeat(MAX_TOPIC_NAME_LEN + 1);
        let res = validate_topic_name(&name).expect_err("should error for long name");

        assert!(res.contains(&TopicNameError::TooLong));

        assert_eq!(
            res[0].readable(0),
            "Name is too long, Topic names may only have 63 characters\n"
        )
    }

    #[test]
    fn test_validate_topic_name_rejects_non_alphanumeric_name() {
        let name = "invalid-to&pic-name";
        let res = validate_topic_name(name).expect_err("should error for invalid name");

        assert!(res.contains(&TopicNameError::InvalidChars));

        assert_eq!(
            res[0].readable(0),
            "Name may only contain lowercase alphanumeric characters or '-'\n"
        )
    }

    #[test]
    fn test_validate_topic_name_rejects_name_starting_with_dash() {
        let name = "-invalid-topic-name";
        let res = validate_topic_name(name).expect_err("should error for invalid name");

        assert!(res.contains(&TopicNameError::StartsOrEndsWithDash));
        assert_eq!(res[0].readable(0), "Name cannot start or end with a dash\n")
    }

    #[test]
    fn test_validate_topic_name_rejects_name_ending_with_dash() {
        let name = "invalid-topic-name-";
        let res = validate_topic_name(name).expect_err("should error for invalid name");

        assert!(res.contains(&TopicNameError::StartsOrEndsWithDash));
        assert_eq!(res[0].readable(0), "Name cannot start or end with a dash\n")
    }

    #[test]
    fn test_validate_rejects_invalid_topic_name() {
        let types_map = SdfTypesMap::default();

        let topic = Topic {
            name: "invalid-to&pic-name".to_string(),
            schema: TopicSchema {
                key: None,
                value: SchemaSerDe {
                    converter: Some(Json),
                    type_: TypeRef {
                        name: "u8".to_string(),
                    },
                },
            },
            consumer: None,
            producer: None,
            profile: None,
        };

        let res = topic
            .validate(None, &types_map)
            .expect_err("should error for invalid name");

        assert!(res.errors.contains(&TopicValidationError::Name(vec![
            TopicNameError::InvalidChars
        ])));
        assert_eq!(
            res.readable(0),
            r#"Topic `invalid-to&pic-name` is invalid:
    Topic name is invalid:
        Name may only contain lowercase alphanumeric characters or '-'
"#
        )
    }

    #[test]
    fn test_validate_rejects_invalid_record_key_datatype() {
        let types_map = SdfTypesMap::default();

        let topic = Topic {
            name: "topic-name".to_string(),
            schema: TopicSchema {
                key: Some(SchemaSerDe {
                    converter: Some(Json),
                    type_: TypeRef {
                        name: "foobar".to_string(),
                    },
                }),
                value: SchemaSerDe {
                    converter: Some(Json),
                    type_: TypeRef {
                        name: "u8".to_string(),
                    },
                },
            },
            consumer: None,
            producer: None,
            profile: None,
        };

        let res = topic
            .validate(None, &types_map)
            .expect_err("should error for invalid record key type");

        assert!(res
            .errors
            .contains(&TopicValidationError::InvalidKeyRef("foobar".to_string())));
        assert_eq!(
            res.readable(0),
            r#"Topic `topic-name` is invalid:
    Referenced key type `foobar` not found in config or imported types
"#
        )
    }

    #[test]
    fn test_validate_rejects_invalid_record_value_datatype() {
        let types_map = SdfTypesMap::default();

        let topic = Topic {
            name: "topic-name".to_string(),
            schema: TopicSchema {
                key: None,
                value: SchemaSerDe {
                    converter: Some(Json),
                    type_: TypeRef {
                        name: "foobar".to_string(),
                    },
                },
            },
            consumer: None,
            producer: None,
            profile: None,
        };

        let res = topic
            .validate(None, &types_map)
            .expect_err("should error for invalid record type");

        assert!(res
            .errors
            .contains(&TopicValidationError::InvalidValueRef("foobar".to_string())));
        assert_eq!(
            res.readable(0),
            r#"Topic `topic-name` is invalid:
    Referenced type `foobar` not found in config or imported types
"#
        )
    }

    #[test]
    fn test_validate_rejects_topics_with_missing_converter() {
        let types_map = SdfTypesMap::default();

        let topic = Topic {
            name: "topic-name".to_string(),
            schema: TopicSchema {
                key: None,
                value: SchemaSerDe {
                    converter: None,
                    type_: TypeRef {
                        name: "u8".to_string(),
                    },
                },
            },
            consumer: None,
            producer: None,
            profile: None,
        };

        let res = topic
            .validate(None, &types_map)
            .expect_err("should error missing converter");

        assert!(res.errors.contains(&TopicValidationError::MissingConverter));
        assert_eq!(
            res.readable(0),
            r#"Topic `topic-name` is invalid:
    Topic needs to have a "converter" specified for serializing/deserializing records
"#
        )
    }

    #[test]
    fn test_validate_accepts_valid_topic() {
        let types_map = SdfTypesMap::default();

        let topic = Topic {
            name: "topic-name".to_string(),
            schema: TopicSchema {
                key: Some(SchemaSerDe {
                    type_: TypeRef {
                        name: "string".to_string(),
                    },
                    converter: Some(Json),
                }),
                value: SchemaSerDe {
                    converter: Some(Json),
                    type_: TypeRef {
                        name: "u8".to_string(),
                    },
                },
            },
            consumer: None,
            producer: None,
            profile: None,
        };

        topic.validate(None, &types_map).expect("should validate");
    }
}