yo-kv 0.3.14

The Redis data structures, as plain Rust types with no protocol attached
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
//! `SORT` and `SORT_RO`, the one keyspace command that reads keys nobody named.
//!
//! Everything else in [`crate::keyspace`] asks a question about the key in front
//! of it. `SORT mylist BY weight_* GET data_*` reads `mylist`, then reads a
//! different key for every element in it to decide the order, then reads another
//! one for every element to decide what to answer with. That is why it is the
//! command Redis marks as not deterministic, why `SORT_RO` exists at all, and
//! why it lives in a file of its own instead of as another arm of the keyspace
//! match.
//!
//! # What it sorts
//!
//! A list, a set or a sorted set. Anything else is `WRONGTYPE` and a missing key
//! is an empty answer, not an error.
//!
//! # The four ways it can order things
//!
//! Numerically on the elements, which is the default and which fails the whole
//! command if any element is not a number. Numerically on a `BY` lookup, where
//! an element whose lookup missed scores zero. Alphabetically on the elements.
//! Alphabetically on a `BY` lookup, where a miss sorts before every hit.
//!
//! Ties never fall through to whatever order the elements arrived in. Two equal
//! scores are broken by comparing the elements themselves, which is what makes
//! the answer the same on two servers holding the same set, and a set has no
//! order of its own to fall back on anyway.
//!
//! # Not sorting
//!
//! A `BY` pattern with no `*` in it cannot name a different key per element, so
//! Redis reads it as an instruction not to sort rather than as a pattern that
//! resolves to one key for everything. `BY nosort` is the idiom and there is
//! nothing special about the word.
//!
//! There is one hole in that, and it is the reason the `store` flag is in
//! [`Sort`] rather than being left to the caller. A set has no order, so
//! `SORT myset BY nosort` may answer its members in any order at all, which is
//! fine for a client that asked for exactly that and is not fine for a `STORE`,
//! because then two servers that agree about the set disagree about the list
//! they wrote. So a `BY nosort` over a set with a `STORE` sorts alphabetically
//! after all. Redis does the same thing for the same reason, and also does it
//! for a call from a script, which we do not, because a script here reaches the
//! same method any other caller does.
//!
//! # Patterns
//!
//! A pattern is not a glob. The first `*` in it is replaced with the element and
//! the result is a key name, so `weight_*` on the element `a` reads `weight_a`.
//! A pattern with no `*` looks up nothing and misses every time. `#` on its own
//! means the element itself, which is only useful in a `GET`.
//!
//! A pattern may reach into a hash instead of at a string, with `->` after the
//! `*`: `h_*->field` reads the field `field` of the hash `h_<element>`. The
//! split is on the first `->` that comes after the `*` and there has to be at
//! least one byte after it, so a pattern ending in `->` is a key name with a
//! `->` on the end and not a hash lookup with an empty field.
//!
//! A lookup that lands on a key of the wrong type is a miss and not an error.
//! `BY h_*` over keys holding lists gives every element a weight of nothing,
//! which sorts them all equal and lets the tie break do the work.
//!
//! # Divergence
//!
//! Redis compares strings with `strcoll` when there is no `STORE`, and with a
//! byte compare when there is, because a stored result has to be the same on
//! every replica and `strcoll` answers to `LC_COLLATE`. Redis calls
//! `setlocale(LC_COLLATE, "")` at startup, so the order `SORT ... ALPHA` puts
//! two strings in depends on the environment the server was started with, and
//! the same server started twice can answer differently.
//!
//! This compares bytes always. That is the `STORE` behaviour applied everywhere,
//! it is what a client gets from Redis under the C locale, and it is the only
//! choice that makes the answer a property of the data. It also means a member
//! with a zero byte in it sorts on all of its bytes, where `strcoll` stops at
//! the zero. Registered in `divergences.toml`.

use crate::keyspace::{Keyspace, wrong_type};
use crate::value::Kind;
use crate::zsets::Window;
use std::cmp::Ordering;
use yo_common::{Code, Error, Result, num};

/// What Redis says when a numeric sort meets an element that is not a number.
const NOT_A_DOUBLE: &str = "One or more scores can't be converted into double";

/// What `SORT` was asked to do, everything except the key and the destination.
///
/// Borrowed from the caller's arguments rather than owned, because on the wire
/// path every field of this is a slice of the command that is already in memory
/// and copying them would be copying the command.
#[derive(Debug, Clone, Copy, Default)]
pub struct Sort<'a> {
    /// The `BY` pattern, if there was one.
    pub by: Option<&'a [u8]>,
    /// The `GET` patterns, in the order they were given, `#` included.
    pub get: &'a [&'a [u8]],
    /// `LIMIT offset count`, if there was one.
    ///
    /// Both halves are signed because both halves are on the wire as integers
    /// and Redis takes them without complaint. A negative offset is clamped to
    /// the front and a negative count means everything from the offset on.
    pub limit: Option<(i64, i64)>,
    /// `DESC`, which reverses whatever order the rest of this produced.
    pub desc: bool,
    /// `ALPHA`, which compares bytes where the default compares numbers.
    pub alpha: bool,
    /// Whether the answer is going into a key rather than back to the caller.
    ///
    /// Set by [`Keyspace::sort_store`] and not by the caller. It is in here
    /// rather than a separate argument because it changes the ordering and not
    /// just what happens to the result. See the module doc.
    pub store: bool,
}

/// One element on its way through the sort, with whatever it is ordered by.
///
/// The weight is one of the two, never both, and which one is decided once for
/// the whole command rather than per element.
struct Weighted {
    /// The element itself, which is also the tie break and may be the answer.
    elem: Vec<u8>,
    /// The number to sort on, under a numeric sort.
    score: f64,
    /// The bytes to sort on, under an alphabetic sort with a `BY`. `None` is a
    /// lookup that missed and sorts before every hit.
    text: Option<Vec<u8>>,
}

impl Keyspace {
    /// `SORT key [BY pattern] [LIMIT offset count] [GET pattern ...] [ASC|DESC]
    /// [ALPHA]`, and the whole of `SORT_RO`.
    ///
    /// One row per element that survived the `LIMIT`, or one row per `GET`
    /// pattern per element if there were any. A row is `None` where a `GET`
    /// pattern missed, which is a nil on the wire, and `GET #` never misses.
    ///
    /// This allocates the elements, which nothing else on the read path does. It
    /// has to: the ordering is decided by reading other keys, and reading
    /// another key needs the database that the elements are borrowed from. Redis
    /// has the same problem and solves it by holding refcounted pointers, which
    /// is the same copy with the copy moved to whoever wrote the value.
    pub fn sort(&mut self, key: &[u8], opts: &Sort<'_>) -> Result<Vec<Option<Vec<u8>>>> {
        let mut opts = *opts;
        opts.store = false;
        self.sorted(key, &opts)
    }

    /// `SORT key ... STORE destination`, which answers the length of the list it
    /// wrote.
    ///
    /// An empty result deletes the destination rather than leaving an empty list
    /// behind, because a list is never empty and a key that holds one that is
    /// would be a key `TYPE` answers `list` for and `LLEN` answers zero for.
    ///
    /// A `GET` pattern that missed stores an empty string, where the same miss
    /// sent to a client is a nil. There is no nil in a list, so this is the only
    /// thing it could be, and it is what Redis stores.
    pub fn sort_store(&mut self, key: &[u8], dest: &[u8], opts: &Sort<'_>) -> Result<usize> {
        let mut opts = *opts;
        opts.store = true;
        let rows = self.sorted(key, &opts)?;
        if rows.is_empty() {
            self.del(dest);
            return Ok(0);
        }
        // Written into a fresh key rather than appended to whatever was there,
        // and the delete comes first so that `SORT k STORE k` reads k, then
        // throws it away, then writes the answer. Redis is the same, and it is
        // the reason the elements had to be copied out before any of this.
        self.del(dest);
        let owned: Vec<Vec<u8>> = rows.into_iter().map(Option::unwrap_or_default).collect();
        self.push(
            dest,
            crate::lists::End::Right,
            owned.iter().map(Vec::as_slice),
        )
    }

    /// The body both of them share.
    fn sorted(&mut self, key: &[u8], opts: &Sort<'_>) -> Result<Vec<Option<Vec<u8>>>> {
        let kind = self.kind_of(key);
        let elems = self.elements(key, kind)?;

        // A `BY` with no `*` cannot name a key per element, so it is an order to
        // leave things alone. The exception is the one the module doc explains.
        let mut alpha = opts.alpha;
        let mut by = opts.by;
        let mut dontsort = by.is_some_and(|p| !p.contains(&b'*'));
        if dontsort && kind == Some(Kind::Set) && opts.store {
            dontsort = false;
            alpha = true;
            by = None;
        }

        let ordered = if dontsort {
            // The natural order of whatever it is, backwards if `DESC` was
            // given. A list is head to tail, a sorted set is by score, and a set
            // has no order to reverse but reversing it costs nothing and keeps
            // this one branch instead of two.
            let mut e = elems;
            if opts.desc {
                e.reverse();
            }
            e
        } else {
            self.order(elems, by, alpha, opts.desc)?
        };

        let window = limit(ordered.len(), opts.limit);
        self.emit(&ordered[window], opts.get)
    }

    /// Copy the elements out of whatever holds them.
    ///
    /// Owned, for the reason [`Keyspace::sort`] gives. A missing key is an empty
    /// list and not an error, so `SORT nosuchkey` answers nothing.
    fn elements(&mut self, key: &[u8], kind: Option<Kind>) -> Result<Vec<Vec<u8>>> {
        let mut out = Vec::new();
        match kind {
            None => {}
            Some(Kind::List) => {
                for e in self.lrange(key, 0, -1)? {
                    let mut v = Vec::new();
                    e.write_to(&mut v);
                    out.push(v);
                }
            }
            Some(Kind::Set) => {
                if let Some(members) = self.smembers(key)? {
                    for m in members {
                        let mut v = Vec::new();
                        m.write_to(&mut v);
                        out.push(v);
                    }
                }
            }
            Some(Kind::Zset) => {
                let n = self.zcard(key)?;
                let w = Window {
                    from: 0,
                    count: n,
                    rev: false,
                };
                out.reserve(n);
                self.zwalk(key, w, |m, _| {
                    let mut v = Vec::new();
                    m.write_to(&mut v);
                    out.push(v);
                })?;
            }
            Some(_) => return Err(wrong_type()),
        }
        Ok(out)
    }

    /// Weigh every element and put them in order.
    fn order(
        &mut self,
        elems: Vec<Vec<u8>>,
        by: Option<&[u8]>,
        alpha: bool,
        desc: bool,
    ) -> Result<Vec<Vec<u8>>> {
        let mut weighed = Vec::with_capacity(elems.len());
        for elem in elems {
            let looked = match by {
                Some(pattern) => self.by_pattern(pattern, &elem),
                None => None,
            };
            let (score, text) = if alpha {
                // Without a `BY` the element is its own sort key, and the tie
                // break already compares elements, so there is nothing to carry.
                (0.0, if by.is_some() { looked } else { None })
            } else {
                let raw = match by {
                    // A lookup that missed weighs nothing. Redis leaves the
                    // score at zero rather than failing, which means a numeric
                    // `BY` over keys that do not exist is a pure tie break.
                    Some(_) => match looked {
                        Some(v) => v,
                        None => {
                            weighed.push(Weighted {
                                elem,
                                score: 0.0,
                                text: None,
                            });
                            continue;
                        }
                    },
                    None => elem.clone(),
                };
                let n =
                    num::parse_f64(&raw).ok_or_else(|| Error::new(Code::Invalid, NOT_A_DOUBLE))?;
                if n.is_nan() {
                    return Err(Error::new(Code::Invalid, NOT_A_DOUBLE));
                }
                (n, None)
            };
            weighed.push(Weighted { elem, score, text });
        }

        // Stable is not needed, since the tie break is total, but it is what
        // `sort_by` gives and asking for the unstable one to save nothing would
        // be trading a guarantee for no gain.
        weighed.sort_by(|a, b| {
            let cmp = if alpha {
                match (&a.text, &b.text) {
                    // Both missing, or no `BY` at all, so the elements decide.
                    (None, None) => a.elem.cmp(&b.elem),
                    // A miss sorts before a hit.
                    (None, Some(_)) => Ordering::Less,
                    (Some(_), None) => Ordering::Greater,
                    (Some(x), Some(y)) => x.cmp(y).then_with(|| a.elem.cmp(&b.elem)),
                }
            } else {
                // No NaN can reach here, so the partial compare is total.
                a.score
                    .partial_cmp(&b.score)
                    .unwrap_or(Ordering::Equal)
                    .then_with(|| a.elem.cmp(&b.elem))
            };
            if desc { cmp.reverse() } else { cmp }
        });
        Ok(weighed.into_iter().map(|w| w.elem).collect())
    }

    /// Build the answer, which is the elements themselves or a `GET` per element.
    fn emit(&mut self, elems: &[Vec<u8>], get: &[&[u8]]) -> Result<Vec<Option<Vec<u8>>>> {
        if get.is_empty() {
            return Ok(elems.iter().map(|e| Some(e.clone())).collect());
        }
        let mut out = Vec::with_capacity(elems.len() * get.len());
        for elem in elems {
            for pattern in get {
                if *pattern == b"#" {
                    out.push(Some(elem.clone()));
                } else {
                    out.push(self.by_pattern(pattern, elem));
                }
            }
        }
        Ok(out)
    }

    /// Read the key a pattern names for one element.
    ///
    /// `None` for a pattern with no `*`, for a key that is not there, and for a
    /// key that is there and holds the wrong type. The last one is a miss rather
    /// than an error on purpose: a pattern is a guess about a naming convention
    /// and one key that does not fit the convention should not fail a command
    /// over ten thousand elements.
    fn by_pattern(&mut self, pattern: &[u8], elem: &[u8]) -> Option<Vec<u8>> {
        let star = pattern.iter().position(|&c| c == b'*')?;
        // The field split is looked for after the `*`, so a `->` in the prefix
        // is part of the key name. And there has to be something after it, so a
        // pattern ending in `->` names a key whose name ends in `->`.
        let arrow = pattern[star + 1..]
            .windows(2)
            .position(|w| w == b"->")
            .map(|i| star + 1 + i)
            .filter(|&i| i + 2 < pattern.len());

        let (key_part, field) = match arrow {
            Some(i) => (&pattern[..i], Some(&pattern[i + 2..])),
            None => (pattern, None),
        };

        let mut key = Vec::with_capacity(key_part.len() + elem.len());
        key.extend_from_slice(&key_part[..star]);
        key.extend_from_slice(elem);
        key.extend_from_slice(&key_part[star + 1..]);

        match field {
            Some(f) => self
                .hget(&key, f, |t| {
                    t.map(|t| {
                        let mut v = Vec::new();
                        t.write_to(&mut v);
                        v
                    })
                })
                .unwrap_or(None),
            None => self.get(&key).ok().flatten().map(|s| s.to_vec()),
        }
    }
}

/// Which slice of the sorted elements the `LIMIT` asked for.
///
/// Redis clamps rather than complains at every edge: a negative offset is the
/// front, a negative count is everything left, an offset past the end is an
/// empty answer and a count that runs past the end stops at it.
fn limit(len: usize, limit: Option<(i64, i64)>) -> std::ops::Range<usize> {
    let Some((offset, count)) = limit else {
        return 0..len;
    };
    let start = usize::try_from(offset).unwrap_or(0).min(len);
    let end = if count < 0 {
        len
    } else {
        start
            .saturating_add(usize::try_from(count).unwrap_or(0))
            .min(len)
    };
    start..end
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::lists::End;
    use crate::strings::SetOptions;
    use crate::zsets::ZAdd;

    /// The answer as flat bytes, with a missed `GET` written as the word `nil`,
    /// which no test here stores as a value.
    fn flat(rows: Vec<Option<Vec<u8>>>) -> Vec<String> {
        rows.into_iter()
            .map(|r| match r {
                Some(v) => String::from_utf8_lossy(&v).into_owned(),
                None => "nil".to_string(),
            })
            .collect()
    }

    /// One list element as a string, for reading back what a `STORE` wrote.
    fn text(e: crate::listpack::Entry<'_>) -> String {
        let mut v = Vec::new();
        e.write_to(&mut v);
        String::from_utf8_lossy(&v).into_owned()
    }

    fn list(db: &mut Keyspace, key: &[u8], items: &[&str]) {
        db.push(key, End::Right, items.iter().map(|s| s.as_bytes()))
            .expect("a fresh list takes elements");
    }

    #[test]
    fn numbers_sort_as_numbers_and_not_as_text() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["10", "9", "100", "1"]);
        let opts = Sort::default();
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["1", "9", "10", "100"]);
        let alpha = Sort {
            alpha: true,
            ..Sort::default()
        };
        assert_eq!(
            flat(db.sort(b"l", &alpha).unwrap()),
            ["1", "10", "100", "9"]
        );
    }

    #[test]
    fn an_element_that_is_not_a_number_fails_the_whole_command() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["1", "two", "3"]);
        let err = db.sort(b"l", &Sort::default()).unwrap_err();
        assert_eq!(err.message(), NOT_A_DOUBLE);
        // And the same elements under ALPHA are fine, which is the whole point
        // of the option.
        let alpha = Sort {
            alpha: true,
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &alpha).unwrap()), ["1", "3", "two"]);
    }

    #[test]
    fn desc_reverses_and_limit_takes_a_window_of_what_is_left() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["3", "1", "5", "2", "4"]);
        let opts = Sort {
            desc: true,
            limit: Some((1, 2)),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["4", "3"]);
        // A negative count is everything from the offset on, and an offset past
        // the end is nothing at all.
        let rest = Sort {
            limit: Some((3, -1)),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &rest).unwrap()), ["4", "5"]);
        let past = Sort {
            limit: Some((99, 5)),
            ..Sort::default()
        };
        assert!(db.sort(b"l", &past).unwrap().is_empty());
        let before = Sort {
            limit: Some((-4, 2)),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &before).unwrap()), ["1", "2"]);
    }

    #[test]
    fn by_reads_a_key_for_every_element() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["a", "b", "c"]);
        db.set(b"w_a", b"3", SetOptions::PLAIN).unwrap();
        db.set(b"w_b", b"1", SetOptions::PLAIN).unwrap();
        db.set(b"w_c", b"2", SetOptions::PLAIN).unwrap();
        let opts = Sort {
            by: Some(b"w_*"),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["b", "c", "a"]);
    }

    #[test]
    fn a_by_lookup_that_missed_weighs_nothing_and_the_element_breaks_the_tie() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["c", "a", "b"]);
        db.set(b"w_b", b"5", SetOptions::PLAIN).unwrap();
        let opts = Sort {
            by: Some(b"w_*"),
            ..Sort::default()
        };
        // `a` and `c` both weigh zero, so they come first in element order, and
        // `b` weighs five and comes last.
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["a", "c", "b"]);
    }

    #[test]
    fn under_alpha_a_missed_by_sorts_before_every_hit() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["c", "a", "b"]);
        db.set(b"w_b", b"zzz", SetOptions::PLAIN).unwrap();
        db.set(b"w_c", b"aaa", SetOptions::PLAIN).unwrap();
        let opts = Sort {
            by: Some(b"w_*"),
            alpha: true,
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["a", "c", "b"]);
    }

    #[test]
    fn a_pattern_can_reach_into_a_hash() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["a", "b"]);
        db.hset(b"h_a", [(&b"w"[..], &b"2"[..])].into_iter())
            .unwrap();
        db.hset(b"h_b", [(&b"w"[..], &b"1"[..])].into_iter())
            .unwrap();
        let opts = Sort {
            by: Some(b"h_*->w"),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["b", "a"]);
        // And a pattern that ends in an arrow is a key name, not a hash lookup
        // with no field, so it reads a string key called `h_a->`.
        db.set(b"h_a->", b"9", SetOptions::PLAIN).unwrap();
        let trailing = Sort {
            by: Some(b"h_*->"),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &trailing).unwrap()), ["b", "a"]);
    }

    #[test]
    fn get_answers_other_keys_and_a_hash_of_them() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["2", "1"]);
        db.set(b"d_1", b"one", SetOptions::PLAIN).unwrap();
        db.set(b"d_2", b"two", SetOptions::PLAIN).unwrap();
        let get: [&[u8]; 2] = [b"#", b"d_*"];
        let opts = Sort {
            get: &get,
            ..Sort::default()
        };
        assert_eq!(
            flat(db.sort(b"l", &opts).unwrap()),
            ["1", "one", "2", "two"]
        );
        // A miss is a nil and not a skipped row, because the reply is positional.
        db.del(b"d_2");
        assert_eq!(
            flat(db.sort(b"l", &opts).unwrap()),
            ["1", "one", "2", "nil"]
        );
    }

    #[test]
    fn a_lookup_at_the_wrong_type_is_a_miss_and_not_an_error() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["a"]);
        list(&mut db, b"d_a", &["x"]);
        let get: [&[u8]; 1] = [b"d_*"];
        let opts = Sort {
            get: &get,
            alpha: true,
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["nil"]);
    }

    #[test]
    fn by_without_a_star_leaves_the_order_alone() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["3", "1", "2"]);
        let opts = Sort {
            by: Some(b"nosort"),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &opts).unwrap()), ["3", "1", "2"]);
        // And DESC still reverses it, because there is an order to reverse.
        let back = Sort {
            by: Some(b"nosort"),
            desc: true,
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"l", &back).unwrap()), ["2", "1", "3"]);
    }

    #[test]
    fn a_set_stored_without_a_sort_is_sorted_anyway() {
        let mut db = Keyspace::new();
        for m in ["c", "a", "b"] {
            db.sadd(b"s", [m.as_bytes()].into_iter()).unwrap();
        }
        let opts = Sort {
            by: Some(b"nosort"),
            ..Sort::default()
        };
        assert_eq!(db.sort_store(b"s", b"out", &opts).unwrap(), 3);
        let got: Vec<String> = db.lrange(b"out", 0, -1).unwrap().map(text).collect();
        assert_eq!(got, ["a", "b", "c"]);
    }

    #[test]
    fn a_sorted_set_comes_out_in_score_order_when_nothing_says_otherwise() {
        let mut db = Keyspace::new();
        db.zadd(
            b"z",
            [(3.0, &b"c"[..]), (1.0, &b"a"[..]), (2.0, &b"b"[..])].into_iter(),
            ZAdd::default(),
        )
        .unwrap();
        let opts = Sort {
            by: Some(b"nosort"),
            ..Sort::default()
        };
        assert_eq!(flat(db.sort(b"z", &opts).unwrap()), ["a", "b", "c"]);
    }

    #[test]
    fn storing_an_empty_result_removes_the_destination() {
        let mut db = Keyspace::new();
        list(&mut db, b"out", &["stale"]);
        assert_eq!(
            db.sort_store(b"missing", b"out", &Sort::default()).unwrap(),
            0
        );
        assert!(!db.exists(b"out"));
    }

    #[test]
    fn a_stored_get_that_missed_is_an_empty_string() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["1"]);
        let get: [&[u8]; 1] = [b"d_*"];
        let opts = Sort {
            get: &get,
            ..Sort::default()
        };
        assert_eq!(db.sort_store(b"l", b"out", &opts).unwrap(), 1);
        assert_eq!(db.llen(b"out").unwrap(), 1);
    }

    #[test]
    fn a_missing_key_is_empty_and_a_wrong_type_is_an_error() {
        let mut db = Keyspace::new();
        assert!(db.sort(b"nosuchkey", &Sort::default()).unwrap().is_empty());
        db.set(b"str", b"x", SetOptions::PLAIN).unwrap();
        assert_eq!(
            db.sort(b"str", &Sort::default()).unwrap_err().code(),
            Code::WrongType
        );
    }

    #[test]
    fn sorting_into_the_key_being_sorted_works() {
        let mut db = Keyspace::new();
        list(&mut db, b"l", &["3", "1", "2"]);
        assert_eq!(db.sort_store(b"l", b"l", &Sort::default()).unwrap(), 3);
        let got: Vec<String> = db.lrange(b"l", 0, -1).unwrap().map(text).collect();
        assert_eq!(got, ["1", "2", "3"]);
    }
}