cargo-rustapi 0.1.443

The official CLI tool for the RustAPI framework. Scaffold new projects, run development servers, and manage database migrations.
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
//! Integration tests for cargo-rustapi CLI

use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::tempdir;

/// Helper to get the cargo-rustapi binary
fn cargo_rustapi() -> Command {
    assert_cmd::cargo::cargo_bin_cmd!("cargo-rustapi")
}

mod new_command {
    use super::*;

    #[test]
    fn test_new_help() {
        cargo_rustapi()
            .arg("new")
            .arg("--help")
            .assert()
            .success()
            .stdout(predicate::str::contains("Create a new RustAPI project"));
    }

    #[test]
    fn test_new_minimal_template() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-minimal-project";
        let project_path = dir.path().join(project_name);

        // Change to temp directory and create project
        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--template", "minimal", "--yes"])
            .assert()
            .success();

        // Verify project structure
        assert!(project_path.exists(), "Project directory should exist");
        assert!(
            project_path.join("Cargo.toml").exists(),
            "Cargo.toml should exist"
        );
        assert!(
            project_path.join("src/main.rs").exists(),
            "src/main.rs should exist"
        );

        // Verify Cargo.toml content
        let cargo_content =
            fs::read_to_string(project_path.join("Cargo.toml")).expect("Failed to read Cargo.toml");
        assert!(
            cargo_content.contains("rustapi-rs"),
            "Cargo.toml should depend on rustapi-rs"
        );
    }

    #[test]
    fn test_new_api_template() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-api-project";
        let project_path = dir.path().join(project_name);

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--template", "api", "--yes"])
            .assert()
            .success();

        // Verify API project structure
        assert!(project_path.join("src/handlers").is_dir());
        assert!(project_path.join("src/models").is_dir());
        assert!(project_path.join("src/handlers/mod.rs").exists());
        assert!(project_path.join("src/handlers/items.rs").exists());
        assert!(project_path.join("src/models/mod.rs").exists());
    }

    #[test]
    fn test_new_with_features() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-features-project";
        let project_path = dir.path().join(project_name);

        cargo_rustapi()
            .current_dir(dir.path())
            .args([
                "new",
                project_name,
                "--template",
                "minimal",
                "--features",
                "extras-jwt,extras-cors",
                "--yes",
            ])
            .assert()
            .success();

        let cargo_content =
            fs::read_to_string(project_path.join("Cargo.toml")).expect("Failed to read Cargo.toml");
        assert!(
            cargo_content.contains("extras-jwt") && cargo_content.contains("extras-cors"),
            "Cargo.toml should include extras-jwt and extras-cors features"
        );
    }

    #[test]
    fn test_new_with_prod_api_preset() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-prod-preset-project";
        let project_path = dir.path().join(project_name);

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--preset", "prod-api", "--yes"])
            .assert()
            .success();

        let cargo_content =
            fs::read_to_string(project_path.join("Cargo.toml")).expect("Failed to read Cargo.toml");
        assert!(cargo_content.contains("extras-config"));
        assert!(cargo_content.contains("extras-cors"));
        assert!(cargo_content.contains("extras-rate-limit"));
        assert!(cargo_content.contains("extras-security-headers"));
        assert!(cargo_content.contains("extras-structured-logging"));
        assert!(cargo_content.contains("extras-timeout"));
    }

    #[test]
    fn test_new_with_ai_api_preset() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-ai-preset-project";
        let project_path = dir.path().join(project_name);

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--preset", "ai-api", "--yes"])
            .assert()
            .success();

        let cargo_content =
            fs::read_to_string(project_path.join("Cargo.toml")).expect("Failed to read Cargo.toml");
        assert!(cargo_content.contains("protocol-toon"));
        assert!(cargo_content.contains("extras-config"));
        assert!(cargo_content.contains("extras-timeout"));
        assert!(cargo_content.contains("extras-structured-logging"));
    }

    #[test]
    fn test_new_with_realtime_api_preset() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "test-realtime-preset-project";
        let project_path = dir.path().join(project_name);

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--preset", "realtime-api", "--yes"])
            .assert()
            .success();

        let cargo_content =
            fs::read_to_string(project_path.join("Cargo.toml")).expect("Failed to read Cargo.toml");
        assert!(cargo_content.contains("protocol-ws"));
        assert!(cargo_content.contains("extras-cors"));
        assert!(cargo_content.contains("extras-timeout"));
        assert!(cargo_content.contains("extras-structured-logging"));
    }

    #[test]
    fn test_new_existing_directory_fails() {
        let dir = tempdir().expect("Failed to create temp dir");
        let project_name = "existing-dir";

        // Create the directory first
        fs::create_dir(dir.path().join(project_name)).expect("Failed to create dir");

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", project_name, "--template", "minimal", "--yes"])
            .assert()
            .failure()
            .stderr(predicate::str::contains("already exists"));
    }

    #[test]
    fn test_new_invalid_name_fails() {
        let dir = tempdir().expect("Failed to create temp dir");

        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", "invalid/name", "--template", "minimal", "--yes"])
            .assert()
            .failure();
    }
}

mod doctor_command {
    use super::*;

    #[test]
    fn test_doctor_help() {
        cargo_rustapi()
            .arg("doctor")
            .arg("--help")
            .assert()
            .success()
            .stdout(predicate::str::contains("environment health"));
    }

    #[test]
    fn test_doctor_runs() {
        // Doctor should run and check for tools
        // It will succeed even if some tools are missing (just warns)
        cargo_rustapi().arg("doctor").assert().success();
    }

    #[test]
    fn test_doctor_checks_rust() {
        let output = cargo_rustapi()
            .arg("doctor")
            .output()
            .expect("Failed to run doctor");

        let stdout = String::from_utf8_lossy(&output.stdout);
        assert!(
            stdout.contains("Rust compiler") || stdout.contains("rustc"),
            "Doctor should check for Rust compiler"
        );
    }
}

mod bench_command {
    use super::*;

    #[test]
    fn test_bench_help() {
        cargo_rustapi()
            .args(["bench", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("benchmark workflow"));
    }
}

mod observability_command {
    use super::*;

    #[test]
    fn test_observability_help() {
        cargo_rustapi()
            .args(["observability", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("observability"));
    }

    #[test]
    fn test_observability_runs_against_repo() {
        cargo_rustapi()
            .args(["observability", "--path", "."])
            .assert()
            .success()
            .stdout(predicate::str::contains("Observability workflow assets"));
    }
}

#[cfg(feature = "replay")]
mod replay_command {
    use super::*;

    #[test]
    fn test_replay_help() {
        cargo_rustapi()
            .args(["replay", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("Replay debugging commands"));
    }
}

mod generate_command {
    use super::*;

    #[test]
    fn test_generate_help() {
        cargo_rustapi()
            .args(["generate", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("Generate code from templates"));
    }

    #[test]
    fn test_generate_handler() {
        let dir = tempdir().expect("Failed to create temp dir");

        // First create a minimal project
        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", "test-gen", "--template", "minimal", "--yes"])
            .assert()
            .success();

        // Generate a handler
        cargo_rustapi()
            .current_dir(dir.path().join("test-gen"))
            .args(["generate", "handler", "users"])
            .assert()
            .success();

        // Verify handler was created
        let handler_path = dir.path().join("test-gen/src/handlers/users.rs");
        assert!(handler_path.exists(), "Handler file should be created");

        let content = fs::read_to_string(&handler_path).expect("Failed to read handler");
        assert!(content.contains("pub async fn list"));
        assert!(content.contains("pub async fn get"));
        assert!(content.contains("pub async fn create"));
    }

    #[test]
    fn test_generate_model() {
        let dir = tempdir().expect("Failed to create temp dir");

        // First create a minimal project
        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", "test-model", "--template", "minimal", "--yes"])
            .assert()
            .success();

        // Generate a model (model name is used as-is, should be PascalCase)
        cargo_rustapi()
            .current_dir(dir.path().join("test-model"))
            .args(["generate", "model", "User"])
            .assert()
            .success();

        // Model file is lowercase
        let model_path = dir.path().join("test-model/src/models/user.rs");
        assert!(model_path.exists(), "Model file should be created");

        let content = fs::read_to_string(&model_path).expect("Failed to read model");
        // The generate command uses the name as-is for struct name
        assert!(content.contains("struct User"));
        assert!(content.contains("impl User"));
    }
}

mod watch_command {
    use super::*;

    #[test]
    fn test_watch_help() {
        cargo_rustapi()
            .arg("watch")
            .arg("--help")
            .assert()
            .success()
            .stdout(predicate::str::contains("Watch for changes"));
    }

    #[test]
    fn test_watch_accepts_command_flag() {
        cargo_rustapi()
            .args(["watch", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("--command"))
            .stdout(predicate::str::contains("--clear"));
    }

    #[test]
    fn test_watch_accepts_extension_filter() {
        cargo_rustapi()
            .args(["watch", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("--extensions"));
    }

    #[test]
    fn test_watch_accepts_path_filter() {
        cargo_rustapi()
            .args(["watch", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("--watch-path"));
    }
}

mod migrate_command {
    use super::*;

    #[test]
    fn test_migrate_help() {
        cargo_rustapi()
            .args(["migrate", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("Database migration"));
    }

    #[test]
    fn test_migrate_run_help() {
        cargo_rustapi()
            .args(["migrate", "run", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("pending migrations"));
    }

    #[test]
    fn test_migrate_status_help() {
        cargo_rustapi()
            .args(["migrate", "status", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("migration status"));
    }

    #[test]
    fn test_migrate_create_help() {
        cargo_rustapi()
            .args(["migrate", "create", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("new migration"));
    }

    #[test]
    fn test_migrate_create_generates_files() {
        let dir = tempdir().expect("Failed to create temp dir");

        // Create a project first
        cargo_rustapi()
            .current_dir(dir.path())
            .args(["new", "test-migrate", "--template", "minimal", "--yes"])
            .assert()
            .success();

        // Create a migration
        cargo_rustapi()
            .current_dir(dir.path().join("test-migrate"))
            .args(["migrate", "create", "create_users_table"])
            .assert()
            .success();

        // Check migrations directory exists
        let migrations_dir = dir.path().join("test-migrate/migrations");
        assert!(migrations_dir.exists(), "migrations directory should exist");

        // Check that migration files were created
        let entries: Vec<_> = fs::read_dir(&migrations_dir)
            .expect("Failed to read migrations dir")
            .collect();
        assert!(!entries.is_empty(), "Migration files should be created");
    }

    #[test]
    fn test_migrate_revert_help() {
        cargo_rustapi()
            .args(["migrate", "revert", "--help"])
            .assert()
            .success()
            .stdout(predicate::str::contains("Revert"));
    }
}