ax 2.18.2

ax distributed event databank and command line tool
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
use anyhow::{anyhow, bail, ensure};
use escargot::{format::Message, CargoBuild};
use parking_lot::Mutex;
use serde_json::{json, Value};
use std::{
    collections::BTreeMap,
    ffi::OsStr,
    fmt::Write,
    io::{BufRead, BufReader},
    path::Path,
    process::{Command, Stdio},
    sync::{mpsc::channel, Arc, Once},
    thread::spawn,
    time::{Duration, Instant},
};
use tempfile::tempdir;

trait Opts: Sized {
    type Out;
    fn v(self, msg: &str) -> anyhow::Result<Self::Out>;
}
impl<T> Opts for Option<T> {
    type Out = T;
    fn v(self, msg: &str) -> anyhow::Result<T> {
        self.ok_or_else(|| anyhow!("{}: no value", msg))
    }
}

fn setup() {
    static INIT: Once = Once::new();
    INIT.call_once(|| {
        // This makes the path consistent, it works since its the same project we're building using escargot
        let cargo_path = concat!(env!("CARGO_MANIFEST_DIR"), "/Cargo.toml");
        // build needed binaries for quicker execution
        for bin in &["ax"] {
            eprintln!("building {}", bin);
            for msg in CargoBuild::new().manifest_path(cargo_path).bin(*bin).exec().unwrap() {
                let msg = msg.unwrap();
                let msg = msg.decode().unwrap();
                match msg {
                    Message::BuildFinished(x) => eprintln!("{:?}", x),
                    Message::CompilerArtifact(a) => {
                        if !a.fresh {
                            eprintln!("{:?}", a.package_id)
                        }
                    }
                    Message::CompilerMessage(s) => {
                        if let Some(msg) = s.message.rendered {
                            eprintln!("{}", msg)
                        }
                    }
                    Message::BuildScriptExecuted(_) => {}
                    Message::Unknown => {}
                }
            }
        }
    });
}

#[derive(Clone, Default)]
struct Log(Arc<Mutex<String>>);
impl Write for Log {
    fn write_str(&mut self, s: &str) -> std::fmt::Result {
        self.0.lock().write_str(s)
    }
}
impl std::fmt::Display for Log {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.0.lock())
    }
}

fn run(bin: &str) -> anyhow::Result<Command> {
    let cargo_path = concat!(env!("CARGO_MANIFEST_DIR"), "/Cargo.toml");
    Ok(CargoBuild::new().manifest_path(cargo_path).bin(bin).run()?.command())
}

fn with_api(
    mut log: impl Write + Clone + Send + 'static,
    f: impl FnOnce(u16, &Path) -> anyhow::Result<()>,
) -> anyhow::Result<()> {
    ax_core::util::setup_logger();
    setup();

    let workdir = tempdir()?;

    let _ = writeln!(log, "running AX in {}", std::env::current_dir()?.display());
    let mut process = run("ax")?
        .args(["run"])
        .current_dir(workdir.path())
        .stderr(Stdio::piped())
        .args(["--bind-api=0", "--bind-admin=0", "--bind-swarm=0"])
        .env("RUST_LOG", "debug")
        .spawn()?;
    let stderr = process.stderr.take().unwrap();

    let identity = workdir.path().join("identity");
    let mut args = ["users", "keygen", "-jo"].iter().map(OsStr::new).collect::<Vec<_>>();
    args.push(identity.as_os_str());
    let keygen = run("ax")?.args(args).output()?;
    ensure!(
        keygen.status.success(),
        "out: {}err: {}",
        String::from_utf8_lossy(&keygen.stdout),
        String::from_utf8_lossy(&keygen.stderr)
    );
    let _ = writeln!(log, "identity: {}", String::from_utf8(keygen.stdout)?);

    // ensure that the test ends at some point
    let (tx, rx) = channel::<()>();
    let mut rx = Some((rx, process));

    let mut lines = BufReader::new(stderr).lines();
    let mut api = 0u16;
    for line in &mut lines {
        if let Some((rx, mut process)) = rx.take() {
            // unfortunately escargot doesn’t inform us when building is finished,
            // so we start the AX timeout upon seeing the first line of output
            spawn(move || {
                let _ = rx.recv_timeout(Duration::from_secs(60));
                eprintln!("killing AX");
                let _ = process.kill();
            });
        }

        let line = line?;
        let _ = writeln!(log, "line: {}", line);
        if line.contains("ADMIN_API_BOUND") {
            const HOST: &str = "127.0.0.1/tcp/";
            if let Some(idx) = line.find(HOST) {
                let idx = idx + HOST.len();
                let upper = line[idx..]
                    .find(|c: char| !c.is_ascii_digit())
                    .map(|i| idx + i)
                    .unwrap_or_else(|| line.len());
                api = line[idx..upper].parse()?;
                break;
            }
        } else if line.contains("NODE_STARTED_BY_HOST") {
            bail!("no ADMIN_API_BOUND logged");
        }
    }
    if api == 0 {
        bail!("startup timed out");
    }
    let _ = writeln!(log, "found port {}", api);
    let mut log2 = log.clone();
    let handle = spawn(move || {
        for line in lines.flatten() {
            let _ = writeln!(log2, "line: {}", line);
        }
    });

    let started = Instant::now();
    loop {
        let offsets = match get_offsets(api, identity.as_ref()) {
            Ok(o) => o,
            Err(e) => {
                if started.elapsed() > Duration::from_secs(5) {
                    return Err(e);
                } else {
                    continue;
                }
            }
        };
        if get(&offsets, "/code")? == json!("OK")
            && !get(&offsets, "/result/present")?
                .as_object()
                .v("result map")?
                .is_empty()
        {
            break;
        }
        std::thread::sleep(Duration::from_millis(100));
    }

    // run the test
    let result = f(api, identity.as_ref());

    let _ = writeln!(log, "killing process");
    let _ = tx.send(());
    let _ = handle.join();
    result
}

fn get_offsets(api: u16, identity: &Path) -> anyhow::Result<Value> {
    let out = run("ax")?
        .args([
            o("events"),
            o("offsets"),
            o("-ji"),
            identity.as_os_str(),
            o(&format!("127.0.0.1:{}", api)),
        ])
        .env("RUST_LOG", "debug")
        .output()?;
    eprintln!(
        "prep out:\n{}\nerr:\n{}\n---",
        String::from_utf8_lossy(&out.stdout),
        String::from_utf8_lossy(&out.stderr)
    );
    ensure!(out.status.success());
    let v = serde_json::from_slice::<Value>(&out.stdout)?;
    ensure!(v.pointer("/code").is_some());
    Ok(v)
}

fn get(json: &Value, ptr: &str) -> anyhow::Result<Value> {
    json.pointer(ptr).cloned().ok_or_else(|| anyhow!("{} not found", ptr))
}
fn o(s: &str) -> &OsStr {
    OsStr::new(s)
}

#[test]
fn offsets() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("offsets"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());
        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        ensure!(get(&json, "/code")? == json!("OK"), "line {} was: {}", line!(), json);
        let stream = get(&json, "/result/present")?
            .as_object()
            .v("result map")?
            .keys()
            .next()
            .cloned()
            .v("first key")?;

        let out = run("ax")?
            .args([
                o("events"),
                o("offsets"),
                o("-i"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());
        let out = String::from_utf8(out.stdout)?;
        ensure!(out.contains(&stream), "{}", out);
        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn query() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-i"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FROM 'discovery' END"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());

        let mut found = false;
        for line in String::from_utf8(out.stdout)?.split('\n') {
            if line.is_empty() {
                continue;
            }
            let start = line.find(": ").ok_or_else(|| anyhow!("cannot parse"))? + 2;
            let json = serde_json::from_str::<Value>(&line[start..])?;
            get(&json, "/NewListenAddr")
                .or_else(|_| get(&json, "/NewObservedAddr"))
                .or_else(|_| get(&json, "/ExpiredObservedAddr"))?;
            found = true;
        }
        ensure!(found, "no events with text output");

        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FROM 'discovery' END"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());

        let mut found = false;
        for line in String::from_utf8(out.stdout)?.split('\n') {
            if line.is_empty() {
                continue;
            }
            let json = serde_json::from_str::<Value>(line)?;
            ensure!(
                get(&json, "/appId")? == json!("com.actyx"),
                "line {} was: {}",
                line!(),
                json
            );
            found = true;
        }
        ensure!(found, "no events with json output");

        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn bad_query() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-i"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FROM [1] END"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(!out.status.success());
        let out = String::from_utf8(out.stderr)?;
        ensure!(
            out == "[ERR_INVALID_INPUT] Error: The query uses beta features that are not enabled: fromArray.\n",
            "{}",
            out
        );

        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FROM [1] END"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(!out.status.success());
        let out = String::from_utf8(out.stdout)?;
        ensure!(
            out == r#"{"code":"ERR_INVALID_INPUT","message":"The query uses beta features that are not enabled: fromArray."}
"#,
            "{}",
            out
        );

        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn publish() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("publish"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o(r#"{ "baz":42 }"#),
                o("-t"),
                o("foo"),
                o("-t"),
                o("bar"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());
        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        ensure!(get(&json, "/code")? == json!("OK"), "line {} was: {}", line!(), json);
        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn diagnostics() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-i"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FROM 'discovery' SELECT _ - 3"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());
        let out = String::from_utf8(out.stdout)?;
        ensure!(out.contains("is not of type Number"), "{}", out);
        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn aggregate() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        let out = run("ax")?
            .args([
                o("events"),
                o("query"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
                o("FEATURES(zøg aggregate) FROM 'discovery' AGGREGATE SUM(1)"),
            ])
            .output()?;
        eprintln!(
            "out:\n{}\nerr:\n{}\n---",
            String::from_utf8_lossy(&out.stdout),
            String::from_utf8_lossy(&out.stderr)
        );
        ensure!(out.status.success());
        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        ensure!(
            get(&json, "/payload")?.as_u64() > Some(0),
            "{:?}",
            get(&json, "/payload")?.as_u64()
        );
        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn topic_delete() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        // Change the topic
        let out = run("ax")?
            .args([
                o("settings"),
                o("set"),
                o("-ji"),
                identity.as_os_str(),
                o("/swarm"),
                o("{\"topic\": \"new_topic\"}"),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        // List both topics
        let out = run("ax")?
            .args([
                o("topics"),
                o("ls"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/activeTopic")? == json!("new_topic"));

        // Size is not predictable so we're just checking the keys
        let topics = serde_json::from_value::<BTreeMap<String, u64>>(get(&json, "/result/0/response/topics")?)?;
        for (value, expected) in topics.keys().zip(&["default-topic", "new_topic"]) {
            assert!(value == expected);
        }

        // Delete the old topic
        let out = run("ax")?
            .args([
                o("topics"),
                o("delete"),
                o("default-topic"),
                o(&format!("127.0.0.1:{}", api)),
                o("-ji"),
                identity.as_os_str(),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());
        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/deleted")? == json!(true));

        // List again to compare
        let out = run("ax")?
            .args([
                o("topics"),
                o("ls"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/activeTopic")? == json!("new_topic"));

        let topics = serde_json::from_value::<BTreeMap<String, u64>>(get(&json, "/result/0/response/topics")?)?;
        assert!(topics.keys().next().unwrap() == "new_topic");

        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn topic_delete_non_existing() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        // Delete the old topic
        let out = run("ax")?
            .args([
                o("topics"),
                o("delete"),
                o("non-existing-topic"),
                o(&format!("127.0.0.1:{}", api)),
                o("-ji"),
                identity.as_os_str(),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/deleted")? == json!(false));
        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}

#[test]
fn topic_delete_prefix() -> anyhow::Result<()> {
    let log = Log::default();
    let result = with_api(log.clone(), |api, identity| {
        // Change the topic to t-i
        let out = run("ax")?
            .args([
                o("settings"),
                o("set"),
                o("-ji"),
                identity.as_os_str(),
                o("/swarm"),
                o("{\"topic\": \"t-i\"}"),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        // Change the topic to t-index
        let out = run("ax")?
            .args([
                o("settings"),
                o("set"),
                o("-ji"),
                identity.as_os_str(),
                o("/swarm"),
                o("{\"topic\": \"t-index\"}"),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        // List the topics to gather some info
        let out = run("ax")?
            .args([
                o("topics"),
                o("ls"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/activeTopic")? == json!("t-index"));

        // Size is not predictable so we're just checking the keys
        let topics = serde_json::from_value::<BTreeMap<String, u64>>(get(&json, "/result/0/response/topics")?)?;
        for (value, expected) in topics.keys().zip(&["default-topic", "t-i", "t-index"]) {
            assert!(value == expected);
        }

        // Keep the t-index size around to ensure it doesnt shrink
        let t_index_size = serde_json::from_value::<u64>(get(&json, "/result/0/response/topics/t-index")?)?;

        // Delete the prefix topic
        let out = run("ax")?
            .args([
                o("topics"),
                o("delete"),
                o("t-i"),
                o(&format!("127.0.0.1:{}", api)),
                o("-ji"),
                identity.as_os_str(),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());
        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/deleted")? == json!(true));

        // List again to compare
        let out = run("ax")?
            .args([
                o("topics"),
                o("ls"),
                o("-ji"),
                identity.as_os_str(),
                o(&format!("127.0.0.1:{}", api)),
            ])
            .env("RUST_LOG", "debug")
            .output()?;
        assert!(out.status.success());

        let json = serde_json::from_slice::<Value>(&out.stdout)?;
        assert!(get(&json, "/code")? == json!("OK"));
        assert!(get(&json, "/result/0/response/activeTopic")? == json!("t-index"));

        let topics = serde_json::from_value::<BTreeMap<String, u64>>(get(&json, "/result/0/response/topics")?)?;
        for (value, expected) in topics.keys().zip(&["default-topic", "t-index"]) {
            assert!(value == expected);
        }

        // Ensure the topic size didn't shrink (i.e. we didnt accidentaly delete something "extra")
        assert!(*topics.get("t-index").unwrap() >= t_index_size);

        Ok(())
    });
    if result.is_err() {
        eprintln!("{}", log);
    }
    result
}