mecha10-cli 0.1.47

Mecha10 CLI tool
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
//! Tests for ProjectService

use anyhow::Result;
use mecha10_cli::services::project::*;
use std::fs;
use std::path::Path;
use tempfile::TempDir;

fn create_test_project(dir: &Path, with_mecha10_json: bool) -> Result<()> {
    // Create basic structure
    fs::create_dir_all(dir.join("nodes"))?;
    fs::create_dir_all(dir.join("drivers"))?;
    fs::create_dir_all(dir.join("types"))?;

    if with_mecha10_json {
        fs::write(
            dir.join("mecha10.json"),
            r#"{
                "name": "test-project",
                "version": "0.1.0",
                "robot": {
                    "id": "test-robot"
                }
            }"#,
        )?;
    }

    Ok(())
}

#[test]
fn test_detect_project_in_current_dir() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::detect(temp.path())?;
    // Use canonicalized paths for comparison (handles macOS symlinks)
    let expected = temp.path().canonicalize()?;
    let actual = project.root().canonicalize()?;
    assert_eq!(actual, expected);

    Ok(())
}

#[test]
fn test_detect_project_in_parent_dir() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let subdir = temp.path().join("nodes").join("my_node");
    fs::create_dir_all(&subdir)?;

    let project = ProjectService::detect(&subdir)?;
    // Use canonicalized paths for comparison (handles macOS symlinks)
    let expected = temp.path().canonicalize()?;
    let actual = project.root().canonicalize()?;
    assert_eq!(actual, expected);

    Ok(())
}

#[test]
fn test_detect_project_fails_when_not_found() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap();

    let result = ProjectService::detect(temp.path());
    assert!(result.is_err());
}

#[test]
fn test_project_name_from_mecha10_json() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());
    assert_eq!(project.name()?, "test-project");

    Ok(())
}

#[test]
fn test_project_version_from_mecha10_json() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());
    assert_eq!(project.version()?, "0.1.0");

    Ok(())
}

#[test]
fn test_validate_succeeds_for_valid_project() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());
    project.validate()?;

    Ok(())
}

#[test]
fn test_validate_fails_without_mecha10_json() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap();

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.validate();
    assert!(result.is_err());
}

#[test]
fn test_list_nodes() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    fs::create_dir_all(temp.path().join("nodes").join("node_a"))?;
    fs::create_dir_all(temp.path().join("nodes").join("node_b"))?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let nodes = project.list_nodes()?;

    assert_eq!(nodes, vec!["node_a", "node_b"]);

    Ok(())
}

#[test]
fn test_list_drivers() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    fs::create_dir_all(temp.path().join("drivers").join("camera"))?;
    fs::create_dir_all(temp.path().join("drivers").join("motor"))?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let drivers = project.list_drivers()?;

    assert_eq!(drivers, vec!["camera", "motor"]);

    Ok(())
}

#[test]
fn test_list_types() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    fs::create_dir_all(temp.path().join("types").join("sensor_data"))?;
    fs::create_dir_all(temp.path().join("types").join("control_msg"))?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let types = project.list_types()?;

    assert_eq!(types, vec!["control_msg", "sensor_data"]);

    Ok(())
}

#[test]
fn test_list_nodes_empty_directory() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let nodes = project.list_nodes()?;

    assert_eq!(nodes, Vec::<String>::new());

    Ok(())
}

#[test]
fn test_list_nodes_skips_files() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    fs::create_dir_all(temp.path().join("nodes").join("node_a"))?;
    fs::write(temp.path().join("nodes").join("readme.txt"), "readme")?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let nodes = project.list_nodes()?;

    assert_eq!(nodes, vec!["node_a"]);

    Ok(())
}

#[test]
fn test_list_nodes_sorted() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    // Create in non-alphabetical order
    fs::create_dir_all(temp.path().join("nodes").join("zulu"))?;
    fs::create_dir_all(temp.path().join("nodes").join("alpha"))?;
    fs::create_dir_all(temp.path().join("nodes").join("bravo"))?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let nodes = project.list_nodes()?;

    assert_eq!(nodes, vec!["alpha", "bravo", "zulu"]);

    Ok(())
}

#[test]
fn test_project_metadata_from_cargo_toml() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), false)?; // No mecha10.json

    // Create Cargo.toml
    fs::write(
        temp.path().join("Cargo.toml"),
        r#"[package]
name = "my-robot"
version = "1.2.3"
edition = "2021"
"#,
    )?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let name = project.name()?;
    let version = project.version()?;

    assert_eq!(name, "my-robot");
    assert_eq!(version, "1.2.3");

    Ok(())
}

#[test]
fn test_project_metadata_prefers_mecha10_json() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?; // Has mecha10.json

    // Also create Cargo.toml with different values
    fs::write(
        temp.path().join("Cargo.toml"),
        r#"[package]
name = "different-name"
version = "9.9.9"
"#,
    )?;

    let project = ProjectService::new(temp.path().to_path_buf());
    let name = project.name()?;
    let version = project.version()?;

    // Should use mecha10.json values
    assert_eq!(name, "test-project");
    assert_eq!(version, "0.1.0");

    Ok(())
}

#[test]
fn test_project_metadata_fails_without_config() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap(); // No mecha10.json, no Cargo.toml

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.name();

    assert!(result.is_err());
    assert!(result
        .unwrap_err()
        .to_string()
        .contains("No mecha10.json or Cargo.toml"));
}

#[test]
fn test_project_metadata_invalid_json() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap();

    fs::write(temp.path().join("mecha10.json"), "not valid json {{{").unwrap();

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.name();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("parse"));
}

#[test]
fn test_project_metadata_missing_name_field() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap();

    fs::write(temp.path().join("mecha10.json"), r#"{"version": "1.0.0"}"#).unwrap();

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.name();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("Missing 'name' field"));
}

#[test]
fn test_project_metadata_missing_version_field() {
    let temp = TempDir::new().unwrap();
    create_test_project(temp.path(), false).unwrap();

    fs::write(temp.path().join("mecha10.json"), r#"{"name": "test"}"#).unwrap();

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.version();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("Missing 'version' field"));
}

#[test]
fn test_project_path_method() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());

    assert_eq!(project.path("nodes/my_node"), temp.path().join("nodes/my_node"));
    assert_eq!(project.path("config/robot.json"), temp.path().join("config/robot.json"));

    Ok(())
}

#[test]
fn test_project_root_getter() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());

    assert_eq!(project.root(), temp.path());

    Ok(())
}

#[test]
fn test_project_config_path() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());

    assert_eq!(project.config_path(), temp.path().join("mecha10.json"));

    Ok(())
}

#[test]
fn test_is_initialized_true() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), true)?;

    let project = ProjectService::new(temp.path().to_path_buf());

    assert!(project.is_initialized());

    Ok(())
}

#[test]
fn test_is_initialized_false() -> Result<()> {
    let temp = TempDir::new()?;
    create_test_project(temp.path(), false)?;

    let project = ProjectService::new(temp.path().to_path_buf());

    assert!(!project.is_initialized());

    Ok(())
}

#[test]
fn test_validate_fails_missing_nodes_dir() {
    let temp = TempDir::new().unwrap();
    fs::create_dir_all(temp.path()).unwrap();
    fs::write(temp.path().join("mecha10.json"), "{}").unwrap();
    // Missing nodes/, drivers/, types/

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.validate();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("missing 'nodes' directory"));
}

#[test]
fn test_validate_fails_missing_drivers_dir() {
    let temp = TempDir::new().unwrap();
    fs::create_dir_all(temp.path().join("nodes")).unwrap();
    fs::write(temp.path().join("mecha10.json"), "{}").unwrap();
    // Has nodes/, missing drivers/ and types/

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.validate();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("missing 'drivers' directory"));
}

#[test]
fn test_validate_fails_missing_types_dir() {
    let temp = TempDir::new().unwrap();
    fs::create_dir_all(temp.path().join("nodes")).unwrap();
    fs::create_dir_all(temp.path().join("drivers")).unwrap();
    fs::write(temp.path().join("mecha10.json"), "{}").unwrap();
    // Has nodes/ and drivers/, missing types/

    let project = ProjectService::new(temp.path().to_path_buf());
    let result = project.validate();

    assert!(result.is_err());
    assert!(result.unwrap_err().to_string().contains("missing 'types' directory"));
}