aperture-cli 0.1.9

Dynamic CLI generator for OpenAPI specifications
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
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
#![cfg(feature = "integration")]
// These lints are overly pedantic for integration tests
#![allow(clippy::too_many_lines)]

mod common;
mod test_helpers;

use common::aperture_cmd;
use predicates::prelude::*;
use std::fs;
use tempfile::TempDir;
use wiremock::matchers::{method, path};
use wiremock::{Mock, MockServer, ResponseTemplate};

/// Creates a test `OpenAPI` spec with servers defined
const fn create_test_spec_with_servers() -> &'static str {
    r"openapi: 3.0.0
info:
  title: Test API
  version: 1.0.0
servers:
  - url: https://api.example.com
  - url: https://staging.example.com
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      x-aperture-secret:
        source: env
        name: TEST_API_KEY
paths:
  /users/{id}:
    get:
      tags:
        - users
      operationId: getUserById
      summary: Get user by ID
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
"
}

/// Creates a test `OpenAPI` spec without servers (for fallback testing)
const fn create_test_spec_without_servers() -> &'static str {
    r"openapi: 3.0.0
info:
  title: Test API No Servers
  version: 1.0.0
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      x-aperture-secret:
        source: env
        name: TEST_API_KEY
paths:
  /users/{id}:
    get:
      tags:
        - users
      operationId: getUserById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
"
}

#[tokio::test]
async fn test_base_url_priority_hierarchy() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file = temp_dir.path().join("test-spec.yaml");

    // Create spec with default server URL
    fs::write(&spec_file, create_test_spec_with_servers()).unwrap();

    // Add the spec
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "test-api", spec_file.to_str().unwrap()])
        .assert()
        .success();

    let mock_server = MockServer::start().await;

    // Set up mock response (not used in this test since all requests are --dry-run)
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(0) // No actual requests in dry-run mode
        .mount(&mock_server)
        .await;

    // Test 1: Default (spec base URL) - should use https://api.example.com from spec
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "api",
            "test-api",
            "--dry-run",
            "users",
            "get-user-by-id",
            "--id",
            "123",
        ])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let dry_run: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(dry_run["url"]
        .as_str()
        .unwrap()
        .starts_with("https://api.example.com"));

    // Test 2: Environment variable override (higher priority)
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_BASE_URL", mock_server.uri())
        .args([
            "api",
            "test-api",
            "--dry-run",
            "users",
            "get-user-by-id",
            "--id",
            "123",
        ])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let dry_run: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(dry_run["url"]
        .as_str()
        .unwrap()
        .starts_with(&mock_server.uri()));

    // Test 3: Config override (should override env var)
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "https://config-override.example.com",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Set base URL for 'test-api': https://config-override.example.com",
        ));

    // Verify config override takes precedence over env var
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_BASE_URL", mock_server.uri())
        .args([
            "api",
            "test-api",
            "--dry-run",
            "users",
            "get-user-by-id",
            "--id",
            "123",
        ])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let dry_run: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(dry_run["url"]
        .as_str()
        .unwrap()
        .starts_with("https://config-override.example.com"));

    // Test 4: Environment-specific config (highest priority after explicit)
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "--env",
            "staging",
            "https://staging-env.example.com",
        ])
        .assert()
        .success();

    // With APERTURE_ENV set, environment-specific URL should win
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_BASE_URL", mock_server.uri())
        .env("APERTURE_ENV", "staging")
        .args([
            "api",
            "test-api",
            "--dry-run",
            "users",
            "get-user-by-id",
            "--id",
            "123",
        ])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let dry_run: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(dry_run["url"]
        .as_str()
        .unwrap()
        .starts_with("https://staging-env.example.com"));
}

#[test]
fn test_config_url_management_commands() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file = temp_dir.path().join("test-spec.yaml");

    // Create and add spec
    fs::write(&spec_file, create_test_spec_with_servers()).unwrap();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "test-api", spec_file.to_str().unwrap()])
        .assert()
        .success();

    // Test set-url command
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "https://custom.example.com",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Set base URL for 'test-api': https://custom.example.com",
        ));

    // Test set-url with environment
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "--env",
            "prod",
            "https://prod.example.com",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Set base URL for 'test-api' in environment 'prod': https://prod.example.com",
        ));

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "--env",
            "dev",
            "https://dev.example.com",
        ])
        .assert()
        .success();

    // Test get-url command
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "get-url", "test-api"])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Base URL configuration for 'test-api':",
        ))
        .stdout(predicate::str::contains(
            "Base override: https://custom.example.com",
        ))
        .stdout(predicate::str::contains("prod: https://prod.example.com"))
        .stdout(predicate::str::contains("dev: https://dev.example.com"))
        .stdout(predicate::str::contains(
            "Resolved URL (current): https://custom.example.com",
        ));

    // Test get-url with environment set
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_ENV", "prod")
        .args(["config", "get-url", "test-api"])
        .assert()
        .success()
        .stdout(predicate::str::contains("(Using APERTURE_ENV=prod)"));

    // Test list-urls command
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "list-urls"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Configured base URLs:"))
        .stdout(predicate::str::contains("test-api:"))
        .stdout(predicate::str::contains(
            "Base override: https://custom.example.com",
        ))
        .stdout(predicate::str::contains("prod: https://prod.example.com"))
        .stdout(predicate::str::contains("dev: https://dev.example.com"));
}

#[test]
fn test_config_url_error_handling() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();

    // Test set-url on nonexistent spec
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "set-url", "nonexistent", "https://example.com"])
        .assert()
        .failure()
        .stderr(predicate::str::contains(
            "API specification 'nonexistent' not found",
        ));

    // Test get-url on nonexistent spec
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "get-url", "nonexistent"])
        .assert()
        .failure()
        .stderr(predicate::str::contains(
            "API specification 'nonexistent' not found",
        ));

    // Test list-urls with no configurations
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "list-urls"])
        .assert()
        .success()
        .stdout(predicate::str::contains("No base URLs configured."));
}

#[tokio::test]
async fn test_base_url_fallback_behavior() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file = temp_dir.path().join("test-spec.yaml");

    // Create spec WITHOUT servers (to test fallback)
    fs::write(&spec_file, create_test_spec_without_servers()).unwrap();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "add",
            "no-servers-api",
            spec_file.to_str().unwrap(),
        ])
        .assert()
        .success();

    // Test fallback URL when no configuration exists
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "api",
            "no-servers-api",
            "--dry-run",
            "users",
            "get-user-by-id",
            "--id",
            "123",
        ])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let dry_run: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert!(dry_run["url"]
        .as_str()
        .unwrap()
        .starts_with("https://api.example.com"));
}

#[tokio::test]
async fn test_describe_json_with_base_url_resolution() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file = temp_dir.path().join("test-spec.yaml");

    // Create spec with servers
    fs::write(&spec_file, create_test_spec_with_servers()).unwrap();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "test-api", spec_file.to_str().unwrap()])
        .assert()
        .success();

    // Test describe-json shows spec default URL
    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["api", "test-api", "--describe-json"])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let manifest: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert_eq!(
        manifest["api"]["base_url"].as_str().unwrap(),
        "https://api.example.com"
    );

    // Set custom URL and verify describe-json reflects it
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "https://custom.example.com",
        ])
        .assert()
        .success();

    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["api", "test-api", "--describe-json"])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let manifest: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert_eq!(
        manifest["api"]["base_url"].as_str().unwrap(),
        "https://custom.example.com"
    );

    // Test environment-specific URL in describe-json
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "test-api",
            "--env",
            "staging",
            "https://staging.example.com",
        ])
        .assert()
        .success();

    let output = aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_ENV", "staging")
        .args(["api", "test-api", "--describe-json"])
        .output()
        .unwrap();

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    let manifest: serde_json::Value = serde_json::from_str(&stdout).unwrap();
    assert_eq!(
        manifest["api"]["base_url"].as_str().unwrap(),
        "https://staging.example.com"
    );
}

#[tokio::test]
async fn test_backward_compatibility() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file = temp_dir.path().join("test-spec.yaml");

    // Create spec with servers
    fs::write(&spec_file, create_test_spec_with_servers()).unwrap();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "test-api", spec_file.to_str().unwrap()])
        .assert()
        .success();

    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/users/123"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    // Test that existing APERTURE_BASE_URL environment variable still works
    // (this is how users configured base URLs before the new system)
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .env("APERTURE_BASE_URL", mock_server.uri())
        .args(["api", "test-api", "users", "get-user-by-id", "--id", "123"])
        .assert()
        .success()
        .stdout(predicate::str::contains("\"id\": \"123\""));
}

#[test]
fn test_multiple_apis_url_management() {
    let temp_dir = TempDir::new().unwrap();
    let config_dir = temp_dir.path().to_path_buf();
    let spec_file1 = temp_dir.path().join("api1-spec.yaml");
    let spec_file2 = temp_dir.path().join("api2-spec.yaml");

    // Create two different specs
    fs::write(&spec_file1, create_test_spec_with_servers()).unwrap();
    fs::write(&spec_file2, create_test_spec_without_servers()).unwrap();

    // Add both specs
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "api1", spec_file1.to_str().unwrap()])
        .assert()
        .success();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "add", "api2", spec_file2.to_str().unwrap()])
        .assert()
        .success();

    // Configure URLs for both APIs
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "api1",
            "https://api1-custom.example.com",
        ])
        .assert()
        .success();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "api1",
            "--env",
            "prod",
            "https://api1-prod.example.com",
        ])
        .assert()
        .success();

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args([
            "config",
            "set-url",
            "api2",
            "https://api2-custom.example.com",
        ])
        .assert()
        .success();

    // Test list-urls shows both APIs
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "list-urls"])
        .assert()
        .success()
        .stdout(predicate::str::contains("api1:"))
        .stdout(predicate::str::contains("api2:"))
        .stdout(predicate::str::contains("https://api1-custom.example.com"))
        .stdout(predicate::str::contains("https://api1-prod.example.com"))
        .stdout(predicate::str::contains("https://api2-custom.example.com"));

    // Test that each API resolves its own URL correctly
    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "get-url", "api1"])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Resolved URL (current): https://api1-custom.example.com",
        ));

    aperture_cmd()
        .env("APERTURE_CONFIG_DIR", config_dir.to_str().unwrap())
        .args(["config", "get-url", "api2"])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Resolved URL (current): https://api2-custom.example.com",
        ));
}

#[test]
fn test_help_includes_new_commands() {
    // Test that help shows the new URL management commands
    aperture_cmd()
        .args(["config", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("set-url"))
        .stdout(predicate::str::contains("get-url"))
        .stdout(predicate::str::contains("list-urls"));

    // Test individual command help
    aperture_cmd()
        .args(["config", "set-url", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Set the base URL for an API specification",
        ))
        .stdout(predicate::str::contains("--env"));

    aperture_cmd()
        .args(["config", "get-url", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "Display the base URL configuration",
        ));

    aperture_cmd()
        .args(["config", "list-urls", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Display all configured base URLs"));
}