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
//! # jsonp
//!
//! Fast, zero copy Json pointers.
//!
//! This library leverages [serde](https://serde.rs/) and [serde_json](https://docs.serde.rs/serde_json/index.html)
//! to provide fast, easy to use, on demand deserialization of Json.
//!
//! Ever wanted to retrieve some deeply nested data without all the hassle of defining the required
//! Rust structures, or allocating multiple times into a `serde_json::Value`? No problem:
//!
//! ```json
//! {
//!   "some": {
//!     "deeply": [
//!       {
//!         "nested": {
//!           "truth": "the cake is a lie"
//!         }
//!       }
//!     ]
//!   }
//! }
//! ```
//!
//! ```
//! # use jsonp::Pointer;
//! # type Result = std::result::Result<(), Box<dyn std::error::Error>>;
//! # const NESTED: &str = r#"{"some": {"deeply": [{"nested": {"truth": "the cake is a lie"}}]}}"#;
//! fn deeply_nested(json: &str) -> Result {
//!     let p = Pointer::default();
//!
//!     let truth: &str = p.dotted(json, ".some.deeply.0.nested.truth")?;
//!
//!     assert_eq!(truth, "the cake is a lie");
//!
//!     Ok(())
//! }
//! # deeply_nested(NESTED).unwrap();
//! ```
//! Leveraging serde's [zero copy](https://serde.rs/lifetimes.html#understanding-deserializer-lifetimes) deserialization
//! we _borrow_ the deeply nested `truth` right out of the backing Json data.
//!
//! ## Pointer
//!
//! The core structure of this library is the [`jsonp::Pointer`][pointer]. It provides several
//! methods of dereferencing into Json:
//!
//! - [`Pointer::with_segments`][with_segments]
//! - [`Pointer::with_pattern`][with_pattern]
//! - [`Pointer::dotted`][dotted]
//!
//! While `Pointer::with_segments` provides the most control over exactly how each
//! [`Segment`][segment] is generated, the other two -- `Pointer::with_pattern` and
//! `Pointer::dotted` -- make some assumptions about how the pointer string is handled. These are:
//!
//! 1. Passing in an empty pointer (or pattern) string will default to deserializing the entire
//!    backing Json.
//! 2. If the pointer and pattern are equal, same as above.
//! 3. A pointer starting with a pattern is equivalent to one that doesn't. For example,
//!    `dotted(".foo")` and `dotted("foo")` both result in `foo` being dereferenced.
//!
//! ## Mode
//!
//! [`jsonp::Mode`][mode] controls how `jsonp` interprets pointer segments. It has two settings,
//! Late -- the default -- and Early.
//!
//! ### Late
//!
//! Lazily attempts to coerce pointer segments to map keys or array indexes during deserialization.
//! This provides maximum flexibility and allows one to deserialize _numeric_ map keys, i.e "42":
//! "...", but also has the potential to improperly deserialize an array where a map was expected,
//! or vice versa.
//!
//! ### Early
//!
//! Decides on initialization whether a given pointer segment is a numeric index or string key.
//! Guarantees that backing Json object agrees with its expected layout, erroring out otherwise.
//!
//! ## Helpers
//!
//! This library also provides a few convenience wrapper structs around
//! [`jsonp::Pointer`][pointer]. These provide pleasant interfaces if you're planning on using a
//! `Pointer` to repeatedly dereference from a single backing Json structure, and reduce some of
//! the generics and lifetime noise in function signatures.
//!
//! - [`jsonp::BackingStr`][b_str]
//! - [`jsonp::BackingJson`][b_json]
//! - [`jsonp::BackingBytes`][b_bytes]
//!
//! [pointer]: Pointer
//! [mode]: Mode
//! [segment]: Segment
//! [b_str]: BackingStr
//! [b_json]: BackingJson
//! [b_bytes]: BackingBytes
//! [with_segments]: Pointer::with_segments
//! [with_pattern]: Pointer::with_pattern
//! [dotted]: Pointer::dotted

use {
    json::value::RawValue as RawJson,
    serde::{de::Deserializer as _, Deserialize},
    serde_json as json,
    std::iter::IntoIterator,
    visitor::{ArrayVisitor, LazyVisitor, MapVisitor},
};

mod to_raw;
mod visitor;

pub use to_raw::ToRaw;

/// The heart of this library, this structure contains all of the base
/// functionality to dereference into borrowed Json structures.
///
/// While this struct does not implement [`Copy`][std::marker::Copy], it is extremely cheap to
/// clone and can be done liberally.
#[derive(Debug, Default, Clone)]
pub struct Pointer {
    mode: Mode,
}

impl Pointer {
    /// Instantiate a new pointer with the given mode
    pub fn new(mode: Mode) -> Self {
        Self { mode }
    }

    /// Convenience function for using the common dot (`.`) delimited format for dereferencing
    /// nested Json structures.
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::Pointer;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#;
    /// let one: &str = Pointer::default().dotted(json, "outer.array.1").unwrap();
    ///
    /// assert!(one == "one");
    /// ```
    pub fn dotted<'de, 'j: 'de, J, T>(&self, backing: &'j J, pointer: &str) -> Result<T, J::Error>
    where
        J: ToRaw<'j> + ?Sized,
        T: Deserialize<'de>,
    {
        self.with_pattern(backing, pointer, ".")
    }

    /// Dereference using the given pointer and pattern. The pointer is split into
    /// segments using the pattern. Starting the pointer with or without the pattern
    /// is equivalent, i.e: `with_pattern(..., ".foo", ".")` is equal to
    /// `with_pattern(..., "foo", ".")`.
    ///
    /// Attempting to pass in either an empty pointer or pattern will cause this function
    /// to short circuit any dereferencing and attempt deserialization from `backing`
    /// directly.
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::Pointer;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#;
    /// let is_true: bool = Pointer::default().with_pattern(json, "outer array 2", " ").unwrap();
    ///
    /// assert!(is_true);
    /// ```
    pub fn with_pattern<'de, 'j: 'de, J, T>(
        &self,
        backing: &'j J,
        pointer: &str,
        pattern: &str,
    ) -> Result<T, J::Error>
    where
        J: ToRaw<'j> + ?Sized,
        T: Deserialize<'de>,
    {
        let json = backing.try_into_raw()?;

        // If the user attempts to pass any of the annoying edge cases around
        // pattern splitting into us, we'll simply short circuit any dereferencing
        // and attempt deserialization of the the entire backing object
        if pointer.is_empty() || pattern.is_empty() || pointer == pattern {
            return self.with_segments(json, None).map_err(Into::into);
        }

        // Allow users to not start a pointer with the given pattern
        // if they choose. This is special cased to allow for situations
        // where it would be annoying to require starting the pointer with a
        // pattern instance, e.g: pat = ", " ptr = "foo, bar, baz".
        if pointer.starts_with(pattern) {
            let pointers = pointer.split(pattern).skip(1).map(|s| self.segment(s));

            self.with_segments(json, pointers).map_err(Into::into)
        } else {
            let pointers = pointer.split(pattern).map(|s| self.segment(s));

            self.with_segments(json, pointers).map_err(Into::into)
        }
    }

    /// Dereference using the given iterable set of segments.
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::{Pointer, Segment};
    ///
    /// let json = r#"{"outer": {"array": [0, 1, 2, 3]}}"#;
    /// let segments = &["outer", "array"];
    /// let array: Vec<i8> = Pointer::default()
    ///     .with_segments(json, segments.into_iter().copied().map(Segment::lazy))
    ///     .unwrap();
    ///
    /// assert_eq!(&array, &[0, 1, 2, 3]);
    /// ```
    pub fn with_segments<'de, 'j: 'de, 'p, J, I, T>(
        &self,
        backing: &'j J,
        segments: I,
    ) -> Result<T, J::Error>
    where
        J: ToRaw<'j> + ?Sized,
        I: IntoIterator<Item = Segment<'p>>,
        T: Deserialize<'de>,
    {
        let json = backing.try_into_raw()?;

        inner(json, segments.into_iter()).map_err(Into::into)
    }

    fn segment<'p>(&self, s: &'p str) -> Segment<'p> {
        match self.mode {
            Mode::Late => Segment::lazy(s),
            Mode::Early => Segment::early(s),
        }
    }
}

/// Convenience wrapper around the library core functions for string slices,
/// removing some of the generic noise from function signatures.
#[derive(Debug, Clone)]
pub struct BackingStr<'a> {
    p: Pointer,
    borrow: &'a str,
}

impl<'a> BackingStr<'a> {
    /// Instantiate a wrapper around the given string slice.
    pub fn new(borrow: &'a str) -> Self {
        Self::with(borrow, Default::default())
    }

    /// Instantiate a wrapper around the given string slice and pointer.
    pub fn with(borrow: &'a str, p: Pointer) -> Self {
        Self { p, borrow }
    }

    /// See the documentation of [`Pointer::dotted`][Pointer::dotted].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::BackingStr;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#;
    /// let one: &str = BackingStr::new(json).dotted("outer.array.1").unwrap();
    ///
    /// assert!(one == "one");
    /// ```
    pub fn dotted<'de, T>(&self, pointer: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.dotted(self.borrow, pointer)
    }

    /// See the documentation of [`Pointer::with_pattern`][Pointer::with_pattern].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::BackingStr;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#;
    /// let is_true: bool = BackingStr::new(json).pattern("outer array 2", " ").unwrap();
    ///
    /// assert!(is_true);
    /// ```
    pub fn pattern<'de, T>(&self, pointer: &str, pattern: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_pattern(self.borrow, pointer, pattern)
    }

    /// See the documentation for [`Pointer::with_segments`][Pointer::with_segments].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::{BackingStr, Segment};
    ///
    /// let json = r#"{"outer": {"array": [0, 1, 2, 3]}}"#;
    /// let segments = &["outer", "array"];
    /// let array: Vec<i8> = BackingStr::new(json)
    ///     .pointer(segments.into_iter().copied().map(Segment::lazy))
    ///     .unwrap();
    ///
    /// assert_eq!(&array, &[0, 1, 2, 3]);
    /// ```
    pub fn pointer<'de, 'p, I, T>(&self, pointers: I) -> Result<T, json::Error>
    where
        I: IntoIterator<Item = Segment<'p>>,
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_segments(self.borrow, pointers)
    }
}

impl<'a> From<&'a str> for BackingStr<'a> {
    fn from(backing: &'a str) -> Self {
        Self::new(backing)
    }
}

/// Convenience wrapper around the library core functions for raw Json,
/// removing some of the generic noise from function signatures.
#[derive(Debug, Clone)]
pub struct BackingJson<'a> {
    p: Pointer,
    borrow: &'a RawJson,
}

impl<'a> BackingJson<'a> {
    /// Instantiate a wrapper around the given borrowed raw Json.
    pub fn new(borrow: &'a RawJson) -> Self {
        Self::with(borrow, Default::default())
    }

    /// Instantiate a wrapper around the given borrowed raw Json and pointer.
    pub fn with(borrow: &'a RawJson, p: Pointer) -> Self {
        Self { p, borrow }
    }

    /// See the documentation of [`Pointer::dotted`][Pointer::dotted].
    ///
    /// # Example
    ///
    /// ```
    /// use {jsonp::{BackingJson, Segment}, serde_json::from_str};
    ///
    /// let json = from_str(r#"{"outer": {"array": [0, "one", true]}}"#).unwrap();
    /// let one: &str = BackingJson::new(json).dotted("outer.array.1").unwrap();
    ///
    /// assert!(one == "one");
    /// ```
    pub fn dotted<'de, T>(&self, pointer: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.dotted(self.borrow, pointer)
    }

    /// See the documentation of [`Pointer::with_pattern`][Pointer::with_pattern].
    ///
    /// # Example
    ///
    /// ```
    /// use {jsonp::{BackingJson, Segment}, serde_json::from_str};
    ///
    /// let json = from_str(r#"{"outer": {"array": [0, "one", true]}}"#).unwrap();
    /// let is_true: bool = BackingJson::new(json).pattern("outer array 2", " ").unwrap();
    ///
    /// assert!(is_true);
    /// ```
    pub fn pattern<'de, T>(&self, pointer: &str, pattern: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_pattern(self.borrow, pointer, pattern)
    }

    /// See the documentation for [`Pointer::with_segments`][Pointer::with_segments].
    ///
    /// # Example
    ///
    /// ```
    /// use {jsonp::{BackingJson, Segment}, serde_json::from_str};
    ///
    /// let json = from_str(r#"{"outer": {"array": [0, 1, 2, 3]}}"#).unwrap();
    /// let segments = &["outer", "array"];
    /// let array: Vec<i8> = BackingJson::new(json)
    ///     .pointer(segments.into_iter().copied().map(Segment::lazy))
    ///     .unwrap();
    ///
    /// assert_eq!(&array, &[0, 1, 2, 3]);
    /// ```
    pub fn pointer<'de, 'p, I, T>(&self, pointers: I) -> Result<T, json::Error>
    where
        I: IntoIterator<Item = Segment<'p>>,
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_segments(self.borrow, pointers)
    }
}

impl<'a> From<&'a RawJson> for BackingJson<'a> {
    fn from(backing: &'a RawJson) -> Self {
        Self::new(backing)
    }
}

/// Convenience wrapper around the library core functions for byte slices,
/// removing some of the generic noise from function signatures.
#[derive(Debug, Clone)]
pub struct BackingBytes<'a> {
    p: Pointer,
    borrow: &'a [u8],
}

impl<'a> BackingBytes<'a> {
    /// Instantiate a wrapper around the given byte slice.
    pub fn new(borrow: &'a [u8]) -> Self {
        Self::with(borrow, Default::default())
    }

    /// Instantiate a wrapper around the given byte slice and pointer.
    pub fn with(borrow: &'a [u8], pointer: Pointer) -> Self {
        Self { p: pointer, borrow }
    }

    /// See the documentation of [`Pointer::dotted`][Pointer::dotted].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::BackingBytes;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#.as_bytes();
    /// let one: &str = BackingBytes::new(json).dotted("outer.array.1").unwrap();
    ///
    /// assert!(one == "one");
    /// ```
    pub fn dotted<'de, T>(&self, pointer: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.dotted(self.borrow, pointer)
    }

    /// See the documentation of [`Pointer::with_pattern`][Pointer::with_pattern].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::BackingBytes;
    ///
    /// let json = r#"{"outer": {"array": [0, "one", true]}}"#.as_bytes();
    /// let is_true: bool = BackingBytes::new(json).pattern("outer array 2", " ").unwrap();
    ///
    /// assert!(is_true);
    /// ```
    pub fn pattern<'de, T>(&self, pointer: &str, pattern: &str) -> Result<T, json::Error>
    where
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_pattern(self.borrow, pointer, pattern)
    }

    /// See the documentation for [`Pointer::with_segments`][Pointer::with_segments].
    ///
    /// # Example
    ///
    /// ```
    /// use jsonp::{BackingBytes, Segment};
    ///
    /// let json = r#"{"outer": {"array": [0, 1, 2, 3]}}"#.as_bytes();
    /// let segments = &["outer", "array"];
    /// let array: Vec<i8> = BackingBytes::new(json)
    ///     .pointer(segments.into_iter().copied().map(Segment::lazy))
    ///     .unwrap();
    ///
    /// assert_eq!(&array, &[0, 1, 2, 3]);
    /// ```
    pub fn pointer<'de, 'p, I, T>(&self, pointers: I) -> Result<T, json::Error>
    where
        I: IntoIterator<Item = Segment<'p>>,
        T: Deserialize<'de>,
        'a: 'de,
    {
        self.p.with_segments(self.borrow, pointers)
    }
}

impl<'a> From<&'a [u8]> for BackingBytes<'a> {
    fn from(backing: &'a [u8]) -> Self {
        Self::new(backing)
    }
}

/// Set the mode for interpreting pointer segments.
///
/// The default, Late lazily types each segment waiting until
/// deserialization to determine if the segment is a map key or
/// array index. Early parses each segment as soon as it's handled.
/// For more information, see `Segment`.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Mode {
    Late,
    Early,
}

impl Default for Mode {
    fn default() -> Self {
        Self::Late
    }
}

/// Represents a segment of a pointer
#[derive(Debug, Clone, Copy)]
pub struct Segment<'p> {
    inner: PKind<'p>,
}

/// Typed representation of pointer segments
#[derive(Debug, Clone, Copy)]
enum PKind<'p> {
    /// Delayed segment typing
    Lazy(&'p str),
    /// A map's key
    Key(&'p str),
    /// An index into an array
    Index(u64),
}

impl<'p> Segment<'p> {
    /// Lazily type the pointer, delaying the declaration
    /// until called by the Json deserializer.
    ///
    /// Note this allows for processing of all valid Json
    /// map keys; however, using this type _can_ also deserialize
    /// Json arrays if the key is is parsable as a number.
    ///
    /// If you need strongly typed pointers see the `key` and
    /// `index` methods.
    pub fn lazy(s: &'p str) -> Self {
        Self {
            inner: PKind::Lazy(s),
        }
    }

    /// Parse a pointer from a string slice, by attempting to convert it
    /// to a number, and if successful setting it as an array index, otherwise
    /// using it as a map key.
    pub fn early(s: &'p str) -> Self {
        use std::str::FromStr;

        if s.is_empty() {
            return Self::key("");
        }

        let inner = match u64::from_str(s).ok() {
            Some(n) => PKind::Index(n),
            None => PKind::Key(s),
        };

        Self { inner }
    }

    /// Generate a new map key segment
    pub fn key(s: &'p str) -> Self {
        Self {
            inner: PKind::Key(s),
        }
    }

    /// Generate a new array index segment
    pub fn index(idx: u64) -> Self {
        Self {
            inner: PKind::Index(idx),
        }
    }
}

// Crate workhorse, this function abuses Rust's reference guarantees
// to iteratively drill down a nested Json structure
fn inner<'de, 'a: 'de, 'p, I, T>(j: &'a RawJson, p: I) -> Result<T, json::Error>
where
    I: Iterator<Item = Segment<'p>>,
    T: Deserialize<'de>,
{
    use json::Deserializer;
    let mut target = j;

    for ptr in p {
        let mut de = Deserializer::from_str(target.get());

        match ptr.inner {
            PKind::Lazy(l) => {
                let value = de.deserialize_any(LazyVisitor::new(l))?;

                target = value;
            }
            PKind::Key(k) => {
                let value = de.deserialize_map(MapVisitor::new(k))?;

                target = value;
            }
            PKind::Index(i) => {
                let value = de.deserialize_seq(ArrayVisitor::new(i))?;

                target = value;
            }
        }
    }

    serde_json::from_str(target.get()).map_err(Into::into)
}

#[cfg(test)]
#[allow(unused_imports)]
mod tests {
    use super::*;
    use pretty_assertions::{assert_eq, assert_ne};

    type Result = std::result::Result<(), Box<dyn std::error::Error>>;

    const NESTED: &str =
        r#"{"foo": {"bar": [0, "1", {"baz": "hello world!" }, "blitz", "fooey" ] } }"#;

    #[test]
    fn with_segments_str() -> Result {
        let pointer = &[
            Segment::key("foo"),
            Segment::key("bar"),
            Segment::index(2),
            Segment::key("baz"),
        ];

        let output: &str =
            Pointer::default().with_segments(NESTED, pointer.into_iter().copied())?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn with_segments_json() -> Result {
        let pointer = &[
            Segment::key("foo"),
            Segment::key("bar"),
            Segment::index(2),
            Segment::key("baz"),
        ];

        let json: &RawJson = serde_json::from_str(NESTED)?;

        let output: &str = Pointer::default().with_segments(json, pointer.into_iter().copied())?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn with_pattern_str() -> Result {
        let output: &str = Pointer::default().with_pattern(NESTED, "foo, bar, 2, baz", ", ")?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn with_pattern_json() -> Result {
        let json: &RawJson = serde_json::from_str(NESTED)?;

        let output: &str = Pointer::default().with_pattern(json, "foo, bar, 2, baz", ", ")?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn with_pattern_empty() -> Result {
        let object: &RawJson = json::from_str(NESTED)?;
        let output: &RawJson = Pointer::default().with_pattern(NESTED, "", ", ")?;

        assert_eq!(output.to_string(), object.to_string());

        Ok(())
    }

    #[test]
    fn dotted_str() -> Result {
        let output: &str = Pointer::default().dotted(NESTED, "foo.bar.2.baz")?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn dotted_json() -> Result {
        let json: &RawJson = serde_json::from_str(NESTED)?;

        let output: &str = Pointer::default().dotted(json, "foo.bar.2.baz")?;

        assert_eq!(output, "hello world!");

        Ok(())
    }

    #[test]
    fn dotted_empty() -> Result {
        let object: &RawJson = json::from_str(NESTED)?;
        let output: &RawJson = Pointer::default().dotted(NESTED, "")?;

        assert_eq!(output.to_string(), object.to_string());

        Ok(())
    }
}