reflectapi-cli 0.17.5

CLI for reflectapi
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
//! Integration tests for `reflectapi codegen --output …` path handling.
//!
//! Multi-file codegen (TS, Python) needs to handle:
//!   - existing directories
//!   - fresh directories (path doesn't exist yet)
//!   - file-shaped paths whose filename matches one of the emitted files
//!     (siblings land in the parent directory)
//!   - stdout via `--output -`, which must print the language's *primary*
//!     file rather than the alphabetically-first one.

use std::{fs, process::Command};

fn cargo_bin() -> std::path::PathBuf {
    let bin = env!("CARGO_BIN_EXE_reflectapi");
    std::path::PathBuf::from(bin)
}

fn demo_schema() -> std::path::PathBuf {
    std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
        .parent()
        .unwrap()
        .join("reflectapi-demo")
        .join("reflectapi.json")
}

fn run(args: &[&str]) -> std::process::Output {
    Command::new(cargo_bin())
        .args(args)
        .output()
        .expect("spawn reflectapi")
}

#[cfg(unix)]
fn run_with_path(args: &[&str], path: &std::path::Path) -> std::process::Output {
    Command::new(cargo_bin())
        .args(args)
        .env("PATH", path)
        .output()
        .expect("spawn reflectapi")
}

fn write_minimal_python_schema(path: &std::path::Path, type_name: &str) {
    let schema = format!(
        r#"{{
  "name": "CLI stale cleanup test",
  "description": "",
  "functions": [
    {{
      "name": "items.get",
      "path": "",
      "output_kind": "complete",
      "output_type": {{ "name": "{type_name}" }},
      "serialization": ["json"],
      "readonly": true
    }}
  ],
  "input_types": {{ "types": [] }},
  "output_types": {{
    "types": [
      {{
        "kind": "primitive",
        "name": "std::string::String",
        "description": "String"
      }},
      {{
        "kind": "struct",
        "name": "{type_name}",
        "fields": {{
          "named": [
            {{
              "name": "value",
              "type": {{ "name": "std::string::String" }},
              "required": true
            }}
          ]
        }}
      }}
    ]
  }}
}}"#
    );
    fs::write(path, schema).unwrap();
}

#[test]
fn ts_output_into_fresh_directory() {
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("brand-new-dir");
    let schema = demo_schema();
    let out = run(&[
        "codegen",
        "--language",
        "typescript",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "exit={:?}\nstderr:\n{}",
        out.status.code(),
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(target.is_dir(), "expected fresh dir to be created");
    assert!(target.join("generated.ts").is_file());
    assert!(target.join("generated.transport.ts").is_file());
}

#[test]
fn python_output_into_fresh_directory() {
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    let schema = demo_schema();
    let out = run(&[
        "codegen",
        "--language",
        "python",
        "--format=false",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "exit={:?}\nstderr:\n{}",
        out.status.code(),
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(target.is_dir());
    assert!(target.join("generated.py").is_file());
    assert!(target.join("__init__.py").is_file());
}

#[test]
fn python_directory_output_removes_stale_generated_files() {
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    fs::create_dir_all(target.join("legacy")).unwrap();
    fs::write(
        target.join("legacy/__init__.py"),
        "\"\"\"\nDO NOT MODIFY THIS FILE MANUALLY\nThis file was generated by reflectapi-cli\n\"\"\"\n",
    )
    .unwrap();
    fs::write(target.join("user_notes.py"), "# hand written\n").unwrap();

    let schema_one = tmp.path().join("schema-one.json");
    let schema_two = tmp.path().join("schema-two.json");
    write_minimal_python_schema(&schema_one, "first::child::Thing");
    write_minimal_python_schema(&schema_two, "second::Thing");

    let out = run(&[
        "codegen",
        "--language",
        "python",
        "--format=false",
        "--schema",
        schema_one.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(
        !target.join("legacy/__init__.py").exists(),
        "pre-manifest generated files should be removed by header scan"
    );
    assert!(target.join("first/child/__init__.py").is_file());
    assert!(target.join("user_notes.py").is_file());

    let out = run(&[
        "codegen",
        "--language",
        "python",
        "--format=false",
        "--schema",
        schema_two.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(
        !target.join("first/child/__init__.py").exists(),
        "manifest-listed files absent from the new generation should be removed"
    );
    assert!(target.join("second/__init__.py").is_file());
    assert!(target.join("user_notes.py").is_file());

    let manifest = fs::read_to_string(target.join(".reflectapi-generated-files")).unwrap();
    assert!(manifest.contains("second/__init__.py"));
    assert!(!manifest.contains("first/child/__init__.py"));
}

#[cfg(unix)]
#[test]
fn python_legacy_cleanup_skips_symlinked_directories() {
    use std::os::unix::fs::symlink;

    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    let external = tmp.path().join("external");
    fs::create_dir_all(&target).unwrap();
    fs::create_dir_all(&external).unwrap();
    fs::write(
        external.join("__init__.py"),
        "\"\"\"\nDO NOT MODIFY THIS FILE MANUALLY\nThis file was generated by reflectapi-cli\n\"\"\"\n",
    )
    .unwrap();
    symlink(&external, target.join("linked")).unwrap();

    let schema = tmp.path().join("schema.json");
    write_minimal_python_schema(&schema, "current::Thing");

    let out = run(&[
        "codegen",
        "--language",
        "python",
        "--format=false",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(
        external.join("__init__.py").is_file(),
        "legacy cleanup should not follow directory symlinks out of the output tree"
    );
    assert!(target.join("linked").is_symlink());
    assert!(target.join("current/__init__.py").is_file());
}

#[cfg(unix)]
#[test]
fn python_format_falls_back_when_ruff_is_missing() {
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    let empty_path = tmp.path().join("bin");
    fs::create_dir_all(&empty_path).unwrap();

    let schema = tmp.path().join("schema.json");
    write_minimal_python_schema(&schema, "current::Thing");

    let out = run_with_path(
        &[
            "codegen",
            "--language",
            "python",
            "--schema",
            schema.to_str().unwrap(),
            "--output",
            target.to_str().unwrap(),
        ],
        &empty_path,
    );
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(target.join("current/__init__.py").is_file());
}

#[cfg(unix)]
#[test]
fn python_format_false_does_not_require_ruff() {
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    let empty_path = tmp.path().join("bin");
    fs::create_dir_all(&empty_path).unwrap();

    let schema = tmp.path().join("schema.json");
    write_minimal_python_schema(&schema, "current::Thing");

    let out = run_with_path(
        &[
            "codegen",
            "--language",
            "python",
            "--format=false",
            "--schema",
            schema.to_str().unwrap(),
            "--output",
            target.to_str().unwrap(),
        ],
        &empty_path,
    );
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(target.join("current/__init__.py").is_file());
}

#[cfg(unix)]
#[test]
fn python_format_reports_ruff_failures() {
    use std::os::unix::fs::PermissionsExt;

    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("python-client");
    let bin = tmp.path().join("bin");
    fs::create_dir_all(&bin).unwrap();

    let ruff = bin.join("ruff");
    fs::write(&ruff, "#!/bin/sh\necho 'ruff exploded' >&2\nexit 2\n").unwrap();
    let mut permissions = fs::metadata(&ruff).unwrap().permissions();
    permissions.set_mode(0o755);
    fs::set_permissions(&ruff, permissions).unwrap();

    let schema = tmp.path().join("schema.json");
    write_minimal_python_schema(&schema, "current::Thing");

    let out = run_with_path(
        &[
            "codegen",
            "--language",
            "python",
            "--schema",
            schema.to_str().unwrap(),
            "--output",
            target.to_str().unwrap(),
        ],
        &bin,
    );
    assert!(
        !out.status.success(),
        "expected ruff failure to fail codegen"
    );
    let stderr = String::from_utf8_lossy(&out.stderr);
    assert!(stderr.contains("failed to format generated Python code with `ruff format`"));
    assert!(stderr.contains("command failed with exit code"));
    assert!(stderr.contains("Fix Ruff or pass `--format=false`"));
}

#[test]
fn ts_output_to_file_path_writes_siblings() {
    // --output …/generated.ts should still work; transport file lands
    // alongside it in the parent directory.
    let tmp = tempfile::tempdir().unwrap();
    let target = tmp.path().join("generated.ts");
    let schema = demo_schema();
    let out = run(&[
        "codegen",
        "--language",
        "typescript",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        target.to_str().unwrap(),
    ]);
    assert!(
        out.status.success(),
        "stderr:\n{}",
        String::from_utf8_lossy(&out.stderr)
    );
    assert!(target.is_file(), "primary file at requested path");
    assert!(tmp.path().join("generated.transport.ts").is_file());
}

#[test]
fn ts_stdout_emits_primary_file_not_transport() {
    // --output - should print generated.ts (the API surface), not
    // generated.transport.ts (the helper). BTreeMap ordering would
    // pick the latter alphabetically.
    let schema = demo_schema();
    let out = run(&[
        "codegen",
        "--language",
        "typescript",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        "-",
    ]);
    assert!(out.status.success());
    let stdout = String::from_utf8_lossy(&out.stdout);
    // generated.ts contains the public `client` factory; the
    // transport file does not.
    assert!(
        stdout.contains("export function client(") || stdout.contains("export function client "),
        "expected stdout to be generated.ts (with the `client` factory). got:\n{stdout}",
    );
}

#[test]
fn python_stdout_emits_generated_not_init() {
    let schema = demo_schema();
    let out = run(&[
        "codegen",
        "--language",
        "python",
        "--format=false",
        "--schema",
        schema.to_str().unwrap(),
        "--output",
        "-",
    ]);
    assert!(out.status.success());
    let stdout = String::from_utf8_lossy(&out.stdout);
    // __init__.py is a package-root shim; generated.py is the flat
    // compatibility facade and should include model re-exports.
    assert!(
        stdout.contains("from ._rebuild import rebuild_models")
            && stdout.contains("from .myapi.proto import"),
        "expected stdout to be generated.py compatibility facade. got:\n{stdout}",
    );
}