mlxrs 0.1.0

Safe Rust bindings for Apple's MLX array framework, with LM, VLM, audio, and embeddings support
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
//! E3 — embeddings local load-factory (`embeddings::factory`).
//!
//! Integration tests reachable from *outside* the crate, mirroring
//! `tests/lm_load.rs` and the `lm/factory.rs` `#[cfg(test)]` block: they prove
//! the public re-exported surface (`load` + `EmbeddingModelTypeRegistry` +
//! `EmbeddingModelConfiguration` + the loaded context) is usable from a
//! consumer, against mock model-dir fixtures (a real `tokenizer.json` written
//! via the `tokenizers` crate + a real `model.safetensors` written via
//! `mlxrs::io::save_safetensors`). Gated on the `embeddings` feature.
#![cfg(feature = "embeddings")]

use std::{
  collections::HashMap,
  fs,
  path::{Path, PathBuf},
  process,
};

use mlxrs::{
  Array, Error,
  embeddings::{
    EmbeddingModel, EmbeddingModelConfiguration, EmbeddingModelConstructor, EmbeddingModelOutput,
    EmbeddingModelTypeRegistry, EmbeddingWeights, LoadedEmbeddingModel, PoolingStrategy, load,
    remap_model_type,
  },
  error::{FileOp, RankMismatchPayload},
  io,
};

/// A unique temp directory for one test (process-scoped + named so parallel
/// test binaries / cases never collide). Created fresh.
fn temp_dir(name: &str) -> PathBuf {
  let dir = std::env::temp_dir().join(format!("mlxrs_emb_load_{}_{}", process::id(), name));
  let _ = fs::remove_dir_all(&dir);
  fs::create_dir_all(&dir).unwrap();
  dir
}

/// A minimal `config.json` carrying the dispatch `model_type`.
fn config_json(model_type: &str) -> String {
  format!(r#"{{"model_type": "{model_type}", "hidden_size": 4, "vocab_size": 5}}"#)
}

/// A trivial public-surface [`EmbeddingModel`] the mock constructor returns.
struct MockEmbedding;

impl EmbeddingModel for MockEmbedding {
  fn forward(
    &self,
    input_ids: &Array,
    _attention_mask: &Array,
  ) -> Result<EmbeddingModelOutput, Error> {
    let (batch, seq) = match input_ids.shape().as_slice() {
      [b, s] => (*b, *s),
      _ => {
        let shape = input_ids.shape();
        return Err(Error::RankMismatch(RankMismatchPayload::new(
          "MockEmbedding::forward expects rank-2 (batch, seq) ids",
          shape.len() as u32,
          shape,
        )));
      }
    };
    let hidden = 4usize;
    let data = vec![0.0_f32; batch * seq * hidden];
    Ok(EmbeddingModelOutput::from_hidden_state(
      Array::from_slice::<f32>(&data, &(batch, seq, hidden)).unwrap(),
    ))
  }
}

fn mock_constructor() -> EmbeddingModelConstructor {
  Box::new(
    |loaded: &LoadedEmbeddingModel| -> Result<Box<dyn EmbeddingModel>, Error> {
      assert!(!loaded.weights_ref().is_empty());
      Ok(Box::new(MockEmbedding))
    },
  )
}

/// Write a minimal but loadable `tokenizer.json` (3-token WordLevel +
/// Whitespace pre-tokenizer) into `dir`.
fn write_tokenizer(dir: &Path) {
  use tokenizers::{
    Tokenizer as HfTokenizer, models::wordlevel::WordLevel, pre_tokenizers::whitespace::Whitespace,
  };
  let vocab = [("a", 0u32), ("b", 1), ("c", 2)]
    .iter()
    .map(|(w, i)| ((*w).to_string(), *i))
    .collect();
  let wl = WordLevel::builder()
    .vocab(vocab)
    .unk_token("a".to_string())
    .build()
    .unwrap();
  let mut hf = HfTokenizer::new(wl);
  hf.with_pre_tokenizer(Some(Whitespace {}));
  hf.save(dir.join("tokenizer.json"), false).unwrap();
}

/// Populate `dir` as a loadable model directory: config + weights + tokenizer.
fn write_model_dir(dir: &Path, model_type: &str) {
  fs::write(dir.join("config.json"), config_json(model_type)).unwrap();
  let mut weights: EmbeddingWeights = HashMap::new();
  weights.insert(
    "mock.weight".to_owned(),
    Array::from_slice::<f32>(&[1.0, 2.0, 3.0, 4.0], &(2usize, 2)).unwrap(),
  );
  io::save_safetensors(&dir.join("model.safetensors"), &weights).unwrap();
  write_tokenizer(dir);
}

#[test]
fn load_produces_context_via_public_surface() {
  let dir = temp_dir("ctx");
  write_model_dir(&dir, "bert");
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let ctx = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  )
  .expect("load should succeed");

  assert_eq!(ctx.model_type, "bert");
  assert!(ctx.pooling.is_none(), "no 1_Pooling/config.json written");

  let ids = Array::from_slice::<i32>(&[0, 1, 2], &(1usize, 3)).unwrap();
  let mask = Array::from_slice::<f32>(&[1.0, 1.0, 1.0], &(1usize, 3)).unwrap();
  let out = ctx.model.forward(&ids, &mask).unwrap();
  assert_eq!(out.last_hidden_state().shape(), vec![1, 3, 4]);

  let tok_ids = ctx.tokenizer.encode("a b c", false).unwrap();
  assert_eq!(tok_ids.len(), 3);
}

#[test]
fn load_parses_pooling_config_when_present() {
  let dir = temp_dir("pooling");
  write_model_dir(&dir, "bert");
  let pooling_dir = dir.join("1_Pooling");
  fs::create_dir_all(&pooling_dir).unwrap();
  fs::write(
    pooling_dir.join("config.json"),
    r#"{"word_embedding_dimension": 4, "pooling_mode_cls_token": true}"#,
  )
  .unwrap();

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let ctx = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  )
  .unwrap();
  let pooling = ctx.pooling.expect("pooling config parsed");
  assert_eq!(pooling.strategy(), PoolingStrategy::Cls);
  assert_eq!(pooling.dimension(), Some(4));
}

#[test]
fn unknown_model_type_errors() {
  let dir = temp_dir("unknown");
  write_model_dir(&dir, "no_such_arch");
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!("unknown model_type must error");
  };
  let msg = err.to_string();
  assert!(msg.contains("unsupported model type"), "got: {msg}");
  assert!(msg.contains("no_such_arch"), "should name the type: {msg}");
}

#[test]
fn missing_config_errors() {
  let dir = temp_dir("noconfig");
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!("missing config must error");
  };
  assert!(err.to_string().contains("config.json"), "got: {err}");
}

#[test]
fn empty_model_directory_errors_before_filesystem_root_scan() {
  // `from_directory("")`, `from_id("")`, and `PathBuf::new()` each yield an
  // EMPTY model-directory path. Shard discovery builds its glob pattern as
  // `"<dir>/<suffix>"`, so an empty `<dir>` becomes the ABSOLUTE pattern
  // `"/**/model*.safetensors"` — which recursively scans the filesystem ROOT
  // `/`, suppresses permission errors, and can merge unrelated `safetensors`
  // from outside the intended directory (a filesystem-escape + wrong-weight
  // load). `load()` must reject the empty path with a recoverable
  // `Error::Backend` BEFORE any `config.json` / pooling / shard resolution —
  // i.e. it must error WITHOUT performing that filesystem-root scan.
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  for config in [
    EmbeddingModelConfiguration::from_directory(""),
    EmbeddingModelConfiguration::from_id(""),
    EmbeddingModelConfiguration::from_directory(PathBuf::new()),
  ] {
    let Err(err) = load(&config, &registry) else {
      panic!("an empty model directory path must be a recoverable error, not a load");
    };
    assert!(
      matches!(err, Error::EmptyInput(_)),
      "expected EmptyInput error; got {err:?}"
    );
    let msg = err.to_string();
    assert!(
      msg.contains("model directory path must not be empty"),
      "the error should explain the empty-path rejection; got: {msg}"
    );
    // Proof the rejection happened up front: the error is NOT a downstream
    // `config.json` / weights failure (which would mean a `/`-root scan ran).
    assert!(
      !msg.contains("config.json") && !msg.contains("no model weights"),
      "the empty path must be rejected before config/shard resolution; got: {msg}"
    );
  }
}

#[test]
fn empty_tokenizer_source_errors() {
  // A separately-supplied tokenizer directory that is EMPTY is the same caller
  // bug and is rejected up front too. The model directory here is real and
  // loadable, so only the empty tokenizer-source path can fail the load.
  let model_dir = temp_dir("empty-tok-src");
  write_model_dir(&model_dir, "bert");
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let config = EmbeddingModelConfiguration::from_directory(&model_dir).with_tokenizer_source("");

  let Err(err) = load(&config, &registry) else {
    panic!("an empty tokenizer_source path must be a recoverable error");
  };
  assert!(
    matches!(err, Error::EmptyInput(_)),
    "expected EmptyInput error; got {err:?}"
  );
  assert!(
    err
      .to_string()
      .contains("tokenizer directory path must not be empty"),
    "the error should explain the empty tokenizer-path rejection; got: {err}"
  );
}

#[test]
fn invalid_tokenizer_dir_surfaces_path_context_and_preserves_typed_source() {
  // Regression: when `Tokenizer::from_path` fails (e.g. the selected
  // tokenizer directory has no `tokenizer.json`), the factory must wrap the
  // typed `Error::Tokenizer` failure in `Error::FileIo(FileOp::Other(
  // "tokenizer_load"), tokenizer_dir, …)` so:
  //  (a) the *selected* tokenizer directory is machine-readable via
  //      `payload.path()` (recovery / multi-candidate debuggability), and
  //  (b) the original typed `crate::Error` is preserved via the
  //      `io::Error::source()` chain (caller can downcast or Display-walk).
  //
  // We use the split-tokenizer-source layout (`with_tokenizer_source`) so the
  // model_dir is a valid, loadable model and the *only* failure path is the
  // separately-supplied tokenizer dir — making the path-context assertion
  // unambiguous (the wrapper carries the tokenizer dir, not the model dir).
  let model_dir = temp_dir("invalid-tok-dir-model");
  write_model_dir(&model_dir, "bert");
  let tok_dir = temp_dir("invalid-tok-dir-tok");
  // Plant NO tokenizer.json — `Tokenizer::from_path` returns
  // `Error::Tokenizer("load tokenizer.json: ...")`.

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let config =
    EmbeddingModelConfiguration::from_directory(&model_dir).with_tokenizer_source(&tok_dir);
  let Err(err) = load(&config, &registry) else {
    panic!("expected FileIo error when tokenizer.json is missing in the tokenizer_source dir");
  };

  match err {
    Error::FileIo(p) => {
      // (a) Path context: the *selected* tokenizer directory is preserved.
      assert_eq!(
        p.path(),
        tok_dir.as_path(),
        "FileIo payload must carry the selected tokenizer directory, got {:?}",
        p.path()
      );
      // The op kind explicitly marks this as a tokenizer-load failure (the
      // contract the factory comment claims).
      assert_eq!(p.op(), FileOp::Other("tokenizer_load"));
      assert_eq!(p.context(), "embeddings load: tokenizer");

      // (b) Typed source chain: the original `Error::Tokenizer` is reachable
      // through the io::Error's `get_ref()` (typed variant + its Display
      // message survive, not just a stringified prefix).
      //
      // NOTE: `io::Error::new(_, boxed)` / `io::Error::other(boxed)` exposes
      // the boxed inner via `get_ref()` / `into_inner()`, but the stdlib
      // implementation does NOT forward it through `std::error::Error::
      // source()` for the io::Error itself — so the typed-chain assertion
      // must use `get_ref()` (which is what `FileIoPayload`'s docs point
      // callers at too: "the underlying io::Error" is `inner()`, and the
      // boxed source under it is reachable via `get_ref()`).
      let inner_dyn = p
        .inner()
        .get_ref()
        .expect("io::Error must carry the boxed mlxrs::Error inner via get_ref()");
      let inner_msg = format!("{inner_dyn}");
      assert!(
        inner_msg.contains("load tokenizer.json"),
        "the inner typed Error::Tokenizer Display must be reachable via \
         io::Error::get_ref(); got inner message: {inner_msg:?}"
      );

      // Downcast: the boxed inner IS a `crate::Error`, specifically the
      // `Tokenizer` variant (proving the typed chain is preserved end-to-end,
      // not just stringified).
      let downcast = inner_dyn
        .downcast_ref::<Error>()
        .expect("the io::Error get_ref must downcast to the original mlxrs::Error");
      assert!(
        downcast.is_tokenizer(),
        "the preserved typed source must be Error::Tokenizer; got {downcast:?}"
      );
    }
    other => panic!("expected Error::FileIo wrapping the typed Tokenizer source, got {other:?}"),
  }
}

#[test]
fn separator_normalization_via_public_remap() {
  // `_get_model_arch`'s `-`→`_` normalization is reachable + applied on load.
  assert_eq!(remap_model_type("xlm-roberta"), "xlm_roberta");
  let dir = temp_dir("sep");
  write_model_dir(&dir, "xlm-roberta");
  let registry = EmbeddingModelTypeRegistry::new().with("xlm_roberta", mock_constructor());
  let ctx = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  )
  .unwrap();
  assert_eq!(ctx.model_type, "xlm_roberta");
}

// ───────────────── non-UTF-8 shard-leaf rejection (Unix) ─────────────────
//
// `glob 0.3.3` matches a non-recursive pattern component via
// `file_name().and_then(|s| s.to_str())` and silently `continue`s on `None`
// (`glob-0.3.3/src/lib.rs:463-467`, `// FIXME (#9639)`): a directory entry whose
// own LEAF file name is not valid UTF-8 (e.g. Unix bytes `model\xff.safetensors`)
// is never returned by `glob`, even though it matches the `model*.safetensors`
// shard pattern. Without a backstop the primary shard is silently dropped and
// the loader falls through to a stale `weight*.safetensors` root fallback. The
// `collect_glob_shards` byte-level preflight closes that hole: a non-UTF-8 leaf
// matching a shard pattern now produces a clean `Error::Backend` naming the
// path. These tests drive the PUBLIC `load()` so the fix is verified end-to-end.
//
// macOS/APFS enforces UTF-8 file names and rejects creating the non-UTF-8 entry;
// each test then `return`s cleanly — the error code path (not this fixture) is
// the deliverable, and on a mounted NFS/exFAT/case-sensitive volume the entry
// creates and the rejection is exercised for real. Same skip pattern as the
// in-crate `load_weights_non_utf8_*` tests.

/// Write a minimal single-tensor `model.safetensors`-shaped weights file at an
/// arbitrary `path` (which may be non-UTF-8). Returns `false` if the filesystem
/// rejected the (non-UTF-8) name, so the caller can skip cleanly.
#[cfg(unix)]
fn try_write_one_tensor(path: &Path, key: &str) -> bool {
  let mut weights: HashMap<String, Array> = HashMap::new();
  weights.insert(
    key.to_owned(),
    Array::from_slice::<f32>(&[1.0, 2.0], &(2usize,)).unwrap(),
  );
  io::save_safetensors(path, &weights).is_ok()
}

#[cfg(unix)]
#[test]
fn load_non_utf8_leaf_model_shard_is_recoverable_error() {
  // A UTF-8 model directory containing a `model<0xFF>.safetensors` shard whose
  // LEAF name is not valid UTF-8. `glob` silently skips it; the preflight must
  // reject it with an `Error::Backend` naming the path — no panic.
  use std::{ffi::OsString, os::unix::ffi::OsStringExt};

  let dir = temp_dir("nonutf8-leaf");
  fs::write(dir.join("config.json"), config_json("bert")).unwrap();
  // `model` + invalid byte 0xFF + `.safetensors` — matches the byte-level shard
  // predicate (`b"model"` ... `b".safetensors"`) but is not valid UTF-8.
  let mut raw = b"model".to_vec();
  raw.push(0xFF);
  raw.extend_from_slice(b".safetensors");
  let bad_leaf = OsString::from_vec(raw);
  if !try_write_one_tensor(&dir.join(&bad_leaf), "mock.weight") {
    return; // UTF-8-enforcing filesystem (e.g. APFS) — skip cleanly.
  }

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!("a non-UTF-8 model*.safetensors leaf must be a recoverable error, not a panic");
  };
  assert!(
    matches!(err, Error::FileIo(_)),
    "expected FileIo error; got {err:?}"
  );
  let msg = err.to_string();
  assert!(
    msg.contains("non-UTF-8 file name") && msg.contains("shard pattern"),
    "the error should explain the non-UTF-8 shard-name rejection; got: {msg}"
  );
  assert!(
    msg.contains(&dir.display().to_string()),
    "the error should name the offending shard path; got: {msg}"
  );
}

#[cfg(unix)]
#[test]
fn load_non_utf8_leaf_shard_wins_over_stale_weight_fallback() {
  // THE DANGEROUS CASE: a model dir with BOTH a non-UTF-8-named
  // `model<0xFF>.safetensors` primary shard AND a valid legacy
  // `weights.safetensors` fallback. `glob` silently drops the non-UTF-8 primary
  // shard, so without the preflight the loader would fall through to the legacy
  // `weight*.safetensors` and load STALE/WRONG weights with no error. The
  // preflight must make the load FAIL with the clean non-UTF-8 error instead —
  // it must NOT silently load the `weights.safetensors` fallback.
  use std::{ffi::OsString, os::unix::ffi::OsStringExt};

  let dir = temp_dir("nonutf8-stale");
  fs::write(dir.join("config.json"), config_json("bert")).unwrap();
  // The non-UTF-8 primary shard.
  let mut raw = b"model".to_vec();
  raw.push(0xFF);
  raw.extend_from_slice(b".safetensors");
  let bad_leaf = OsString::from_vec(raw);
  if !try_write_one_tensor(&dir.join(&bad_leaf), "primary.weight") {
    return; // UTF-8-enforcing filesystem — skip cleanly.
  }
  // A VALID legacy root-level `weight*.safetensors` fallback sitting alongside.
  assert!(
    try_write_one_tensor(&dir.join("weights.safetensors"), "stale.weight"),
    "the legacy fallback shard must write on any filesystem"
  );

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!(
      "a non-UTF-8 model*.safetensors primary shard must fail the load, NOT silently fall \
       back to the stale weight*.safetensors snapshot"
    );
  };
  assert!(
    matches!(err, Error::FileIo(_)),
    "expected FileIo error; got {err:?}"
  );
  let msg = err.to_string();
  // The error must be the non-UTF-8 shard rejection, proving the preflight
  // fired BEFORE the legacy fallback could load the stale snapshot.
  assert!(
    msg.contains("non-UTF-8 file name") && msg.contains("shard pattern"),
    "the load must fail with the non-UTF-8 shard error, not silently load the stale \
     weight*.safetensors fallback; got: {msg}"
  );
}

#[cfg(unix)]
#[test]
fn load_non_utf8_leaf_shard_nested_under_subfolder_is_recoverable_error() {
  // A non-UTF-8 leaf shard `text_model/model<0xFF>.safetensors` NESTED one level
  // down. The `**/model*.safetensors` glob recurses, and `glob` silently skips
  // the non-UTF-8 leaf at any depth — so the preflight's recursive scan must
  // also catch it nested, not only at the root, and error cleanly.
  use std::{ffi::OsString, os::unix::ffi::OsStringExt};

  let dir = temp_dir("nonutf8-nested-leaf");
  fs::write(dir.join("config.json"), config_json("bert")).unwrap();
  let nested = dir.join("text_model");
  fs::create_dir_all(&nested).unwrap();
  let mut raw = b"model".to_vec();
  raw.push(0xFF);
  raw.extend_from_slice(b".safetensors");
  let bad_leaf = OsString::from_vec(raw);
  if !try_write_one_tensor(&nested.join(&bad_leaf), "encoder.weight") {
    return; // UTF-8-enforcing filesystem — skip cleanly.
  }

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!("a non-UTF-8 leaf shard nested under a subfolder must be a recoverable error");
  };
  assert!(
    matches!(err, Error::FileIo(_)),
    "expected FileIo error; got {err:?}"
  );
  let msg = err.to_string();
  assert!(
    msg.contains("non-UTF-8 file name") && msg.contains("shard pattern"),
    "the error should explain the non-UTF-8 shard-name rejection; got: {msg}"
  );
  assert!(
    msg.contains(&nested.display().to_string()),
    "the error should name the offending nested shard path; got: {msg}"
  );
}

// ──────────── present-but-broken `1_Pooling/config.json` (Unix) ───────────
//
// `read_optional_pooling`'s presence probe must distinguish a *genuinely
// absent* pooling config (`Ok(None)` — fall back to default pooling, the
// faithful `_read_pooling_config` "absent" case) from a *present-but-broken*
// one (a dangling symlink, a permission-denied path). The naïve `Path::exists()`
// gate collapses every error into `false`, so a present-but-unresolvable config
// would be silently treated as ABSENT and the loader would degrade to the wrong
// pooling strategy/dimension with no diagnostic. The fix uses `symlink_metadata`
// (`lstat`): only a genuine `NotFound` is "absent ⇒ None"; any other present /
// unresolvable state is a recoverable `Error::Backend`. These tests drive the
// PUBLIC `load()` so the contract is verified end-to-end.

#[cfg(unix)]
#[test]
fn load_broken_symlink_pooling_config_is_recoverable_error() {
  // THE DANGEROUS CASE: `1_Pooling/config.json` is a BROKEN symlink (its target
  // does not exist). `Path::exists()` follows the link, finds nothing, and
  // returns `false` — so the old gate would treat the config as ABSENT and the
  // model would load with silently-wrong (default) pooling. `symlink_metadata`
  // lstats the link itself, sees a present entry, and the parse path then fails
  // opening the dangling target — the load must FAIL with an `Error::Backend`,
  // NOT silently fall back to default pooling.
  let dir = temp_dir("pooling-broken-symlink");
  write_model_dir(&dir, "bert");
  let pooling_dir = dir.join("1_Pooling");
  fs::create_dir_all(&pooling_dir).unwrap();
  // A symlink at `1_Pooling/config.json` pointing at a target that does not
  // exist — a present directory entry whose resolution fails.
  std::os::unix::fs::symlink(
    dir.join("nonexistent_pooling_target.json"),
    pooling_dir.join("config.json"),
  )
  .unwrap();

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!(
      "a present-but-broken (dangling-symlink) 1_Pooling/config.json must fail the load, \
       NOT be silently treated as absent and fall back to default pooling"
    );
  };
  // Strict FileIo destructure (NOT a Backend|FileIo allowlist). A dangling
  // symlink at the config path means `symlink_metadata` itself observed a
  // PRESENT entry (the link inode) and SUCCEEDED — `read_optional_pooling`
  // then drives `pooling_from_st_config_path`, whose first real `std::fs` op
  // is the `OpenOptions::open()` call (`File::open` on non-Unix). Following
  // the link to a missing target yields a real `NotFound` from `open()`.
  // The contract is exact: `FileOp::Open` (NOT `Stat`/`Read` — those run only
  // *after* a successful open) carrying the REAL `io::Error::NotFound`
  // (NOT a synthetic `InvalidInput` — that's the not-a-regular-file branch),
  // pinned to the exact `1_Pooling/config.json` we planted.
  let expected_pooling_config_path = pooling_dir.join("config.json");
  match &err {
    Error::FileIo(payload) => {
      assert_eq!(
        payload.op(),
        FileOp::Open,
        "expected the OPEN phase for a dangling-symlink target; got {:?}",
        payload.op()
      );
      assert_eq!(
        payload.inner().kind(),
        std::io::ErrorKind::NotFound,
        "expected the inner io::Error::NotFound from following a dangling symlink to a missing \
         target; got {:?}",
        payload.inner().kind()
      );
      assert_eq!(
        payload.path(),
        expected_pooling_config_path.as_path(),
        "expected the FileIo path to be the planted broken-symlink config path"
      );
    }
    other => panic!("expected a typed FileIo error; got {other:?}"),
  }
}

#[cfg(unix)]
#[test]
fn load_broken_parent_symlink_pooling_dir_is_recoverable_error() {
  // THE PARENT-SYMLINK CASE: `1_Pooling` itself is a DANGLING symlink (its
  // target directory does not exist). An `lstat` of the CHILD path
  // `1_Pooling/config.json` returns `NotFound` from the kernel (the parent
  // component cannot be resolved) — yet `1_Pooling` is genuinely PRESENT as a
  // directory entry; a naïve "child NotFound ⇒ absent ⇒ Ok(None)" gate would
  // silently degrade to default pooling. The fix is a SECOND `lstat` on the
  // parent: an `Ok` on a symlink whose followed target does not exist surfaces
  // as a typed `Error::FileIo` naming the broken parent path, NOT a silent
  // fall-back. This test pins the contract end-to-end through public `load()`.
  let dir = temp_dir("pooling-broken-parent-symlink");
  write_model_dir(&dir, "bert");
  // A symlink at `1_Pooling` pointing at a target directory that does not
  // exist — a present directory entry whose resolution fails.
  std::os::unix::fs::symlink(dir.join("nonexistent_pooling_dir"), dir.join("1_Pooling")).unwrap();

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let Err(err) = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  ) else {
    panic!(
      "a present-but-broken (dangling-symlink) 1_Pooling parent directory must fail the \
       load, NOT be silently treated as absent and fall back to default pooling"
    );
  };
  // Strict FileIo destructure: the parent-symlink probe is `metadata` (follows
  // symlinks) on `1_Pooling`. Following the dangling link to a missing target
  // yields a real `NotFound` from the kernel — NOT a synthetic value — and the
  // typed payload's path is the exact `1_Pooling` parent we planted (NOT
  // `1_Pooling/config.json`), so the caller can distinguish "broken parent"
  // from "broken child" by `payload.path()`.
  let expected_parent_path = dir.join("1_Pooling");
  let Error::FileIo(payload) = &err else {
    panic!("expected a typed FileIo error; got {err:?}");
  };
  assert_eq!(
    payload.op(),
    FileOp::Stat,
    "broken-parent-symlink probe MUST surface as FileOp::Stat (the metadata \
     follow-the-link call that failed); got {:?}",
    payload.op()
  );
  assert_eq!(
    payload.inner().kind(),
    std::io::ErrorKind::NotFound,
    "broken-parent-symlink MUST carry the REAL io::Error::NotFound from \
     following the dangling parent symlink; got {:?}",
    payload.inner().kind()
  );
  assert_eq!(
    payload.path(),
    expected_parent_path.as_path(),
    "the FileIo path MUST be the broken 1_Pooling parent (NOT the unreachable \
     1_Pooling/config.json child) so callers can distinguish parent-vs-child \
     failure modes; got {}",
    payload.path().display()
  );
}

#[cfg(unix)]
#[test]
fn load_resolvable_parent_symlink_pooling_dir_with_no_config_is_absent() {
  // The CONTROL for the parent-symlink fix: `1_Pooling` is a symlink that
  // RESOLVES (its target directory exists), but the target directory contains
  // no `config.json`. This is the "present-as-resolvable-symlink, child
  // genuinely absent" case — the loader must still treat it as `Ok(None)`
  // (no pooling override) rather than failing closed. Without this control
  // the parent-symlink fix would over-tighten and break the legitimate HF
  // cache layout (which uses symlinks heavily).
  let dir = temp_dir("pooling-resolvable-parent-symlink");
  write_model_dir(&dir, "bert");
  // A real target directory that exists but has no config.json inside.
  let target_dir = dir.join("real_pooling_target");
  fs::create_dir_all(&target_dir).unwrap();
  std::os::unix::fs::symlink(&target_dir, dir.join("1_Pooling")).unwrap();

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let ctx = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  )
  .expect(
    "a resolvable 1_Pooling symlink pointing at a real (empty) directory must still load \
     (no config.json inside ⇒ no pooling override)",
  );
  assert!(
    ctx.pooling.is_none(),
    "no 1_Pooling/config.json inside the resolved target ⇒ no pooling override"
  );
}

#[test]
fn load_absent_pooling_config_still_loads_with_default_pooling() {
  // The control: a model dir with NO `1_Pooling/` directory at all (the common
  // plain-encoder layout). A genuinely absent pooling config must NOT be turned
  // into a false error by the stricter probe — it still loads fine with
  // `pooling == None` (the faithful `_read_pooling_config` "absent ⇒ None").
  let dir = temp_dir("pooling-genuinely-absent");
  write_model_dir(&dir, "bert");
  assert!(
    !dir.join("1_Pooling").exists(),
    "this fixture must not have a 1_Pooling directory"
  );

  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let ctx = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  )
  .expect("a genuinely-absent 1_Pooling/config.json must still load (default pooling)");
  assert!(
    ctx.pooling.is_none(),
    "no 1_Pooling/config.json ⇒ no pooling override"
  );
}

#[cfg(unix)]
#[test]
fn load_permission_denied_pooling_config_is_recoverable_error() {
  // A `1_Pooling/config.json` the process cannot even stat: its parent
  // `1_Pooling/` directory has mode 0o000, so `symlink_metadata` on the config
  // path fails with `PermissionDenied` (no search permission on the parent).
  // `Path::exists()` would collapse that to `false` (silently "absent" ⇒ wrong
  // default pooling); the fix must surface it as a recoverable `Error::Backend`.
  use std::os::unix::fs::PermissionsExt;

  let dir = temp_dir("pooling-perm-denied");
  write_model_dir(&dir, "bert");
  let pooling_dir = dir.join("1_Pooling");
  fs::create_dir_all(&pooling_dir).unwrap();
  fs::write(
    pooling_dir.join("config.json"),
    r#"{"word_embedding_dimension": 4, "pooling_mode_cls_token": true}"#,
  )
  .unwrap();
  // Drop all permissions on the parent directory: a `lstat` of any child path
  // now fails with EACCES (no search bit).
  fs::set_permissions(&pooling_dir, fs::Permissions::from_mode(0o000)).unwrap();

  // Probe whether the env actually enforces the permission — running as root,
  // or some CI filesystems, bypass directory permission bits. If not enforced,
  // this case cannot be provoked here (the broken-symlink test still covers the
  // present-but-unresolvable contract on every filesystem).
  let enforced = fs::symlink_metadata(pooling_dir.join("config.json")).is_err();
  let registry = EmbeddingModelTypeRegistry::new().with("bert", mock_constructor());
  let result = load(
    &EmbeddingModelConfiguration::from_directory(&dir),
    &registry,
  );
  // Always restore so `temp_dir`'s next-run `remove_dir_all` cleanup can run,
  // even if an assertion below fails.
  fs::set_permissions(&pooling_dir, fs::Permissions::from_mode(0o755)).unwrap();

  if !enforced {
    eprintln!(
      "skipping permission-denied pooling-config assertion: this environment \
       does not enforce directory search permission"
    );
    return;
  }
  let Err(err) = result else {
    panic!(
      "a permission-denied 1_Pooling/config.json must fail the load, NOT be silently \
       treated as absent and fall back to default pooling"
    );
  };
  // Strict FileIo destructure (NOT a Backend|FileIo allowlist). The
  // permission-denied path goes through the read_optional_pooling
  // presence-probe `symlink_metadata` call, which fails with
  // PermissionDenied (EACCES on the parent dir's search bit). The
  // contract is that the typed FileIo payload carries:
  // (a) FileOp::Stat (the symlink_metadata = lstat operation),
  // (b) inner io::Error with kind() == PermissionDenied (the REAL kernel
  //     error from std::fs::symlink_metadata — NOT a synthetic NotFound
  //     from Path::exists()),
  // (c) the config path we planted under the unreadable parent.
  let Error::FileIo(payload) = &err else {
    panic!("expected a typed FileIo error; got {err:?}");
  };
  assert_eq!(
    payload.op(),
    FileOp::Stat,
    "permission-denied symlink_metadata MUST surface as FileOp::Stat \
     (the lstat that failed), not Other; got {:?}",
    payload.op()
  );
  assert_eq!(
    payload.inner().kind(),
    std::io::ErrorKind::PermissionDenied,
    "permission-denied path MUST carry the REAL io::Error from \
     symlink_metadata (PermissionDenied), not a synthetic NotFound from \
     Path::exists(); got {:?}",
    payload.inner().kind()
  );
  assert!(
    payload.path().ends_with("1_Pooling/config.json"),
    "expected the FileIo path to end with 1_Pooling/config.json; got {}",
    payload.path().display()
  );
}

// ───────────── relative-`directory` shard discovery (`.` / `./sub`) ──────────
//
// Shard discovery globs `"<dir>/**/model*.safetensors"` and then classifies
// each match as a ROOT shard (keys verbatim) or a NESTED component shard (keys
// prefixed `<folder>.`). The `glob` crate does NOT preserve a leading
// current-directory component in the paths it yields: from `from_directory(".")`
// a root `model.safetensors` comes back as `model.safetensors` (no `./`), and
// from `from_directory("./sub")` a root shard comes back as `sub/model...` (the
// `./` stripped). A `path.parent() == directory` classification therefore
// mis-flagged a valid root shard as nested for these — the most common — local
// path spellings: `from_directory(".")` would ERROR on a valid checkpoint, and
// `from_directory("./sub")` would rewrite root weight keys with a bogus `sub.`
// prefix and corrupt the load. These tests drive the PUBLIC `load()` with each
// such spelling and assert the merged weight key set, end-to-end.

/// A constructor that records the loaded model's weight **key set** into
/// `slot`, so a test can assert root keys stayed verbatim (vs. being wrongly
/// rewritten `<folder>.<key>`). Returns the trivial [`MockEmbedding`].
fn capturing_constructor(
  slot: std::sync::Arc<std::sync::Mutex<Vec<String>>>,
) -> EmbeddingModelConstructor {
  Box::new(
    move |loaded: &LoadedEmbeddingModel| -> Result<Box<dyn EmbeddingModel>, Error> {
      let mut keys: Vec<String> = loaded.weights_ref().keys().cloned().collect();
      keys.sort();
      *slot.lock().unwrap() = keys;
      Ok(Box::new(MockEmbedding))
    },
  )
}

/// Process-wide lock serializing every CWD-mutating test. Rust's test harness
/// runs a binary's tests concurrently by default, so a `set_current_dir` test
/// must hold this lock for its whole body — otherwise an overlapping test
/// resolves a relative path (`.` / `./ckpt`) against the wrong directory.
static CWD_TEST_LOCK: std::sync::Mutex<()> = std::sync::Mutex::new(());

/// Serializes a CWD-mutating test against every other one (holds
/// [`CWD_TEST_LOCK`] for the guard's lifetime) and restores the process current
/// directory to its saved value on drop — so a `set_current_dir` test neither
/// overlaps another nor leaks a changed CWD into the next test, even if an
/// assertion panics mid-test.
struct RestoreCwd {
  saved: PathBuf,
  // Held for the test's whole body; released only after `Drop` restores the
  // CWD (fields drop after `Drop::drop` runs). Underscore-prefixed: the guard
  // exists purely for its lifetime.
  _lock: std::sync::MutexGuard<'static, ()>,
}

impl RestoreCwd {
  /// Acquire the global CWD lock, capture the current directory, then `cd`
  /// into `to`. The returned guard restores the CWD and releases the lock on
  /// drop.
  fn change_to(to: &Path) -> Self {
    // Ignore poisoning: the guarded data is `()`, so a prior test's panic
    // corrupts nothing — only the CWD, which this guard's `Drop` restores.
    let lock = CWD_TEST_LOCK.lock().unwrap_or_else(|e| e.into_inner());
    let saved = std::env::current_dir().expect("read current dir");
    std::env::set_current_dir(to).expect("set current dir");
    RestoreCwd { saved, _lock: lock }
  }
}

impl Drop for RestoreCwd {
  fn drop(&mut self) {
    let _ = std::env::set_current_dir(&self.saved);
  }
}

/// Build a loadable model directory `<parent>/<leaf>` whose single weight shard
/// is named `weight_file` (so a test can use either `model.safetensors` or the
/// legacy `weights.safetensors`), carrying one tensor keyed `weight_key`.
/// Returns `(parent, leaf)` so the caller can `cd` to `parent` and address the
/// model dir by a relative spelling (`.`, `./<leaf>`, `<leaf>`).
fn write_relative_model_dir(
  tag: &str,
  leaf: &str,
  weight_file: &str,
  weight_key: &str,
) -> (PathBuf, String) {
  let parent = temp_dir(tag);
  let model_dir = parent.join(leaf);
  fs::create_dir_all(&model_dir).unwrap();
  fs::write(model_dir.join("config.json"), config_json("bert")).unwrap();
  write_tokenizer(&model_dir);
  let mut weights: EmbeddingWeights = HashMap::new();
  weights.insert(
    weight_key.to_owned(),
    Array::from_slice::<f32>(&[1.0, 2.0], &(2usize,)).unwrap(),
  );
  io::save_safetensors(&model_dir.join(weight_file), &weights).unwrap();
  (parent, leaf.to_owned())
}

#[test]
fn load_from_dot_directory_keeps_root_shard_keys_verbatim() {
  // `from_directory(".")` with a root-level `model.safetensors`. `glob` yields
  // the shard as `model.safetensors` (NO `./` prefix) — its `.parent()` is the
  // empty path, `!= "."`, so the old code mis-flagged it NESTED and ERRORED on
  // a perfectly valid checkpoint. It must load, root keys verbatim.
  let (parent, leaf) = write_relative_model_dir("dot-dir", "ckpt", "model.safetensors", "root.w");
  let keys = std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
  let registry =
    EmbeddingModelTypeRegistry::new().with("bert", capturing_constructor(keys.clone()));

  // `cd` INTO the model dir so the directory spelling is literally ".".
  let _cwd = RestoreCwd::change_to(&parent.join(&leaf));
  load(&EmbeddingModelConfiguration::from_directory("."), &registry)
    .expect("from_directory(\".\") with a root model.safetensors must load, not error");

  assert_eq!(
    *keys.lock().unwrap(),
    vec!["root.w".to_string()],
    "a root shard discovered via `.` must keep its keys verbatim (no prefix)"
  );
}

#[test]
fn load_from_dot_slash_subdir_does_not_rewrite_root_shard_keys() {
  // `from_directory("./ckpt")` with a root-level `model.safetensors`. `glob`
  // strips the leading `./` and yields `ckpt/model.safetensors`; its parent
  // `ckpt` `!= "./ckpt"`, so the old code mis-flagged the ROOT shard as nested
  // and rewrote every key `ckpt.<key>` — silently corrupting the load. The keys
  // must stay verbatim.
  let (parent, leaf) =
    write_relative_model_dir("dotslash-model", "ckpt", "model.safetensors", "root.w");
  let keys = std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
  let registry =
    EmbeddingModelTypeRegistry::new().with("bert", capturing_constructor(keys.clone()));

  let _cwd = RestoreCwd::change_to(&parent);
  let spelling = format!("./{leaf}");
  load(
    &EmbeddingModelConfiguration::from_directory(&spelling),
    &registry,
  )
  .unwrap_or_else(|e| panic!("from_directory({spelling:?}) must load: {e}"));

  let got = keys.lock().unwrap().clone();
  assert_eq!(
    got,
    vec!["root.w".to_string()],
    "a root shard reached via `./{leaf}` must keep keys verbatim, NOT be rewritten `{leaf}.<key>`"
  );
  assert!(
    !got.iter().any(|k| k.starts_with(&format!("{leaf}."))),
    "root keys must not gain a `{leaf}.` prefix; got {got:?}"
  );
}

#[test]
fn load_from_dot_slash_subdir_loads_legacy_weight_glob_shard() {
  // `from_directory("./ckpt")` with only a legacy root `weights.safetensors`
  // (the non-recursive `weight*.safetensors` fallback). The root-vs-nested fix
  // applies to the legacy glob pass too: the root shard must load with keys
  // verbatim, not be mis-classified nested and rewritten `ckpt.<key>`.
  let (parent, leaf) =
    write_relative_model_dir("dotslash-weight", "ckpt", "weights.safetensors", "legacy.w");
  let keys = std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
  let registry =
    EmbeddingModelTypeRegistry::new().with("bert", capturing_constructor(keys.clone()));

  let _cwd = RestoreCwd::change_to(&parent);
  let spelling = format!("./{leaf}");
  load(
    &EmbeddingModelConfiguration::from_directory(&spelling),
    &registry,
  )
  .unwrap_or_else(|e| panic!("legacy weight*.safetensors via {spelling:?} must load: {e}"));

  assert_eq!(
    *keys.lock().unwrap(),
    vec!["legacy.w".to_string()],
    "a legacy root weight*.safetensors reached via `./{leaf}` must keep keys verbatim"
  );
}

#[test]
fn load_relative_directory_still_prefixes_genuine_nested_component_shards() {
  // Regression: the fix must NOT collapse a genuinely NESTED component shard to
  // "root". A model dir holds a root `model.safetensors` (key `embed.w`) AND a
  // nested `vision_model/model.safetensors` (key `enc.w`). For BOTH a plain
  // `<leaf>` and a `./<leaf>` directory spelling, the nested shard's keys must
  // still be prefixed with the immediate parent folder (`vision_model.`), while
  // the root shard's keys stay verbatim.
  let (parent, leaf) =
    write_relative_model_dir("rel-nested", "ckpt", "model.safetensors", "embed.w");
  // Add a genuine nested component shard under `<leaf>/vision_model/`.
  let nested = parent.join(&leaf).join("vision_model");
  fs::create_dir_all(&nested).unwrap();
  let mut nested_weights: EmbeddingWeights = HashMap::new();
  nested_weights.insert(
    "enc.w".to_owned(),
    Array::from_slice::<f32>(&[3.0, 4.0], &(2usize,)).unwrap(),
  );
  io::save_safetensors(&nested.join("model.safetensors"), &nested_weights).unwrap();

  for spelling in [leaf.clone(), format!("./{leaf}")] {
    let keys = std::sync::Arc::new(std::sync::Mutex::new(Vec::new()));
    let registry =
      EmbeddingModelTypeRegistry::new().with("bert", capturing_constructor(keys.clone()));

    let _cwd = RestoreCwd::change_to(&parent);
    load(
      &EmbeddingModelConfiguration::from_directory(&spelling),
      &registry,
    )
    .unwrap_or_else(|e| {
      panic!("model with a nested component shard via {spelling:?} must load: {e}")
    });
    drop(_cwd);

    let got = keys.lock().unwrap().clone();
    assert_eq!(
      got,
      vec!["embed.w".to_string(), "vision_model.enc.w".to_string()],
      "via {spelling:?}: the root shard's keys must stay verbatim and the nested \
       component shard's keys must be prefixed `vision_model.`; got {got:?}"
    );
  }
}