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
mod test_helpers;

use aperture_cli::cache::models::{
    CachedApertureSecret, CachedCommand, CachedParameter, CachedSecurityScheme, CachedSpec,
    PaginationInfo,
};
use aperture_cli::cli::OutputFormat;
use aperture_cli::constants;
use aperture_cli::engine::executor::execute_request;
use clap::{Arg, Command};
use std::collections::HashMap;
use wiremock::matchers::{header, method, path};
use wiremock::{Mock, MockServer, ResponseTemplate};

// Helper macros for creating test data
macro_rules! cached_parameter {
    ($name:expr, $location:expr, $required:expr) => {
        CachedParameter {
            name: $name.to_string(),
            location: $location.to_string(),
            required: $required,
            description: None,
            schema: Some(r#"{"type": "string"}"#.to_string()),
            schema_type: Some("string".to_string()),
            format: None,
            default_value: None,
            enum_values: vec![],
            example: None,
        }
    };
}

macro_rules! cached_command {
    ($name:expr, $op_id:expr, $method:expr, $path:expr, $params:expr, $security:expr) => {
        CachedCommand {
            name: $name.to_string(),
            description: None,
            summary: None,
            operation_id: $op_id.to_string(),
            method: $method.to_string(),
            path: $path.to_string(),
            parameters: $params,
            request_body: None,
            responses: vec![],
            security_requirements: $security,
            tags: vec![$name.to_string()],
            deprecated: false,
            external_docs_url: None,
            examples: vec![],
            display_group: None,
            display_name: None,
            aliases: vec![],
            hidden: false,
            pagination: PaginationInfo::default(),
        }
    };
}

fn create_secure_test_spec(bearer_env_var: &str, api_key_env_var: &str) -> CachedSpec {
    let mut security_schemes = HashMap::new();

    // Add Bearer token authentication
    security_schemes.insert(
        "bearerAuth".to_string(),
        CachedSecurityScheme {
            name: "bearerAuth".to_string(),
            scheme_type: "http".to_string(),
            scheme: Some(constants::AUTH_SCHEME_BEARER.to_string()),
            location: Some("header".to_string()),
            parameter_name: Some(constants::HEADER_AUTHORIZATION.to_string()),
            description: None,
            bearer_format: None,
            aperture_secret: Some(CachedApertureSecret {
                source: "env".to_string(),
                name: bearer_env_var.to_string(),
            }),
        },
    );

    // Add API Key authentication
    security_schemes.insert(
        "apiKeyAuth".to_string(),
        CachedSecurityScheme {
            name: "apiKeyAuth".to_string(),
            scheme_type: "apiKey".to_string(),
            scheme: None,
            location: Some("header".to_string()),
            parameter_name: Some("X-API-Key".to_string()),
            description: None,
            bearer_format: None,
            aperture_secret: Some(CachedApertureSecret {
                source: "env".to_string(),
                name: api_key_env_var.to_string(),
            }),
        },
    );

    CachedSpec {
        cache_format_version: aperture_cli::cache::models::CACHE_FORMAT_VERSION,
        name: "secure-api".to_string(),
        version: "1.0.0".to_string(),
        commands: vec![
            {
                let mut cmd = cached_command!(
                    "users",
                    "getUserById",
                    "GET",
                    "/users/{id}",
                    vec![cached_parameter!("id", "path", true)],
                    vec!["bearerAuth".to_string()]
                );
                cmd.description = Some("Get user by ID".to_string());
                cmd
            },
            {
                let mut cmd = cached_command!(
                    "data",
                    "getData",
                    "GET",
                    "/data",
                    vec![],
                    vec!["apiKeyAuth".to_string()]
                );
                cmd.description = Some("Get data".to_string());
                cmd
            },
            {
                let mut cmd = cached_command!(
                    "public",
                    "getPublicData",
                    "GET",
                    "/public",
                    vec![],
                    vec![] // No authentication required
                );
                cmd.description = Some("Get public data".to_string());
                cmd
            },
        ],
        base_url: Some("https://api.example.com".to_string()),
        servers: vec!["https://api.example.com".to_string()],
        security_schemes,
        skipped_endpoints: vec![],
        server_variables: HashMap::new(),
    }
}

#[tokio::test]
async fn test_bearer_token_authentication() {
    let mock_server = MockServer::start().await;
    let bearer_env = "BEARER_AUTH_TEST_TOKEN";
    let api_key_env = "BEARER_AUTH_TEST_API_KEY";

    // Clean up any existing env var first
    std::env::remove_var(bearer_env);
    // Set up environment variable
    std::env::set_var(bearer_env, "secret-bearer-token");

    // Configure mock to expect Bearer token
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .and(header("Authorization", "Bearer secret-bearer-token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("users")
            .subcommand(Command::new("get-user-by-id").arg(Arg::new("id").required(true))),
    );

    let matches = command.get_matches_from(vec!["api", "users", "get-user-by-id", "123"]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;
    assert!(result.is_ok());

    // Clean up
    std::env::remove_var(bearer_env);
}

#[tokio::test]
async fn test_api_key_authentication() {
    let mock_server = MockServer::start().await;
    let bearer_env = "API_KEY_TEST_BEARER";
    let api_key_env = "API_KEY_TEST_KEY";

    // Set up environment variable
    std::env::set_var(api_key_env, "my-secret-api-key");

    // Configure mock to expect API key header
    Mock::given(method("GET"))
        .and(path("/data"))
        .and(header("X-API-Key", "my-secret-api-key"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": "sensitive information"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command =
        Command::new("api").subcommand(Command::new("data").subcommand(Command::new("get-data")));

    let matches = command.get_matches_from(vec!["api", "data", "get-data"]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;
    assert!(result.is_ok());

    // Clean up
    std::env::remove_var(api_key_env);
}

#[tokio::test]
async fn test_missing_authentication_environment_variable() {
    let mock_server = MockServer::start().await;
    let bearer_env = "MISSING_AUTH_TEST_TOKEN";
    let api_key_env = "MISSING_AUTH_TEST_KEY";

    // Ensure the environment variable is not set (multiple remove attempts for safety)
    std::env::remove_var(bearer_env);
    std::env::remove_var(bearer_env);

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("users")
            .subcommand(Command::new("get-user-by-id").arg(Arg::new("id").required(true))),
    );

    let matches = command.get_matches_from(vec!["api", "users", "get-user-by-id", "123"]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;

    match result {
        Ok(_) => panic!("Expected error but got success"),
        Err(e) => {
            let error_msg = e.to_string();
            assert!(error_msg.contains(&format!("Environment variable '{bearer_env}'")));
            assert!(error_msg.contains("is not set"));
        }
    }
}

#[tokio::test]
async fn test_custom_headers_with_literal_values() {
    let mock_server = MockServer::start().await;
    let bearer_env = "LITERAL_HEADERS_TEST_TOKEN";
    let api_key_env = "LITERAL_HEADERS_TEST_KEY";

    // Configure mock to expect custom headers
    Mock::given(method("GET"))
        .and(path("/public"))
        .and(header("X-Request-ID", "12345"))
        .and(header("X-Client-Version", "1.0.0"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": "response"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("public").subcommand(
            Command::new("get-public-data").arg(
                Arg::new("header")
                    .long("header")
                    .short('H')
                    .action(clap::ArgAction::Append),
            ),
        ),
    );

    let matches = command.get_matches_from(vec![
        "api",
        "public",
        "get-public-data",
        "--header",
        "X-Request-ID: 12345",
        "-H",
        "X-Client-Version: 1.0.0",
    ]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;
    assert!(result.is_ok());
}

#[tokio::test]
async fn test_custom_headers_with_environment_variable_expansion() {
    let mock_server = MockServer::start().await;
    let bearer_env = "ENV_HEADERS_TEST_TOKEN";
    let api_key_env = "ENV_HEADERS_TEST_KEY";
    let request_id_env = "ENV_HEADERS_REQUEST_ID";
    let client_version_env = "ENV_HEADERS_CLIENT_VERSION";

    // Set up environment variables
    std::env::set_var(request_id_env, "env-request-id-123");
    std::env::set_var(client_version_env, "2.1.0");

    // Configure mock to expect headers with expanded values
    Mock::given(method("GET"))
        .and(path("/public"))
        .and(header("X-Request-ID", "env-request-id-123"))
        .and(header("X-Client-Version", "2.1.0"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": "response"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("public").subcommand(
            Command::new("get-public-data").arg(
                Arg::new("header")
                    .long("header")
                    .short('H')
                    .action(clap::ArgAction::Append),
            ),
        ),
    );

    let matches = command.get_matches_from(vec![
        "api",
        "public",
        "get-public-data",
        "--header",
        &format!("X-Request-ID: ${{{request_id_env}}}"),
        "-H",
        &format!("X-Client-Version: ${{{client_version_env}}}"),
    ]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;
    assert!(result.is_ok());

    // Clean up
    std::env::remove_var(request_id_env);
    std::env::remove_var(client_version_env);
}

#[tokio::test]
async fn test_authentication_and_custom_headers_combined() {
    let mock_server = MockServer::start().await;
    let bearer_env = "COMBINED_TEST_BEARER_TOKEN";
    let api_key_env = "COMBINED_TEST_API_KEY";
    let trace_id_env = "COMBINED_TEST_TRACE_ID";

    // Set up environment variables
    std::env::set_var(bearer_env, "combined-test-token");
    std::env::set_var(trace_id_env, "trace-abc-123");

    // Configure mock to expect both authentication and custom headers
    Mock::given(method("GET"))
        .and(path("/users/999"))
        .and(header("Authorization", "Bearer combined-test-token"))
        .and(header("X-Trace-ID", "trace-abc-123"))
        .and(header("X-Custom", "custom-value"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "id": "999",
            "name": "Combined Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("users").subcommand(
            Command::new("get-user-by-id")
                .arg(Arg::new("id").required(true))
                .arg(
                    Arg::new("header")
                        .long("header")
                        .short('H')
                        .action(clap::ArgAction::Append),
                ),
        ),
    );

    let matches = command.get_matches_from(vec![
        "api",
        "users",
        "get-user-by-id",
        "999",
        "--header",
        &format!("X-Trace-ID: ${{{trace_id_env}}}"),
        "-H",
        "X-Custom: custom-value",
    ]);

    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;
    assert!(result.is_ok());

    // Clean up
    std::env::remove_var(bearer_env);
    std::env::remove_var(trace_id_env);
}

#[tokio::test]
async fn test_invalid_custom_header_format() {
    let bearer_env = "INVALID_HEADER_TEST_TOKEN";
    let api_key_env = "INVALID_HEADER_TEST_KEY";
    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("public").subcommand(
            Command::new("get-public-data").arg(
                Arg::new("header")
                    .long("header")
                    .action(clap::ArgAction::Append),
            ),
        ),
    );

    let matches = command.get_matches_from(vec![
        "api",
        "public",
        "get-public-data",
        "--header",
        "InvalidHeaderWithoutColon",
    ]);

    let result = execute_request(
        &spec,
        &matches,
        Some("http://localhost"),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;

    assert!(result.is_err());
    let error_msg = result.unwrap_err().to_string();
    assert!(error_msg.contains("Invalid header format"));
    assert!(error_msg.contains("Expected 'Name: Value'"));
}

#[tokio::test]
async fn test_empty_header_name() {
    let bearer_env = "EMPTY_HEADER_TEST_TOKEN";
    let api_key_env = "EMPTY_HEADER_TEST_KEY";
    let spec = create_secure_test_spec(bearer_env, api_key_env);

    let command = Command::new("api").subcommand(
        Command::new("public").subcommand(
            Command::new("get-public-data").arg(
                Arg::new("header")
                    .long("header")
                    .action(clap::ArgAction::Append),
            ),
        ),
    );

    let matches = command.get_matches_from(vec![
        "api",
        "public",
        "get-public-data",
        "--header",
        ": value-without-name",
    ]);

    let result = execute_request(
        &spec,
        &matches,
        Some("http://localhost"),
        false,
        None,
        None,
        &OutputFormat::Json,
        None,
        None,  // cache_config
        false, // capture_output
        None,  // retry_context
    )
    .await;

    assert!(result.is_err());
    let error_msg = result.unwrap_err().to_string();
    assert!(error_msg.contains("Header name cannot be empty"));
}