apr-cli 0.31.1

CLI tool for APR model inspection, debugging, and operations
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
use super::*;

#[tokio::test]
async fn test_register_and_find() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("whisper-large".to_string()),
            NodeId("node-1".to_string()),
            RegionId("us-west".to_string()),
            vec![Capability::Transcribe],
        )
        .await
        .expect("registration failed");

    let nodes = catalog
        .find_by_capability(&Capability::Transcribe)
        .await
        .expect("find failed");

    assert_eq!(nodes.len(), 1);
    assert_eq!(nodes[0].0, NodeId("node-1".to_string()));
}

#[tokio::test]
async fn test_deregister() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("llama-7b".to_string()),
            NodeId("node-1".to_string()),
            RegionId("eu-west".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("registration failed");

    catalog
        .deregister(
            ModelId("llama-7b".to_string()),
            NodeId("node-1".to_string()),
        )
        .await
        .expect("deregistration failed");

    let models = catalog.list_all().await.expect("list failed");
    assert!(models.is_empty());
}

#[tokio::test]
async fn test_multiple_deployments() {
    let catalog = ModelCatalog::new();

    // Same model on two nodes
    catalog
        .register(
            ModelId("whisper-base".to_string()),
            NodeId("node-1".to_string()),
            RegionId("us-east".to_string()),
            vec![Capability::Transcribe],
        )
        .await
        .expect("registration failed");

    catalog
        .register(
            ModelId("whisper-base".to_string()),
            NodeId("node-2".to_string()),
            RegionId("us-west".to_string()),
            vec![Capability::Transcribe],
        )
        .await
        .expect("registration failed");

    let nodes = catalog
        .find_by_capability(&Capability::Transcribe)
        .await
        .expect("find failed");

    assert_eq!(nodes.len(), 2);
}

#[tokio::test]
async fn test_custom_capability() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("sentiment-bert".to_string()),
            NodeId("node-1".to_string()),
            RegionId("ap-south".to_string()),
            vec![Capability::Custom("sentiment".to_string())],
        )
        .await
        .expect("registration failed");

    let nodes = catalog
        .find_by_capability(&Capability::Custom("sentiment".to_string()))
        .await
        .expect("find failed");

    assert_eq!(nodes.len(), 1);

    // Different custom capability should return empty
    let empty = catalog
        .find_by_capability(&Capability::Custom("other".to_string()))
        .await
        .expect("find failed");

    assert!(empty.is_empty());
}

// =========================================================================
// ModelCatalog::get tests
// =========================================================================

#[tokio::test]
async fn test_get_existing_model() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("whisper".to_string()),
            NodeId("n1".to_string()),
            RegionId("us-west".to_string()),
            vec![Capability::Transcribe],
        )
        .await
        .expect("registration failed");

    let entry = catalog.get(&ModelId("whisper".to_string()));
    assert!(entry.is_some());
    let entry = entry.expect("entry should exist");
    assert_eq!(entry.model_id, ModelId("whisper".to_string()));
    assert_eq!(entry.deployments.len(), 1);
}

#[test]
fn test_get_nonexistent_model() {
    let catalog = ModelCatalog::new();
    let entry = catalog.get(&ModelId("nonexistent".to_string()));
    assert!(entry.is_none());
}

// =========================================================================
// get_metadata tests
// =========================================================================

#[tokio::test]
async fn test_get_metadata_existing() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("llama".to_string()),
            NodeId("n1".to_string()),
            RegionId("us-east".to_string()),
            vec![Capability::Generate, Capability::Code],
        )
        .await
        .expect("registration failed");

    let meta = catalog
        .get_metadata(&ModelId("llama".to_string()))
        .await
        .expect("metadata failed");

    assert_eq!(meta.model_id, ModelId("llama".to_string()));
    assert_eq!(meta.name, "llama");
    assert_eq!(meta.version, "1.0.0");
    assert_eq!(meta.capabilities.len(), 2);
}

#[tokio::test]
async fn test_get_metadata_nonexistent() {
    let catalog = ModelCatalog::new();

    let result = catalog.get_metadata(&ModelId("missing".to_string())).await;

    assert!(result.is_err());
    assert!(matches!(result.unwrap_err(), FederationError::Internal(_)));
}

// =========================================================================
// all_entries tests
// =========================================================================

#[test]
fn test_all_entries_empty() {
    let catalog = ModelCatalog::new();
    assert!(catalog.all_entries().is_empty());
}

#[tokio::test]
async fn test_all_entries_multiple() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("m1".to_string()),
            NodeId("n1".to_string()),
            RegionId("r1".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("failed");

    catalog
        .register(
            ModelId("m2".to_string()),
            NodeId("n2".to_string()),
            RegionId("r2".to_string()),
            vec![Capability::Embed],
        )
        .await
        .expect("failed");

    let entries = catalog.all_entries();
    assert_eq!(entries.len(), 2);
}

// =========================================================================
// deregister edge cases
// =========================================================================

#[tokio::test]
async fn test_deregister_nonexistent_model() {
    let catalog = ModelCatalog::new();

    // Deregistering a non-existent model should succeed (no-op)
    let result = catalog
        .deregister(ModelId("missing".to_string()), NodeId("n1".to_string()))
        .await;
    assert!(result.is_ok());
}

#[tokio::test]
async fn test_deregister_nonexistent_node() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("m1".to_string()),
            NodeId("n1".to_string()),
            RegionId("r1".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("failed");

    // Deregister a different node -> model should still exist
    catalog
        .deregister(ModelId("m1".to_string()), NodeId("n2".to_string()))
        .await
        .expect("deregister failed");

    let models = catalog.list_all().await.expect("list failed");
    assert_eq!(models.len(), 1);
}

#[tokio::test]
async fn test_deregister_partial_keeps_remaining() {
    let catalog = ModelCatalog::new();

    // Same model on two nodes
    catalog
        .register(
            ModelId("m1".to_string()),
            NodeId("n1".to_string()),
            RegionId("r1".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("failed");

    catalog
        .register(
            ModelId("m1".to_string()),
            NodeId("n2".to_string()),
            RegionId("r2".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("failed");

    // Deregister one node
    catalog
        .deregister(ModelId("m1".to_string()), NodeId("n1".to_string()))
        .await
        .expect("deregister failed");

    // Model should still exist with 1 deployment
    let entry = catalog.get(&ModelId("m1".to_string()));
    assert!(entry.is_some());
    assert_eq!(entry.expect("should exist").deployments.len(), 1);
}

// =========================================================================
// capability_key coverage
// =========================================================================

#[tokio::test]
async fn test_all_capability_keys_via_registration() {
    let catalog = ModelCatalog::new();

    // Register one model for each capability variant
    let capabilities = vec![
        (ModelId("t1".to_string()), Capability::Transcribe),
        (ModelId("t2".to_string()), Capability::Synthesize),
        (ModelId("t3".to_string()), Capability::Generate),
        (ModelId("t4".to_string()), Capability::Code),
        (ModelId("t5".to_string()), Capability::Embed),
        (ModelId("t6".to_string()), Capability::ImageGen),
        (
            ModelId("t7".to_string()),
            Capability::Custom("custom_task".to_string()),
        ),
    ];

    for (model_id, cap) in &capabilities {
        catalog
            .register(
                model_id.clone(),
                NodeId("n1".to_string()),
                RegionId("r1".to_string()),
                vec![cap.clone()],
            )
            .await
            .expect("registration failed");
    }

    // Verify each can be found
    for (_, cap) in &capabilities {
        let nodes = catalog.find_by_capability(cap).await.expect("find failed");
        assert_eq!(nodes.len(), 1, "Should find 1 node for {:?}", cap);
    }
}

// =========================================================================
// DeploymentStatus tests
// =========================================================================

#[test]
fn test_deployment_status_equality() {
    assert_eq!(DeploymentStatus::Ready, DeploymentStatus::Ready);
    assert_ne!(DeploymentStatus::Ready, DeploymentStatus::Loading);
    assert_ne!(DeploymentStatus::Draining, DeploymentStatus::Removed);
}

#[test]
fn test_deployment_status_all_variants() {
    let statuses = [
        DeploymentStatus::Loading,
        DeploymentStatus::Ready,
        DeploymentStatus::Draining,
        DeploymentStatus::Removed,
    ];
    // All distinct
    for (i, a) in statuses.iter().enumerate() {
        for (j, b) in statuses.iter().enumerate() {
            if i == j {
                assert_eq!(a, b);
            } else {
                assert_ne!(a, b);
            }
        }
    }
}

#[test]
fn test_deployment_status_copy() {
    let status = DeploymentStatus::Draining;
    let copied = status;
    assert_eq!(status, copied);
}

// =========================================================================
// ModelEntry/ModelDeployment construction tests
// =========================================================================

#[test]
fn test_model_entry_clone() {
    let entry = ModelEntry {
        model_id: ModelId("test".to_string()),
        metadata: ModelMetadata {
            model_id: ModelId("test".to_string()),
            name: "Test Model".to_string(),
            version: "1.0".to_string(),
            capabilities: vec![Capability::Generate],
            parameters: 7_000_000_000,
            quantization: Some("Q4_K".to_string()),
        },
        deployments: vec![ModelDeployment {
            node_id: NodeId("n1".to_string()),
            region_id: RegionId("us-west".to_string()),
            endpoint: "http://n1:8080".to_string(),
            status: DeploymentStatus::Ready,
        }],
    };

    let cloned = entry.clone();
    assert_eq!(cloned.model_id, ModelId("test".to_string()));
    assert_eq!(cloned.deployments.len(), 1);
}

#[test]
fn test_model_deployment_construction() {
    let dep = ModelDeployment {
        node_id: NodeId("gpu-node".to_string()),
        region_id: RegionId("eu-west".to_string()),
        endpoint: "https://gpu-node.eu-west:443".to_string(),
        status: DeploymentStatus::Loading,
    };
    assert_eq!(dep.node_id, NodeId("gpu-node".to_string()));
    assert_eq!(dep.status, DeploymentStatus::Loading);
}

// =========================================================================
// ModelCatalog::default tests
// =========================================================================

#[test]
fn test_model_catalog_default() {
    let catalog = ModelCatalog::default();
    assert!(catalog.all_entries().is_empty());
}

// =========================================================================
// find_by_capability with non-Ready deployments
// =========================================================================

#[tokio::test]
async fn test_find_by_capability_empty() {
    let catalog = ModelCatalog::new();
    let nodes = catalog
        .find_by_capability(&Capability::Generate)
        .await
        .expect("find failed");
    assert!(nodes.is_empty());
}

#[tokio::test]
async fn test_find_by_capability_no_match() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("whisper".to_string()),
            NodeId("n1".to_string()),
            RegionId("r1".to_string()),
            vec![Capability::Transcribe],
        )
        .await
        .expect("failed");

    // Search for different capability
    let nodes = catalog
        .find_by_capability(&Capability::Generate)
        .await
        .expect("find failed");
    assert!(nodes.is_empty());
}

// =========================================================================
// list_all tests
// =========================================================================

#[tokio::test]
async fn test_list_all_empty() {
    let catalog = ModelCatalog::new();
    let models = catalog.list_all().await.expect("list failed");
    assert!(models.is_empty());
}

#[tokio::test]
async fn test_list_all_after_deregister_all() {
    let catalog = ModelCatalog::new();

    catalog
        .register(
            ModelId("m1".to_string()),
            NodeId("n1".to_string()),
            RegionId("r1".to_string()),
            vec![Capability::Generate],
        )
        .await
        .expect("failed");

    catalog
        .deregister(ModelId("m1".to_string()), NodeId("n1".to_string()))
        .await
        .expect("failed");

    let models = catalog.list_all().await.expect("list failed");
    assert!(models.is_empty());
}