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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
mod test_helpers;

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

/// Clean up all environment variables used in tests to avoid pollution between tests
fn cleanup_env_vars() {
    // Remove all test environment variables
    let test_env_vars = [
        "SPEC_BEARER_TOKEN",
        "CONFIG_BEARER_TOKEN",
        "SPEC_API_KEY",
        "CONFIG_API_KEY",
        "OTHER_API_BEARER_TOKEN",
        "OTHER_API_KEY",
        "MISSING_SPEC_BEARER_TOKEN",
        "MISSING_SPEC_API_KEY",
        "MISSING_CONFIG_BEARER_TOKEN",
        "MISSING_CONFIG_API_KEY",
        "MISSING_CONFIG_SPEC_BEARER_TOKEN",
        "MISSING_CONFIG_SPEC_API_KEY",
    ];

    for var in &test_env_vars {
        std::env::remove_var(var);
    }
}

/// Creates a test API spec with authentication schemes for priority testing
fn create_test_spec_with_auth(bearer_env_var: &str, api_key_env_var: &str) -> CachedSpec {
    let mut security_schemes = HashMap::new();

    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(),
            }),
        },
    );

    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: CACHE_FORMAT_VERSION,
        name: "test-api".to_string(),
        version: "1.0.0".to_string(),
        commands: vec![CachedCommand {
            name: "get-user-by-id".to_string(),
            description: Some("Get user by ID".to_string()),
            summary: None,
            operation_id: "getUserById".to_string(),
            method: "GET".to_string(),
            path: "/users/{id}".to_string(),
            parameters: vec![CachedParameter {
                name: "id".to_string(),
                location: "path".to_string(),
                required: true,
                description: Some("User ID".to_string()),
                schema: Some(r#"{"type": "string"}"#.to_string()),
                schema_type: Some("string".to_string()),
                format: None,
                default_value: None,
                enum_values: vec![],
                example: None,
            }],
            request_body: None,
            responses: vec![],
            security_requirements: vec!["bearerAuth".to_string(), "apiKeyAuth".to_string()],
            tags: vec!["users".to_string()],
            deprecated: false,
            external_docs_url: None,
            examples: vec![],
            display_group: None,
            display_name: None,
            aliases: vec![],
            hidden: false,
            pagination: PaginationInfo::default(),
        }],
        base_url: None,
        servers: vec![],
        security_schemes,
        skipped_endpoints: vec![],
        server_variables: HashMap::new(),
    }
}

/// Creates a global config with secret overrides
fn create_global_config_with_secrets(
    api_name: &str,
    bearer_config_env: &str,
    api_key_config_env: &str,
) -> GlobalConfig {
    let mut secrets = HashMap::new();
    secrets.insert(
        "bearerAuth".to_string(),
        ApertureSecret {
            source: SecretSource::Env,
            name: bearer_config_env.to_string(),
        },
    );
    secrets.insert(
        "apiKeyAuth".to_string(),
        ApertureSecret {
            source: SecretSource::Env,
            name: api_key_config_env.to_string(),
        },
    );

    let mut api_configs = HashMap::new();
    api_configs.insert(
        api_name.to_string(),
        ApiConfig {
            base_url_override: None,
            environment_urls: HashMap::new(),
            strict_mode: false,
            secrets,
            command_mapping: None,
        },
    );

    GlobalConfig {
        api_configs,
        default_timeout_secs: 30,
        agent_defaults: aperture_cli::config::models::AgentDefaults::default(),
        ..Default::default()
    }
}

/// Test that config-based secrets override x-aperture-secret extensions
#[tokio::test]
async fn test_config_secret_overrides_aperture_secret() {
    let mock_server = MockServer::start().await;

    // Use unique environment variable names for this test
    let test_id = "CONFIG_OVERRIDE_TEST";
    let spec_bearer_env = format!("{test_id}_SPEC_BEARER_TOKEN");
    let config_bearer_env = format!("{test_id}_CONFIG_BEARER_TOKEN");
    let spec_api_key_env = format!("{test_id}_SPEC_API_KEY");
    let config_api_key_env = format!("{test_id}_CONFIG_API_KEY");

    // Clean up any existing environment variables first
    cleanup_env_vars();
    // Clean up test-specific variables
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&config_bearer_env);
    std::env::remove_var(&spec_api_key_env);
    std::env::remove_var(&config_api_key_env);

    // Set up environment variables
    std::env::set_var(&spec_bearer_env, "spec-bearer-value");
    std::env::set_var(&config_bearer_env, "config-bearer-value");
    std::env::set_var(&spec_api_key_env, "spec-api-key-value");
    std::env::set_var(&config_api_key_env, "config-api-key-value");

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth(&spec_bearer_env, &spec_api_key_env);

    // Create global config that overrides the secrets
    let global_config =
        create_global_config_with_secrets("test-api", &config_bearer_env, &config_api_key_env);

    // Mock should expect config values, not spec values
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .and(header("Authorization", "Bearer config-bearer-value"))
        .and(header("X-API-Key", "config-api-key-value"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    // Create clap matches for the command
    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"]);

    // Execute request with global config
    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(result.is_ok(), "Request should succeed with config secrets");

    // Clean up environment variables
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&config_bearer_env);
    std::env::remove_var(&spec_api_key_env);
    std::env::remove_var(&config_api_key_env);
}

/// Test that x-aperture-secret extensions are used when no config secret exists
#[tokio::test]
async fn test_aperture_secret_used_when_no_config() {
    let mock_server = MockServer::start().await;

    // Use unique environment variable names for this test
    let test_id = "APERTURE_SECRET_TEST";
    let spec_bearer_env = format!("{test_id}_SPEC_BEARER_TOKEN");
    let spec_api_key_env = format!("{test_id}_SPEC_API_KEY");

    // Clean up any existing environment variables first
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&spec_api_key_env);

    // Set up only spec environment variables
    std::env::set_var(&spec_bearer_env, "spec-bearer-value");
    std::env::set_var(&spec_api_key_env, "spec-api-key-value");

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth(&spec_bearer_env, &spec_api_key_env);

    // No global config (empty)
    let global_config = GlobalConfig {
        api_configs: HashMap::new(),
        default_timeout_secs: 30,
        agent_defaults: aperture_cli::config::models::AgentDefaults::default(),
        ..Default::default()
    };

    // Mock should expect spec values
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .and(header("Authorization", "Bearer spec-bearer-value"))
        .and(header("X-API-Key", "spec-api-key-value"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    // Create clap matches for the command
    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"]);

    // Execute request with empty global config
    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(result.is_ok(), "Request should succeed with spec secrets");

    // Clean up environment variables
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&spec_api_key_env);
}

/// Test that missing config secret environment variable produces appropriate error
#[tokio::test]
async fn test_missing_config_secret_env_var_error() {
    let mock_server = MockServer::start().await;

    // Clean up any existing environment variables first
    cleanup_env_vars();

    // Set up unique spec environment variables for this test
    std::env::set_var("MISSING_CONFIG_SPEC_BEARER_TOKEN", "spec-bearer-value");
    std::env::set_var("MISSING_CONFIG_SPEC_API_KEY", "spec-api-key-value");
    // MISSING_CONFIG_BEARER_TOKEN is intentionally not set

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth(
        "MISSING_CONFIG_SPEC_BEARER_TOKEN",
        "MISSING_CONFIG_SPEC_API_KEY",
    );

    // Create global config with missing environment variable
    let global_config = create_global_config_with_secrets(
        "test-api",
        "MISSING_CONFIG_BEARER_TOKEN", // This env var doesn't exist
        "MISSING_CONFIG_SPEC_API_KEY",
    );

    // No mock expectations - the request should fail before reaching the server

    // Create clap matches for the command
    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"]);

    // Execute request - should fail with config env var error
    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(
        result.is_err(),
        "Request should fail with missing config secret"
    );

    // Verify error message mentions config env var name or secret not set
    let error_message = result.unwrap_err().to_string();
    assert!(
        error_message.contains("MISSING_CONFIG_BEARER_TOKEN")
            || error_message.contains("secret not set")
            || error_message.contains("SecretNotSet"),
        "Error should mention config env var name or secret error, got: {error_message}"
    );

    // Clean up environment variables
    cleanup_env_vars();
}

/// Test that missing spec secret environment variable produces appropriate error
#[tokio::test]
async fn test_missing_spec_secret_env_var_error() {
    let mock_server = MockServer::start().await;

    // Clean up any existing environment variables first
    cleanup_env_vars();

    // Use unique env vars to avoid conflicts with other tests
    // MISSING_SPEC_BEARER_TOKEN is not set, which will cause the auth to fail

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth("MISSING_SPEC_BEARER_TOKEN", "MISSING_SPEC_API_KEY");

    // No global config (empty) - so it should fall back to spec extension
    let global_config = GlobalConfig {
        api_configs: HashMap::new(),
        default_timeout_secs: 30,
        agent_defaults: aperture_cli::config::models::AgentDefaults::default(),
        ..Default::default()
    };

    // No mock expectations - the request should fail before reaching the server

    // Create clap matches for the command
    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"]);

    // Execute request - should fail with spec env var error
    let result = execute_request(
        &spec,
        &matches,
        Some(&mock_server.uri()),
        false,
        None,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(
        result.is_err(),
        "Request should fail with missing spec secret"
    );

    // Verify error message mentions spec env var name or secret not set
    let error_message = result.unwrap_err().to_string();
    assert!(
        error_message.contains("MISSING_SPEC_BEARER_TOKEN")
            || error_message.contains("secret not set")
            || error_message.contains("SecretNotSet"),
        "Error should mention spec env var name or secret error, got: {error_message}"
    );
}

/// Test partial config override - only some schemes have config overrides
#[tokio::test]
async fn test_partial_config_override() {
    let mock_server = MockServer::start().await;

    // Use unique environment variable names for this test
    let test_id = "PARTIAL_CONFIG_TEST";
    let spec_bearer_env = format!("{test_id}_SPEC_BEARER_TOKEN");
    let config_bearer_env = format!("{test_id}_CONFIG_BEARER_TOKEN");
    let spec_api_key_env = format!("{test_id}_SPEC_API_KEY");

    // Clean up any existing environment variables first
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&config_bearer_env);
    std::env::remove_var(&spec_api_key_env);

    // Set up environment variables
    std::env::set_var(&spec_bearer_env, "spec-bearer-value");
    std::env::set_var(&config_bearer_env, "config-bearer-value");
    std::env::set_var(&spec_api_key_env, "spec-api-key-value");
    // Note: No CONFIG_API_KEY set

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth(&spec_bearer_env, &spec_api_key_env);

    // Create global config that only overrides bearer auth
    let mut secrets = HashMap::new();
    secrets.insert(
        "bearerAuth".to_string(),
        ApertureSecret {
            source: SecretSource::Env,
            name: config_bearer_env.clone(),
        },
    );
    // Note: No override for apiKeyAuth

    let mut api_configs = HashMap::new();
    api_configs.insert(
        "test-api".to_string(),
        ApiConfig {
            base_url_override: None,
            environment_urls: HashMap::new(),
            strict_mode: false,
            secrets,
            command_mapping: None,
        },
    );

    let global_config = GlobalConfig {
        api_configs,
        default_timeout_secs: 30,
        agent_defaults: aperture_cli::config::models::AgentDefaults::default(),
        ..Default::default()
    };

    // Mock should expect config bearer token but spec api key
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .and(header("Authorization", "Bearer config-bearer-value"))
        .and(header("X-API-Key", "spec-api-key-value"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    // Create clap matches for the command
    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"]);

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

    assert!(
        result.is_ok(),
        "Request should succeed with mixed auth sources"
    );

    // Clean up environment variables
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&config_bearer_env);
    std::env::remove_var(&spec_api_key_env);
}

/// Test that requests proceed when no authentication is configured
#[tokio::test]
async fn test_no_authentication_configured() {
    let mock_server = MockServer::start().await;

    // Clean up any existing environment variables first
    cleanup_env_vars();

    // Create spec without any authentication
    let spec = CachedSpec {
        cache_format_version: CACHE_FORMAT_VERSION,
        name: "test-api".to_string(),
        version: "1.0.0".to_string(),
        commands: vec![CachedCommand {
            name: "get-user-by-id".to_string(),
            description: Some("Get user by ID".to_string()),
            summary: None,
            operation_id: "getUserById".to_string(),
            method: "GET".to_string(),
            path: "/users/{id}".to_string(),
            parameters: vec![CachedParameter {
                name: "id".to_string(),
                location: "path".to_string(),
                required: true,
                description: Some("User ID".to_string()),
                schema: Some(r#"{"type": "string"}"#.to_string()),
                schema_type: Some("string".to_string()),
                format: None,
                default_value: None,
                enum_values: vec![],
                example: None,
            }],
            request_body: None,
            responses: vec![],
            security_requirements: vec![], // No security requirements
            tags: vec!["users".to_string()],
            deprecated: false,
            external_docs_url: None,
            examples: vec![],
            display_group: None,
            display_name: None,
            aliases: vec![],
            hidden: false,
            pagination: PaginationInfo::default(),
        }],
        base_url: None,
        servers: vec![],
        security_schemes: HashMap::new(), // No security schemes defined
        skipped_endpoints: vec![],
        server_variables: HashMap::new(),
    };

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

    // Execute request with empty global config
    let global_config = GlobalConfig {
        api_configs: HashMap::new(),
        default_timeout_secs: 30,
        agent_defaults: aperture_cli::config::models::AgentDefaults::default(),
        ..Default::default()
    };

    // Create clap matches for the command
    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,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(
        result.is_ok(),
        "Request should succeed without authentication"
    );
}

/// Test authentication priority with different API configurations
#[tokio::test]
async fn test_different_api_configs() {
    let mock_server = MockServer::start().await;

    // Use unique environment variable names for this test
    let test_id = "DIFFERENT_API_TEST";
    let spec_bearer_env = format!("{test_id}_SPEC_BEARER_TOKEN");
    let spec_api_key_env = format!("{test_id}_SPEC_API_KEY");
    let other_bearer_env = format!("{test_id}_OTHER_API_BEARER_TOKEN");
    let other_api_key_env = format!("{test_id}_OTHER_API_KEY");

    // Clean up any existing environment variables first
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&spec_api_key_env);
    std::env::remove_var(&other_bearer_env);
    std::env::remove_var(&other_api_key_env);

    // Set up environment variables
    std::env::set_var(&spec_bearer_env, "spec-bearer-value");
    std::env::set_var(&spec_api_key_env, "spec-api-key-value"); // Both auth schemes need env vars
    std::env::set_var(&other_bearer_env, "other-api-bearer-value");

    // Create spec with x-aperture-secret extensions
    let spec = create_test_spec_with_auth(&spec_bearer_env, &spec_api_key_env);

    // Create global config for a different API (not "test-api")
    let global_config = create_global_config_with_secrets(
        "other-api", // Different API name
        &other_bearer_env,
        &other_api_key_env,
    );

    // Mock should expect spec values since config is for different API
    Mock::given(method("GET"))
        .and(path("/users/123"))
        .and(header("Authorization", "Bearer spec-bearer-value"))
        .and(header("X-API-Key", "spec-api-key-value"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "id": "123",
            "name": "Test User"
        })))
        .expect(1)
        .mount(&mock_server)
        .await;

    // Create clap matches for the command
    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,
        Some(&global_config),
        &OutputFormat::Json,
        None,
        None,
        false,
        None, // retry_context
    )
    .await;

    assert!(
        result.is_ok(),
        "Request should succeed with spec auth for unmatched API"
    );

    // Clean up environment variables
    cleanup_env_vars();
    std::env::remove_var(&spec_bearer_env);
    std::env::remove_var(&spec_api_key_env);
    std::env::remove_var(&other_bearer_env);
    std::env::remove_var(&other_api_key_env);
}