ckms 5.20.1

Command Line Interface used to manage the Cosmian KMS server. If any assistance is needed, please either visit the Cosmian technical documentation at https://docs.cosmian.com or contact the Cosmian support team on Discord https://discord.com/invite/7kPMNtHpnz
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
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
use std::{
    env,
    process::Command,
    time::{SystemTime, UNIX_EPOCH},
};

use assert_cmd::prelude::*;
use cosmian_kms_cli_actions::{
    actions::symmetric::keys::create_key::CreateKeyAction,
    reexport::cosmian_kms_client::reexport::cosmian_kms_client_utils::symmetric_utils::DataEncryptionAlgorithm,
};
use cosmian_logger::{log_init, trace};
use test_kms_server::start_default_test_kms_server_with_cert_auth;
#[cfg(feature = "non-fips")]
use test_kms_server::start_default_test_kms_server_with_privileged_users;

#[cfg(feature = "non-fips")]
use super::rsa::create_key_pair::{RsaKeyPairOptions, create_rsa_key_pair};
use super::{symmetric::create_key::create_symmetric_key, utils::recover_cmd_logs};
#[cfg(feature = "non-fips")]
use crate::tests::shared::{ImportKeyParams, import_key};
use crate::{
    config::CKMS_CONF_ENV,
    error::{CosmianError, result::CosmianResult},
    tests::{
        PROG_NAME, save_kms_cli_config,
        shared::{ExportKeyParams, destroy, export_key, revoke},
        symmetric::encrypt_decrypt::run_encrypt_decrypt_test,
    },
};

pub(crate) const SUB_COMMAND: &str = "access-rights";

/// Create a unique path inside the system temp directory
fn unique_temp_path(file_name: &str) -> String {
    let now = SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .unwrap_or_default()
        .as_nanos();
    env::temp_dir()
        .join(format!("{file_name}.{now}"))
        .to_string_lossy()
        .into_owned()
}

/// Generates a symmetric key
fn gen_key(cli_conf_path: &str) -> CosmianResult<String> {
    create_symmetric_key(cli_conf_path, CreateKeyAction::default())
}

/// Export and import symmetric key
#[cfg(feature = "non-fips")]
fn export_import_sym_key(key_id: &str, cli_conf_path: &str) -> Result<String, CosmianError> {
    let export_path = unique_temp_path("output.export");
    export_key(ExportKeyParams {
        cli_conf_path: cli_conf_path.to_owned(),
        sub_command: "sym".to_owned(),
        key_id: key_id.to_owned(),
        key_file: export_path.clone(),
        ..Default::default()
    })?;
    let import_params = ImportKeyParams {
        cli_conf_path: cli_conf_path.to_owned(),
        sub_command: "sym".to_owned(),
        key_file: export_path,
        ..Default::default()
    };
    import_key(import_params)
}

/// Grants access to a user
pub(crate) fn grant_access(
    cli_conf_path: &str,
    object_id: Option<&str>,
    user: &str,
    operations: &[&str],
) -> CosmianResult<()> {
    let mut cmd = Command::cargo_bin(PROG_NAME)?;
    cmd.env(CKMS_CONF_ENV, cli_conf_path);

    cmd.arg(SUB_COMMAND).args(vec!["grant", user]);
    for operation in operations {
        cmd.arg(operation);
    }
    if let Some(uid) = object_id {
        cmd.args(vec!["--object-uid", uid]);
    }

    let output = recover_cmd_logs(&mut cmd);
    if output.status.success() {
        return Ok(());
    }
    Err(CosmianError::Default(
        std::str::from_utf8(&output.stderr)?.to_owned(),
    ))
}

/// Revoke access to a user
pub(crate) fn revoke_access(
    cli_conf_path: &str,
    object_id: Option<&str>,
    user: &str,
    operations: &[&str],
) -> CosmianResult<()> {
    let mut cmd = Command::cargo_bin(PROG_NAME)?;
    cmd.env(CKMS_CONF_ENV, cli_conf_path);

    cmd.arg(SUB_COMMAND).args(vec!["revoke", user]);
    for operation in operations {
        cmd.arg(operation);
    }
    if let Some(uid) = object_id {
        cmd.args(vec!["--object-uid", uid]);
    }

    let output = recover_cmd_logs(&mut cmd);
    if output.status.success() {
        return Ok(());
    }
    Err(CosmianError::Default(
        std::str::from_utf8(&output.stderr)?.to_owned(),
    ))
}

/// List accesses granted on an object
fn list_access(cli_conf_path: &str, object_id: &str) -> CosmianResult<String> {
    let mut cmd = Command::cargo_bin(PROG_NAME)?;
    cmd.env(CKMS_CONF_ENV, cli_conf_path);

    cmd.arg(SUB_COMMAND).args(vec!["list", object_id]);

    let output = recover_cmd_logs(&mut cmd);
    if output.status.success() {
        let out = String::from_utf8(output.stdout)?;
        return Ok(out);
    }
    Err(CosmianError::Default(
        std::str::from_utf8(&output.stderr)?.to_owned(),
    ))
}

/// List objects owned by the user
fn list_owned_objects(cli_conf_path: &str) -> CosmianResult<String> {
    let mut cmd = Command::cargo_bin(PROG_NAME)?;
    cmd.env(CKMS_CONF_ENV, cli_conf_path);

    cmd.arg(SUB_COMMAND).args(vec!["owned"]);

    let output = recover_cmd_logs(&mut cmd);
    if output.status.success() {
        let out = String::from_utf8(output.stdout)?;
        return Ok(out);
    }
    Err(CosmianError::Default(
        std::str::from_utf8(&output.stderr)?.to_owned(),
    ))
}

/// List accesses granted
fn list_accesses_rights_obtained(cli_conf_path: &str) -> CosmianResult<String> {
    let mut cmd = Command::cargo_bin(PROG_NAME)?;
    cmd.env(CKMS_CONF_ENV, cli_conf_path);

    cmd.arg(SUB_COMMAND).args(vec!["obtained"]);

    let output = recover_cmd_logs(&mut cmd);
    if output.status.success() {
        let out = String::from_utf8(output.stdout)?;
        return Ok(out);
    }
    Err(CosmianError::Default(
        std::str::from_utf8(&output.stderr)?.to_owned(),
    ))
}

#[tokio::test]
pub(crate) async fn test_ownership_and_grant() -> CosmianResult<()> {
    // the client conf will use the owner cert
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // the owner should have access
    export_key(ExportKeyParams {
        cli_conf_path: owner_client_conf_path.clone(),
        sub_command: "sym".to_owned(),
        key_id: key_id.clone(),
        key_file: unique_temp_path("output.json"),
        ..Default::default()
    })?;

    // the owner can encrypt and decrypt
    run_encrypt_decrypt_test(
        &owner_client_conf_path,
        &key_id,
        DataEncryptionAlgorithm::AesGcm,
        None,
        0,
    )?;

    // the user should not be able to export
    assert!(
        export_key(ExportKeyParams {
            cli_conf_path: user_client_conf_path.clone(),
            sub_command: "sym".to_owned(),
            key_id: key_id.clone(),
            key_file: unique_temp_path("output.json"),
            ..Default::default()
        })
        .is_err()
    );
    // the user should not be able to encrypt or decrypt
    assert!(
        run_encrypt_decrypt_test(
            &user_client_conf_path,
            &key_id,
            DataEncryptionAlgorithm::AesGcm,
            None,
            0
        )
        .is_err()
    );
    // the user should not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant encrypt and decrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["decrypt", "encrypt"],
    )?;

    // switch to user
    // the user should still not be able to export
    assert!(
        export_key(ExportKeyParams {
            cli_conf_path: user_client_conf_path.clone(),
            sub_command: "sym".to_owned(),
            key_id: key_id.clone(),
            key_file: unique_temp_path("output.json"),
            ..Default::default()
        })
        .is_err()
    );

    // the user should now be able to encrypt or decrypt
    run_encrypt_decrypt_test(
        &user_client_conf_path,
        &key_id,
        DataEncryptionAlgorithm::AesGcm,
        None,
        0,
    )?;
    // the user should still not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should still not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant encrypt and decrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // switch to user
    // the user should now be able to export
    export_key(ExportKeyParams {
        cli_conf_path: user_client_conf_path.clone(),
        sub_command: "sym".to_owned(),
        key_id: key_id.clone(),
        key_file: unique_temp_path("output.json"),
        ..Default::default()
    })?;
    // the user should still not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should still not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant revoke access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["revoke"],
    )?;

    // switch to user
    // the user should now be able to revoke the key
    revoke(&user_client_conf_path, "sym", &key_id, "user revoke")?;

    // switch back to owner
    // grant destroy access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["destroy"],
    )?;

    // switch to user
    // destroy the key
    destroy(&user_client_conf_path, "sym", &key_id, false)?;

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_grant_error() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, _) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // bad operation
    assert!(
        grant_access(
            &owner_client_conf_path,
            Some(&key_id),
            "user.client@acme.com",
            &["BAD_OP"],
        )
        .is_err(),
    );

    // bad object ID
    assert!(
        grant_access(
            &owner_client_conf_path,
            Some("BAD ID"),
            "user.client@acme.com",
            &["get"]
        )
        .is_err()
    );

    // grant to my self
    assert!(
        grant_access(
            &owner_client_conf_path,
            Some(&key_id),
            "owner.client@acme.com",
            &["get"]
        )
        .is_err()
    );

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_revoke_access() -> CosmianResult<()> {
    log_init(option_env!("RUST_LOG"));
    // the client conf will use the owner cert
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    //    // the user should not be able to export
    // assert!(
    // export(
    // &user_client_conf_path,
    // "sym",
    // &key_id,
    // "/tmp/output.json",
    // None,
    // false,
    // None,
    // false,
    // )
    // .is_err()
    // );

    // switch back to owner
    // grant encrypt and decrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // switch to user
    // the user should now be able to export
    export_key(ExportKeyParams {
        cli_conf_path: user_client_conf_path.clone(),
        sub_command: "sym".to_owned(),
        key_id: key_id.clone(),
        key_file: unique_temp_path("output.json"),
        ..Default::default()
    })?;

    // switch back to owner
    // revoke access to user
    revoke_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // the user should not be able to export anymore
    assert!(
        export_key(ExportKeyParams {
            cli_conf_path: user_client_conf_path,
            sub_command: "sym".to_owned(),
            key_id: key_id.clone(),
            key_file: unique_temp_path("output.json"),
            ..Default::default()
        })
        .is_err()
    );

    // revoke errors
    // switch back to owner
    assert!(
        revoke_access(
            &owner_client_conf_path,
            Some(&key_id),
            "user.client@acme.com",
            &["BAD"]
        )
        .is_err()
    );
    assert!(
        revoke_access(
            &owner_client_conf_path,
            Some("BAD KEY"),
            "user.client@acme.com",
            &["get"]
        )
        .is_err()
    );

    // this will not error
    revoke_access(&owner_client_conf_path, Some(&key_id), "BAD USER", &["get"])?;

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_list_access_rights() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // grant encrypt and decrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // the owner can list access rights granted
    let owner_list = list_access(&owner_client_conf_path, &key_id)?;
    trace!("owner list {owner_list}");
    assert!(owner_list.contains("user.client@acme.com: {get}"));

    // The user is not the owner and thus should not be able to list accesses on this object
    assert!(list_access(&user_client_conf_path, &key_id).is_err());

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_list_access_rights_error() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (_, user_client_conf_path) = save_kms_cli_config(ctx);

    assert!(list_access(&user_client_conf_path, "BAD KEY").is_err());
    Ok(())
}

#[tokio::test]
pub(crate) async fn test_list_owned_objects() -> CosmianResult<()> {
    log_init(option_env!("RUST_LOG"));
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);
    let key_id = gen_key(&owner_client_conf_path)?;

    // grant encrypt and decrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // The user is not the owner and thus should not have the object in the list
    let user_list = list_owned_objects(&user_client_conf_path)?;
    assert!(!user_list.contains(&key_id));

    // the owner should have the object in the list
    let owner_list = list_owned_objects(&owner_client_conf_path)?;
    assert!(owner_list.contains(&key_id));

    // create a key using the user
    let user_key_id = gen_key(&user_client_conf_path)?;

    // the user should have the object in the list
    let user_list = list_owned_objects(&user_client_conf_path)?;
    assert!(user_list.contains(&user_key_id));

    // The 'owner' is not the owner of this object and thus should not have the object in the list
    let owner_list = list_owned_objects(&owner_client_conf_path)?;
    assert!(!owner_list.contains(&user_key_id));
    // ... but the list should still contain the other key
    assert!(owner_list.contains(&key_id));

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_access_right_obtained() -> CosmianResult<()> {
    log_init(option_env!("RUST_LOG"));
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    let list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!list.contains(&key_id));

    // grant get access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get"],
    )?;

    // the user should have the "get" access granted
    let list = list_accesses_rights_obtained(&user_client_conf_path)?;
    trace!("user list {list}");
    assert!(list.contains(&key_id));
    assert!(list.contains("get"));

    // the owner has not been granted access rights on this object (it owns it)
    let list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!list.contains(&key_id));

    // the owner should have the object in the list
    let owner_list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!owner_list.contains(&key_id));

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_ownership_and_grant_wildcard_user() -> CosmianResult<()> {
    // the client conf will use the owner cert
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // the owner should have access
    export_key(ExportKeyParams {
        cli_conf_path: owner_client_conf_path.clone(),
        sub_command: "sym".to_owned(),
        key_id: key_id.clone(),
        key_file: unique_temp_path("output.json"),
        ..Default::default()
    })?;

    // the owner can encrypt and decrypt
    run_encrypt_decrypt_test(
        &owner_client_conf_path,
        &key_id,
        DataEncryptionAlgorithm::AesGcm,
        None,
        0,
    )?;

    // the user should not be able to export
    assert!(
        export_key(ExportKeyParams {
            cli_conf_path: user_client_conf_path.clone(),
            sub_command: "sym".to_owned(),
            key_id: key_id.clone(),
            key_file: unique_temp_path("output.json"),
            ..Default::default()
        })
        .is_err()
    );
    // the user should not be able to encrypt or decrypt
    assert!(
        run_encrypt_decrypt_test(
            &user_client_conf_path,
            &key_id,
            DataEncryptionAlgorithm::AesGcm,
            None,
            0
        )
        .is_err()
    );
    // the user should not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant encrypt and decrypt access to user
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["encrypt"])?;
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["decrypt"])?;

    // switch to user
    // the user should still not be able to export
    assert!(
        export_key(ExportKeyParams {
            cli_conf_path: user_client_conf_path.clone(),
            sub_command: "sym".to_owned(),
            key_id: key_id.clone(),
            key_file: unique_temp_path("output.json"),
            ..Default::default()
        })
        .is_err()
    );

    // the user should now be able to encrypt or decrypt
    run_encrypt_decrypt_test(
        &user_client_conf_path,
        &key_id,
        DataEncryptionAlgorithm::AesGcm,
        None,
        0,
    )?;
    // the user should still not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should still not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant encrypt and decrypt access to user
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["get"])?;

    // switch to user
    // the user should now be able to export
    export_key(ExportKeyParams {
        cli_conf_path: user_client_conf_path.clone(),
        sub_command: "sym".to_owned(),
        key_id: key_id.clone(),
        key_file: unique_temp_path("output.json"),
        ..Default::default()
    })?;
    // the user should still not be able to revoke the key
    assert!(revoke(&user_client_conf_path, "sym", &key_id, "failed revoke").is_err());
    // the user should still not be able to destroy the key
    assert!(destroy(&user_client_conf_path, "sym", &key_id, false).is_err());

    // switch back to owner
    // grant revoke access to user
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["revoke"])?;

    // switch to user
    // the user should now be able to revoke the key
    revoke(&user_client_conf_path, "sym", &key_id, "user revoke")?;

    // switch back to owner
    // grant destroy access to user
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["destroy"])?;

    // switch to user
    // destroy the key
    destroy(&user_client_conf_path, "sym", &key_id, false)?;

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_access_right_obtained_using_wildcard() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // the owner should not have access rights (it owns it)
    let list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!list.contains(&key_id));

    // grant get access to the wildcard user
    grant_access(&owner_client_conf_path, Some(&key_id), "*", &["get"])?;

    // grant encrypt access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["encrypt"],
    )?;

    // the user should have the "get" access granted
    let list = list_accesses_rights_obtained(&user_client_conf_path)?;
    trace!("user list {list}");
    assert!(list.contains(&key_id));
    assert!(list.contains("get"));
    assert!(list.contains("encrypt"));

    // the owner has not been granted access rights on this object (it owns it)
    let list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!list.contains(&key_id));

    // the owner should have the object in the list
    let owner_list = list_accesses_rights_obtained(&owner_client_conf_path)?;
    assert!(!owner_list.contains(&key_id));

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_grant_multiple_operations() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, _) = save_kms_cli_config(ctx);

    let key_id = gen_key(&owner_client_conf_path)?;

    // grant multiple access to user
    grant_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get", "revoke", "encrypt", "encrypt"], // double `encrypt` will be dedup
    )?;

    // the owner can list access rights granted
    let owner_list = list_access(&owner_client_conf_path, &key_id)?;
    assert!(owner_list.contains("user.client@acme.com: {encrypt, get, revoke}"));

    // revoke multiple access to user
    revoke_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get", "revoke", "get"], // double `get` will be dedup
    )?;

    let owner_list = list_access(&owner_client_conf_path, &key_id)?;
    assert!(owner_list.contains("user.client@acme.com: {encrypt}"));

    // revoke same, nothing changed
    revoke_access(
        &owner_client_conf_path,
        Some(&key_id),
        "user.client@acme.com",
        &["get", "revoke", "get"], // double `get` will be dedup
    )?;
    let owner_list = list_access(&owner_client_conf_path, &key_id)?;
    assert!(owner_list.contains("user.client@acme.com: {encrypt}"));

    Ok(())
}

#[tokio::test]
pub(crate) async fn test_grant_with_without_object_uid() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_cert_auth().await;
    let (owner_client_conf_path, _) = save_kms_cli_config(ctx);

    // grant create access to user - without object id
    let result_grant_create = grant_access(
        &owner_client_conf_path,
        None,
        "user.client@acme.com",
        &["create"],
    );

    assert!(result_grant_create.is_ok());

    // object_id is required for other operations
    let result_grant_other = grant_access(
        &owner_client_conf_path,
        None,
        "user.client@acme.com",
        &["create", "get"],
    );

    assert!(result_grant_other.is_err());

    Ok(())
}

#[cfg(feature = "non-fips")]
#[tokio::test]
pub(crate) async fn test_privileged_users() -> CosmianResult<()> {
    let ctx = start_default_test_kms_server_with_privileged_users(vec![
        "owner.client@acme.com".to_owned(),
        "user.privileged@acme.com".to_owned(),
    ])
    .await;
    let (owner_client_conf_path, user_client_conf_path) = save_kms_cli_config(ctx);

    // by default privileged users can create or import objects
    let key_id = gen_key(&owner_client_conf_path);
    assert!(key_id.is_ok());
    let binding = key_id.unwrap();
    let initial_key_id = binding.as_str();
    grant_access(
        &owner_client_conf_path,
        Some(initial_key_id),
        "user.client@acme.com",
        &["export", "get"],
    )?;
    let keypair_id = create_rsa_key_pair(&owner_client_conf_path, &RsaKeyPairOptions::default());
    assert!(keypair_id.is_ok());
    let imported_key_id = export_import_sym_key(initial_key_id, &owner_client_conf_path);
    assert!(imported_key_id.is_ok());

    // by default non-privileged users can't create or import objects
    let key_id_user = gen_key(&user_client_conf_path);
    assert!(key_id_user.is_err());
    let keypair_id_user = gen_key(&user_client_conf_path);
    assert!(keypair_id_user.is_err());
    let imported_key_id = export_import_sym_key(initial_key_id, &user_client_conf_path);
    assert!(imported_key_id.is_err());

    // privileged user can grant create access
    let result_grant_create = grant_access(
        &owner_client_conf_path,
        None,
        "user.client@acme.com",
        &["create"],
    );
    assert!(result_grant_create.is_ok());

    // then user can create objects
    let key_id_user = gen_key(&user_client_conf_path);
    assert!(key_id_user.is_ok());
    let keypair_id_user = gen_key(&user_client_conf_path);
    assert!(keypair_id_user.is_ok());
    let imported_key_id = export_import_sym_key(initial_key_id, &user_client_conf_path);
    assert!(imported_key_id.is_ok());

    // simple user can't grant create access
    let result_grant_create = grant_access(
        &user_client_conf_path,
        None,
        "user2.client@acme.com",
        &["create"],
    );
    assert!(result_grant_create.is_err());

    // privileged user can't grant create access to other privileged user
    let result_grant_create = grant_access(
        &owner_client_conf_path,
        None,
        "user.privileged@acme.com",
        &["create"],
    );
    assert!(result_grant_create.is_err());

    // privileged user can revoke user create access right
    let result_revoke_create = revoke_access(
        &owner_client_conf_path,
        None,
        "user.client@acme.com",
        &["create"],
    );
    assert!(result_revoke_create.is_ok());

    // then user can't create object anymore
    let key_id_user = gen_key(&user_client_conf_path);
    assert!(key_id_user.is_err());
    let keypair_id_user = gen_key(&user_client_conf_path);
    assert!(keypair_id_user.is_err());
    let imported_key_id = export_import_sym_key(initial_key_id, &user_client_conf_path);
    assert!(imported_key_id.is_err());

    // privileged user can't revoke create access to other privileged user
    let result_revoke_create = revoke_access(
        &owner_client_conf_path,
        None,
        "user.privileged@acme.com",
        &["create"],
    );
    assert!(result_revoke_create.is_err());

    Ok(())
}