azure_iot_operations_protocol 1.0.0

Utilities for using the Azure IoT Operations Protocol over MQTT
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use std::collections::HashMap;

use azure_iot_operations_mqtt::control_packet::{TopicFilter, TopicName};
use regex::Regex;

/// Wildcard token
pub const WILDCARD: &str = "+";

// NOTE: This error design is less than ideal as detailed messages are only provided for the
// InvalidPattern kind. This is because the other error kinds have logic that validates many
// things at once, thus not allowing an easy way to report granular detail without reworking
// substantial structure and organization of this module.
//
// It has been suggested that namespaces and share names should be validated
// separately before being provided to the constructor as well, as they are distinct from the
// pattern, and having a TopicPatternError for something that is not a topic pattern is
// semantically strange, which may help in improving error implementation here.
//
// This would also probably allow for better semantic separation of pattern failures from
// token replacement failures, which would improve the experience of using this module.

/// Represents an error that occurred when creating a [`TopicPattern`]
#[derive(thiserror::Error, Debug)]
pub struct TopicPatternError {
    msg: Option<String>,
    kind: TopicPatternErrorKind,
}

impl TopicPatternError {
    /// Get the kind of error that occurred when creating a [`TopicPattern`]
    #[must_use]
    pub fn kind(&self) -> &TopicPatternErrorKind {
        &self.kind
    }
}

impl std::fmt::Display for TopicPatternError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(msg) = &self.msg {
            write!(f, "{} - {}", self.kind, msg)
        } else {
            write!(f, "{}", self.kind)
        }
    }
}

impl From<azure_iot_operations_mqtt::error::TopicError> for TopicPatternError {
    fn from(value: azure_iot_operations_mqtt::error::TopicError) -> Self {
        // `TopicError` wraps `DecodeError` which may contain non-topic-related errors,
        // so we cannot match specifically for topic validation failures.
        TopicPatternError {
            msg: Some(value.to_string()),
            kind: TopicPatternErrorKind::Pattern(value.to_string()),
        }
    }
}

/// Represents the kind of error that occurred when creating a [`TopicPattern`]
#[derive(thiserror::Error, Debug)]
pub enum TopicPatternErrorKind {
    /// The topic pattern is invalid
    #[error("Invalid topic pattern: {0}")]
    Pattern(String),
    /// The share name is invalid
    #[error("Share name '{0}' is invalid")]
    ShareName(String),
    /// The topic namespace is invalid
    #[error("Topic namespace '{0}' is invalid")]
    Namespace(String),
    /// Could not replace a token in the topic pattern
    #[error("Token '{0}' replacement value '{1}' is invalid")]
    TokenReplacement(String, String),
}

/// Check if a string contains invalid characters specified in [topic-structure.md](https://github.com/Azure/iot-operations-sdks/blob/main/doc/reference/topic-structure.md)
///
/// Returns true if the string contains any of the following:
/// - Non-ASCII characters
/// - Characters outside the range of '!' to '~'
/// - Characters '+', '#', '{', '}'
///
/// # Arguments
/// * `s` - A string slice to check for invalid characters
#[must_use]
pub fn contains_invalid_char(s: &str) -> bool {
    s.chars().any(|c| {
        !c.is_ascii() || !('!'..='~').contains(&c) || c == '+' || c == '#' || c == '{' || c == '}'
    })
}

/// Determine whether a string is valid for use as a replacement string in a custom replacement map
/// or a topic namespace based on [topic-structure.md](https://github.com/Azure/iot-operations-sdks/blob/main/doc/reference/topic-structure.md)
///
/// Returns true if the string is not empty, does not contain invalid characters, does not start or
/// end with '/', and does not contain "//"
///
/// # Arguments
/// * `s` - A string slice to check for validity
#[must_use]
pub fn is_valid_replacement(s: &str) -> bool {
    !(s.is_empty()
        || contains_invalid_char(s)
        || s.starts_with('/')
        || s.ends_with('/')
        || s.contains("//"))
}

/// Represents a topic pattern for Azure IoT Operations Protocol topics
#[derive(Debug)]
pub struct TopicPattern {
    /// The topic pattern before the initial replacements have been made
    static_pattern: String,
    /// The topic pattern after the initial replacements have been made
    dynamic_pattern: String,
    /// The regex pattern to match tokens in the topic pattern
    pattern_regex: Regex,
    /// The share name for the topic pattern
    share_name: Option<String>,
    /// The namespace prefix length (including trailing slash) for parsing
    namespace_prefix_len: usize,
}

impl TopicPattern {
    /// Creates a new topic pattern from a pattern string
    ///
    /// Returns a new [`TopicPattern`] on success, or [`TopicPatternError`] on failure
    ///
    /// # Arguments
    /// * `property_name` - A string slice representing the name of the property that provides the topic pattern
    /// * `pattern` - A string slice representing the topic pattern
    /// * `share_name` - An optional string representing the share name for the topic pattern
    /// * `topic_namespace` - An optional string slice representing the topic namespace
    /// * `token_map` - A map of token replacements for initial replacement
    ///
    /// # Errors
    /// The kind of error is determined by which argument is invalid:
    /// - Has kind [`TopicPatternErrorKind::Pattern`] if the pattern is invalid
    /// - Has kind [`TopicPatternErrorKind::ShareName`] if the share name is invalid
    /// - Has kind [`TopicPatternErrorKind::Namespace`] if the topic namespace is invalid
    /// - Has kind [`TopicPatternErrorKind::TokenReplacement`] if the token replacement is invalid
    ///
    /// # Panics
    /// If any regex fails to compile which is impossible given that the regex are pre-defined.
    ///
    /// If any regex group is not present when it is expected to be, which is impossible given
    /// that there is only one group in the regex pattern.
    pub fn new<'a>(
        pattern: &'a str,
        share_name: Option<String>,
        topic_namespace: Option<&str>,
        topic_token_map: &'a HashMap<String, String>,
    ) -> Result<Self, TopicPatternError> {
        if pattern.trim().is_empty() {
            return Err(TopicPatternError {
                msg: Some("Pattern is empty".to_string()),
                kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
            });
        }

        if pattern.starts_with('$') {
            return Err(TopicPatternError {
                msg: Some("Pattern must not start with '$'".to_string()),
                kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
            });
        }

        if let Some(share_name) = &share_name
            && (share_name.trim().is_empty()
                || contains_invalid_char(share_name)
                || share_name.contains('/'))
        {
            return Err(TopicPatternError {
                msg: None,
                kind: TopicPatternErrorKind::ShareName(share_name.clone()),
            });
        }

        // Matches empty levels at the start, middle, or end of the pattern
        let empty_level_regex =
            Regex::new(r"((^\s*/)|(/\s*/)|(/\s*$))").expect("Static regex string should not fail");

        if empty_level_regex.is_match(pattern) {
            return Err(TopicPatternError {
                msg: Some("Contains empty level(s)".to_string()),
                kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
            });
        }

        // Used to accumulate the pattern as checks and replacements are made
        let mut acc_pattern = String::new();
        let mut namespace_prefix_len = 0;

        if let Some(topic_namespace) = topic_namespace {
            if !is_valid_replacement(topic_namespace) {
                return Err(TopicPatternError {
                    msg: None,
                    kind: TopicPatternErrorKind::Namespace(topic_namespace.to_string()),
                });
            }
            acc_pattern.push_str(topic_namespace);
            acc_pattern.push('/');
            namespace_prefix_len = topic_namespace.len() + 1; // +1 for the '/' separator
        }

        // Matches any tokens in the pattern, i.e foo/{bar} would match {bar}
        let pattern_regex =
            Regex::new(r"(\{[^}]+\})").expect("Static regex string should not fail");
        // Matches any invalid characters in the pattern
        let invalid_regex =
            Regex::new(r"([^\x21-\x7E]|[+#{}])").expect("Static regex string should not fail");

        // Marks the index of the last match in the pattern
        let mut last_match = 0;
        let mut last_end_index = 0;
        for caps in pattern_regex.captures_iter(pattern) {
            // Regex library guarantees that the capture group is always present when it is only one
            let token_capture = caps.get(0).unwrap();
            // Token is captured with surrounding curly braces as per the regex pattern
            let token_with_braces = token_capture.as_str();
            let token_without_braces = &token_with_braces[1..token_with_braces.len() - 1];

            if token_without_braces.trim().is_empty() {
                return Err(TopicPatternError {
                    msg: Some("Contains empty token".to_string()),
                    kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
                });
            }

            if last_end_index != 0 && last_end_index == token_capture.start() {
                return Err(TopicPatternError {
                    msg: Some("Contains adjacent tokens".to_string()),
                    kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
                });
            }

            last_end_index = token_capture.end();
            // Accumulate the pattern up to the token
            let acc = &pattern[last_match..token_capture.start()];

            // Check if the accumulated part of the pattern is valid
            if invalid_regex.is_match(acc) {
                return Err(TopicPatternError {
                    msg: Some("Contains invalid characters".to_string()),
                    kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
                });
            }

            acc_pattern.push_str(acc);

            // Check if the token is valid
            if invalid_regex.is_match(token_without_braces) || token_without_braces.contains('/') {
                return Err(TopicPatternError {
                    msg: Some(format!(
                        "Contains invalid characters in token {token_without_braces}"
                    )),
                    kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
                });
            }

            // Check if the replacement is valid
            if let Some(val) = topic_token_map.get(token_without_braces) {
                if !is_valid_replacement(val) {
                    return Err(TopicPatternError {
                        msg: None,
                        kind: TopicPatternErrorKind::TokenReplacement(
                            token_without_braces.to_string(),
                            val.clone(),
                        ),
                    });
                }
                acc_pattern.push_str(val);
            } else {
                // Token is not replaced, so append the token with braces
                acc_pattern.push_str(token_with_braces);
            }
            last_match = token_capture.end();
        }

        // Check the last part of the pattern
        let acc = &pattern[last_match..];
        if invalid_regex.is_match(acc) {
            return Err(TopicPatternError {
                msg: Some("Contains invalid characters".to_string()),
                kind: TopicPatternErrorKind::Pattern(pattern.to_string()),
            });
        }

        acc_pattern.push_str(acc);

        Ok(TopicPattern {
            static_pattern: pattern.to_string(),
            dynamic_pattern: acc_pattern,
            pattern_regex,
            share_name,
            namespace_prefix_len,
        })
    }

    /// Get the subscribe topic filter for the pattern
    ///
    /// If a share name is present, it is prepended to the topic pattern
    ///
    /// Returns the subscribe topic filter for the pattern
    pub fn as_subscribe_topic(&self) -> Result<TopicFilter, TopicPatternError> {
        let mut topic = self
            .pattern_regex
            .replace_all(&self.dynamic_pattern, WILDCARD)
            .to_string();
        if let Some(share_name) = &self.share_name {
            topic = format!("$share/{share_name}/{topic}");
        }
        Ok(TopicFilter::new(&topic)?)
    }

    /// Get the publish topic for the pattern
    ///
    /// Returns the publish topic as a String on success, or an [`TopicPatternError`] on failure
    ///
    /// # Arguments
    /// * `tokens` - A map of token replacements for the topic pattern, can be empty if there are
    ///   no replacements to be made
    ///
    /// # Errors
    /// The error kind will be [`TopicPatternErrorKind::TokenReplacement`] if the topic
    /// contains a token that was not provided in the replacement map, or if the replacement is
    /// invalid.
    ///
    /// # Panics
    /// Panics if regex group is not present when it is expected to be, which is impossible given
    /// that there is only one group in the regex pattern.
    pub fn as_publish_topic(
        &self,
        tokens: &HashMap<String, String>,
    ) -> Result<TopicName, TopicPatternError> {
        // Initialize the publish topic with the same capacity as the pattern to avoid reallocations
        let mut publish_topic = String::with_capacity(self.dynamic_pattern.len());

        // Marks the index of the last match in the pattern
        let mut last_match = 0;
        for caps in self.pattern_regex.captures_iter(&self.dynamic_pattern) {
            // Regex library guarantees that the capture group is always present when it is only one
            let key_cap = caps.get(0).unwrap();

            // Token is captured with surrounding curly braces as per the regex pattern, removed here
            let key = &key_cap.as_str()[1..key_cap.as_str().len() - 1];

            // Accumulate the pattern up to the token
            publish_topic.push_str(&self.dynamic_pattern[last_match..key_cap.start()]);

            // Check if the replacement is valid
            if let Some(val) = tokens.get(key) {
                if !is_valid_replacement(val) {
                    return Err(TopicPatternError {
                        msg: None,
                        kind: TopicPatternErrorKind::TokenReplacement(key.to_string(), val.clone()),
                    });
                }
                publish_topic.push_str(val);
            } else {
                return Err(TopicPatternError {
                    msg: None,
                    kind: TopicPatternErrorKind::TokenReplacement(key.to_string(), String::new()),
                });
            }
            last_match = key_cap.end();
        }

        publish_topic.push_str(&self.dynamic_pattern[last_match..]);
        Ok(TopicName::new(&publish_topic)?)
    }

    /// Compare an MQTT topic name to the [`TopicPattern`], identifying tokens in the topic name and
    /// returning the corresponding values.
    ///
    /// Returns a map of tokens to values in the topic name.
    #[must_use]
    pub fn parse_tokens(&self, topic: &str) -> HashMap<String, String> {
        let mut tokens = HashMap::new();

        // Skip the namespace prefix to align with the static pattern
        let topic_ref = if topic.len() >= self.namespace_prefix_len {
            &topic[self.namespace_prefix_len..]
        } else {
            // Topic is shorter than namespace, no tokens can be extracted
            return tokens;
        };

        // Use the original efficient approach but on the namespace-adjusted topic
        let mut topic_ref = topic_ref;
        let mut last_token_end = 0;

        // Find all the tokens in the static pattern
        for find in self.pattern_regex.find_iter(&self.static_pattern) {
            // Get the start and end indices of the current match
            let token_start = find.start();
            let token_end = find.end();

            // Calculate the start index of the value in the topic
            let value_start = token_start - last_token_end;
            // Update the last_token_end to the end of the current match + 1 to skip the '/'
            // Note: We won't have an out of bounds error here because if this is the last token,
            // we won't have another match
            last_token_end = token_end + 1;

            // Slice the topic string to start from the start of the token
            topic_ref = &topic_ref[value_start..];

            // Split the topic string at the next '/' to get the value of the token and the rest of the topic
            let (value, rest) = topic_ref.split_once('/').unwrap_or((topic_ref, ""));
            // Update topic_ref to the rest of the topic
            topic_ref = rest;

            // Insert the token and value into the tokens map
            tokens.insert(
                find.as_str()[1..find.as_str().len() - 1].to_string(), // Remove the curly braces
                value.to_string(),
            );
        }

        tokens
    }
}

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

    use super::*;

    fn create_topic_tokens() -> HashMap<String, String> {
        HashMap::from([
            ("testToken1".to_string(), "testRepl1".to_string()),
            ("testToken2".to_string(), "testRepl2".to_string()),
            ("testToken3".to_string(), "testRepl3".to_string()),
        ])
    }

    #[test_case("test", "test"; "no token")]
    #[test_case("test/test", "test/test"; "no token multiple levels")]
    #[test_case("{wildToken}", "{wildToken}"; "only wildcard")]
    #[test_case("{testToken1}", "testRepl1"; "only token")]
    #[test_case("test/{testToken1}", "test/testRepl1"; "token at end")]
    #[test_case("{testToken1}/test", "testRepl1/test"; "token at start")]
    #[test_case("test/{testToken1}/test", "test/testRepl1/test"; "token in middle")]
    #[test_case("test/{testToken1}/test/{testToken1}", "test/testRepl1/test/testRepl1"; "multiple identical tokens")]
    #[test_case("{wildToken}/{testToken1}", "{wildToken}/testRepl1"; "wildcard token")]
    #[test_case("test/{testToken1}/{wildToken}", "test/testRepl1/{wildToken}"; "wildcard token at end")]
    #[test_case("{wildToken}/test/{testToken1}", "{wildToken}/test/testRepl1"; "wildcard token at start")]
    #[test_case("test/{testToken1}/{wildToken}/test", "test/testRepl1/{wildToken}/test"; "wildcard token in middle")]
    #[test_case("test/{testToken1}/{testToken2}/{testToken3}", "test/testRepl1/testRepl2/testRepl3"; "multiple varied tokens")]
    fn test_topic_pattern_new_pattern_valid(pattern: &str, result: &str) {
        let pattern = TopicPattern::new(pattern, None, None, &create_topic_tokens()).unwrap();

        assert_eq!(pattern.dynamic_pattern, result);
    }

    #[test_case(""; "empty")]
    #[test_case(" "; "whitespace")]
    #[test_case("$invalidPattern/{testToken1}"; "starts with dollar")]
    #[test_case("/invalidPattern/{testToken1}"; "starts with slash")]
    #[test_case("{testToken1}/invalidPattern/"; "ends with slash")]
    #[test_case("invalid//Pattern/{testToken1}"; "contains double slash")]
    #[test_case(" /invalidPattern/{testToken1}"; "starts with whitespace")]
    #[test_case("{testToken1}/invalidPattern/ "; "ends with whitespace")]
    #[test_case("invalidPattern/ /invalidPattern/{testToken1}"; "level contains only whitespace")]
    #[test_case("invalidPattern/invalid Pattern/invalidPattern/{testToken1}"; "level contains whitespace")]
    #[test_case("invalidPattern/invalid+Pattern/invalidPattern/{testToken1}"; "level contains plus")]
    #[test_case("invalidPattern/invalid#Pattern/invalidPattern/{testToken1}"; "level contains hash")]
    #[test_case("invalidPattern/invalid}Pattern/invalidPattern/{testToken1}"; "level contains close brace")]
    #[test_case("invalidPattern/invalid\u{0000}Pattern/invalidPattern/{testToken1}"; "level contains non-ASCII")]
    #[test_case("invalidPattern/{testToken1}/invalid\u{0000}Pattern/invalidPattern/{testToken2}"; "level contains non-ASCII varied token")]
    #[test_case("{testToken1}{testToken1}"; "adjacent tokens")]
    #[test_case("{testToken1} {testToken1}"; "adjacent spaced tokens")]
    #[test_case("{testToken1}{}"; "one adjacent empty")]
    #[test_case("{}{}"; "two adjacent empty")]
    #[test_case("test/{testToken1}}"; "curly brace end")]
    fn test_topic_pattern_new_pattern_invalid(pattern: &str) {
        let err = TopicPattern::new(pattern, None, None, &create_topic_tokens()).unwrap_err();
        assert!(matches!(err.kind(), TopicPatternErrorKind::Pattern(p) if p == pattern));
    }

    #[test_case("validNamespace"; "single level")]
    #[test_case("validNamespace/validNamespace"; "multiple levels")]
    fn test_topic_pattern_new_pattern_valid_topic_namespace(topic_namespace: &str) {
        let pattern = "test/{testToken1}";

        TopicPattern::new(pattern, None, Some(topic_namespace), &create_topic_tokens()).unwrap();
    }

    #[test_case(""; "empty")]
    #[test_case(" "; "whitespace")]
    #[test_case("invalid Namespace"; "contains space")]
    #[test_case("invalid+Namespace"; "contains plus")]
    #[test_case("invalid#Namespace"; "contains hash")]
    #[test_case("invalid{Namespace"; "contains open brace")]
    #[test_case("invalid}Namespace"; "contains close brace")]
    #[test_case("invalid\u{0000}Namespace"; "contains non-ASCII")]
    #[test_case("/invalidNamespace"; "namespace starts with slash")]
    #[test_case("invalidNamespace/"; "namespace ends with slash")]
    fn test_topic_pattern_new_pattern_invalid_topic_namespace(topic_namespace: &str) {
        let pattern = "test/{testToken1}";

        let err = TopicPattern::new(pattern, None, Some(topic_namespace), &create_topic_tokens())
            .unwrap_err();
        assert!(matches!(err.kind(), TopicPatternErrorKind::Namespace(n) if n == topic_namespace));
    }

    #[test_case("test/{{testToken1}"; "open brace")]
    #[test_case("test/{test+Token}"; "plus")]
    #[test_case("test/{test#Token}"; "hash")]
    #[test_case("test/{test/Token}"; "slash")]
    #[test_case("test/{test\u{0000}Token}"; "non-ASCII")]
    fn test_topic_pattern_new_pattern_invalid_token(pattern: &str) {
        let err = TopicPattern::new(pattern, None, None, &HashMap::new()).unwrap_err();
        assert!(matches!(err.kind(), TopicPatternErrorKind::Pattern(p) if p == pattern));
    }

    #[test_case("invalid replacement"; "replacement contains space")]
    #[test_case("invalid+replacement"; "replacement contains plus")]
    #[test_case("invalid#replacement"; "replacement contains hash")]
    #[test_case("invalid{replacement"; "replacement contains open brace")]
    #[test_case("invalid}replacement"; "replacement contains close brace")]
    #[test_case("invalid//replacement"; "replacement contains double slash")]
    #[test_case("invalid\u{0000}replacement"; "replacement contains non ASCII character")]
    #[test_case("/invalidReplacement"; "replacement starts with slash")]
    #[test_case("invalidReplacement/"; "replacement ends with slash")]
    #[test_case(""; "replacement is empty")]
    #[test_case(" "; "replacement contains only space")]
    fn test_topic_pattern_new_pattern_invalid_replacement(replacement: &str) {
        let pattern = "test/{testToken}/test";

        let err = TopicPattern::new(
            pattern,
            None,
            None,
            &HashMap::from([("testToken".to_string(), replacement.to_string())]),
        )
        .unwrap_err();
        assert!(
            matches!(err.kind(), TopicPatternErrorKind::TokenReplacement(t, r) if t == "testToken" && r == replacement)
        );
    }

    #[test_case("test", "test"; "no token")]
    #[test_case("{wildToken}", "+"; "single token")]
    #[test_case("{wildToken}/test", "+/test"; "token at start")]
    #[test_case("test/{wildToken}", "test/+"; "token at end")]
    #[test_case("test/{wildToken}/test", "test/+/test"; "token in middle")]
    #[test_case("{wildToken}/{wildToken}", "+/+"; "multiple tokens")]
    #[test_case("{wildToken}/test/{wildToken}", "+/test/+"; "token at start and end")]
    #[test_case("{wildToken1}/{wildToken2}", "+/+"; "multiple wildcards")]
    fn test_topic_pattern_as_subscribe_topic(pattern: &str, result: &str) {
        let pattern = TopicPattern::new(pattern, None, None, &HashMap::new()).unwrap();

        assert_eq!(pattern.as_subscribe_topic().unwrap().as_str(), result);
    }

    #[test_case("invalid ShareName"; "contains space")]
    #[test_case("invalid+ShareName"; "contains plus")]
    #[test_case("invalid#ShareName"; "contains hash")]
    #[test_case("invalid{ShareName"; "contains open brace")]
    #[test_case("invalid}ShareName"; "contains close brace")]
    #[test_case("invalid/ShareName"; "contains slash")]
    #[test_case("invalid\u{0000}ShareName"; "contains non-ASCII")]
    fn test_topic_pattern_new_pattern_invalid_share_name(share_name: &str) {
        let err = TopicPattern::new("test", Some(share_name.to_string()), None, &HashMap::new())
            .unwrap_err();
        assert!(matches!(err.kind(), TopicPatternErrorKind::ShareName(s) if s == share_name));
    }

    #[test]
    fn test_topic_pattern_methods_with_share_name() {
        let share_name = "validShareName";
        let pattern = "test/{testToken1}";
        let result = "$share/validShareName/test/testRepl1";

        let pattern = TopicPattern::new(
            pattern,
            Some(share_name.to_string()),
            None,
            &create_topic_tokens(),
        )
        .unwrap();

        assert_eq!(pattern.as_subscribe_topic().unwrap().as_str(), result);
        assert_eq!(
            pattern.as_publish_topic(&HashMap::new()).unwrap().as_str(),
            "test/testRepl1"
        );
    }

    #[test_case("test", &HashMap::new(), "test"; "no token")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]), "testRepl"; "single token")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "testReplLonger".to_string())]), "testReplLonger"; "single token long replacement")]
    #[test_case("{testToken}/test", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]), "testRepl/test"; "token at start")]
    #[test_case("test/{testToken}", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]), "test/testRepl"; "token at end")]
    #[test_case("test/{testToken}/test", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]), "test/testRepl/test"; "token in middle")]
    #[test_case("{testToken1}/{testToken2}", &HashMap::from([("testToken1".to_string(), "testRepl1".to_string()), ("testToken2".to_string(), "testRepl2".to_string())]), "testRepl1/testRepl2"; "multiple tokens")]
    fn test_topic_pattern_as_publish_topic_valid(
        pattern: &str,
        tokens: &HashMap<String, String>,
        result: &str,
    ) {
        let pattern = TopicPattern::new(pattern, None, None, tokens).unwrap();

        assert_eq!(pattern.as_publish_topic(tokens).unwrap().as_str(), result);
    }

    #[test_case("{testToken}", &HashMap::new(), "testToken", ""; "no replacement")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid Replacement".to_string())]), "testToken", "invalid Replacement"; "replacement contains space")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid+Replacement".to_string())]), "testToken", "invalid+Replacement"; "replacement contains plus")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid#Replacement".to_string())]), "testToken", "invalid#Replacement"; "replacement contains hash")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid{Replacement".to_string())]), "testToken", "invalid{Replacement"; "replacement contains open brace")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid}Replacement".to_string())]), "testToken", "invalid}Replacement"; "replacement contains close brace")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid//Replacement".to_string())]), "testToken", "invalid//Replacement"; "replacement contains double slash")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalid\u{0000}Replacement".to_string())]), "testToken", "invalid\u{0000}Replacement"; "replacement contains non ASCII character")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "/invalidReplacement".to_string())]), "testToken", "/invalidReplacement"; "replacement starts with slash")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), "invalidReplacement/".to_string())]), "testToken", "invalidReplacement/"; "replacement ends with slash")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), String::new())]), "testToken", ""; "replacement is empty")]
    #[test_case("{testToken}", &HashMap::from([("testToken".to_string(), " ".to_string())]), "testToken", " "; "replacement contains only space")]
    fn test_topic_pattern_as_publish_topic_invalid(
        pattern: &str,
        tokens: &HashMap<String, String>,
        expected_token: &str,
        expected_replacement: &str,
    ) {
        let pattern = TopicPattern::new(pattern, None, None, &HashMap::new()).unwrap();

        let err = pattern.as_publish_topic(tokens).unwrap_err();
        assert!(
            matches!(err.kind(), TopicPatternErrorKind::TokenReplacement(t, r) if t == expected_token && r == expected_replacement)
        );
    }

    #[test_case("test", "test", &HashMap::new(); "no token")]
    #[test_case("{testToken}", "testRepl", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]); "single token")]
    #[test_case("{testToken}/test", "testRepl/test", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]); "token at start")]
    #[test_case("test/{testToken}", "test/testRepl", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]); "token at end")]
    #[test_case("test/{testToken}/test", "test/testRepl/test", &HashMap::from([("testToken".to_string(), "testRepl".to_string())]); "token in middle")]
    #[test_case("{testToken1}/{testToken2}", "testRepl1/testRepl2", &HashMap::from([("testToken1".to_string(), "testRepl1".to_string()),("testToken2".to_string(), "testRepl2".to_string())]); "multiple tokens")]
    fn test_topic_pattern_parse_tokens(
        pattern: &str,
        topic: &str,
        result: &HashMap<String, String>,
    ) {
        let pattern = TopicPattern::new(pattern, None, None, &HashMap::new()).unwrap();

        assert_eq!(pattern.parse_tokens(topic), *result);
    }

    #[test]
    fn test_topic_pattern_parse_tokens_with_topic_namespace() {
        let topic = "testNamespace/testTopic/testTokenValue";
        let pattern = "testTopic/{testToken}";
        let namespace = "testNamespace";
        let token_replacements =
            HashMap::from([("testToken".to_string(), "testReplacement".to_string())]);

        let topic_pattern =
            TopicPattern::new(pattern, None, Some(namespace), &token_replacements).unwrap();

        let parsed_tokens = topic_pattern.parse_tokens(topic);

        assert_eq!(parsed_tokens.get("testToken").unwrap(), "testTokenValue");
    }
}