nysm 0.2.1

Manage secrets from Secrets Providers.
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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
#![deny(missing_docs)]
use crate::client::QuerySecrets;
use crate::error::NysmError;
use bat::PrettyPrinter;
use clap::ValueEnum;
use clap::{Args, Parser, Subcommand};
use serde::{Deserialize, Serialize};
use std::io::IsTerminal;
use tempfile::TempDir;

/// This struct defines the main command line interface for Nysm.
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
pub struct ArgumentParser {
  /// Which provider to use
  #[command(subcommand)]
  pub provider: Providers,
}

/// Available secret providers as subcommands
#[derive(Subcommand, Debug)]
pub enum Providers {
  /// AWS Secrets Manager
  Aws(AwsCommand),
  /// GitHub Actions Secrets
  Github(GitHubCommand),
  /// Doppler Secrets Management
  Doppler(DopplerCommand),
}

/// AWS provider command and arguments
#[derive(Args, Debug)]
pub struct AwsCommand {
  /// AWS region to retrieve secrets from
  #[arg(short, long)]
  pub region: Option<String>,
  /// Which subcommand to use
  #[command(subcommand)]
  pub command: Commands,
}

/// GitHub provider command and arguments
#[derive(Args, Debug)]
pub struct GitHubCommand {
  /// GitHub personal access token (can also be set via GITHUB_TOKEN env var)
  #[arg(long, env = "GITHUB_TOKEN")]
  pub token: Option<String>,
  /// GitHub repository owner (user or organization)
  #[arg(long)]
  pub owner: String,
  /// GitHub repository name
  #[arg(long)]
  pub repo: String,
  /// Which subcommand to use
  #[command(subcommand)]
  pub command: Commands,
}

/// Doppler provider command and arguments
#[derive(Args, Debug)]
pub struct DopplerCommand {
  /// Doppler service token (can also be set via DOPPLER_TOKEN env var)
  #[arg(long, env = "DOPPLER_TOKEN")]
  pub token: Option<String>,
  /// Doppler project name
  #[arg(long)]
  pub project: String,
  /// Doppler config/environment name (e.g., "dev", "staging", "prod")
  #[arg(long)]
  pub config: String,
  /// Which subcommand to use
  #[command(subcommand)]
  pub command: Commands,
}

/// This enum defines the main command line subcommands for Nysm.
#[derive(Subcommand, PartialEq, Debug)]
pub enum Commands {
  /// Retrieve a list of secrets
  List(List),
  /// Edit the value of a specific secret
  Edit(Edit),
  /// Show the value of a specific secret
  Show(Show),
  /// Create a new secret
  Create(Create),
  /// Delete a secret
  Delete(Delete),
}

/// Retrieve a list of secrets
#[derive(Args, PartialEq, Debug)]
pub struct List {}

/// Edit the value of a specific secret
#[derive(Args, PartialEq, Debug)]
pub struct Edit {
  /// ID of the secret to edit
  pub secret_id: String,
  #[clap(
    value_enum,
    short = 'f',
    long = "secret-format",
    default_value = "json"
  )]
  /// Format of the secret as stored by the provider
  pub secret_format: DataFormat,
  /// Format to edit the secret in
  #[clap(value_enum, short = 'e', long = "edit-format", default_value = "yaml")]
  pub edit_format: DataFormat,
}

/// Show the value of a specific secret
#[derive(Args, PartialEq, Debug)]
pub struct Show {
  /// ID of the secret to edit
  pub secret_id: String,
  /// Format to print the secret in
  #[clap(value_enum, short = 'p', long = "print-format", default_value = "yaml")]
  pub print_format: DataFormat,
  #[clap(
    value_enum,
    short = 'f',
    long = "secret-format",
    default_value = "json"
  )]
  /// Format of the secret as stored by the provider
  pub secret_format: DataFormat,
}

/// Create a new secret
#[derive(Args, PartialEq, Debug)]
pub struct Create {
  /// ID of the secret to create
  pub secret_id: String,
  /// Description of the secret
  #[clap(short = 'd', long = "description")]
  pub description: Option<String>,
  /// Format of the secret as stored by the provider
  #[clap(
    value_enum,
    short = 'f',
    long = "secret-format",
    default_value = "json"
  )]
  pub secret_format: DataFormat,
  /// Format to edit the secret in
  #[clap(value_enum, short = 'e', long = "edit-format", default_value = "yaml")]
  pub edit_format: DataFormat,
}

/// Delete a secret
#[derive(Args, PartialEq, Debug)]
pub struct Delete {
  /// ID of the secret to delete
  pub secret_id: String,
}

/// Enum to describe the different data formats that can be used with Secrets
#[derive(Clone, Debug, Deserialize, Serialize, ValueEnum, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum DataFormat {
  /// Json format
  Json,
  /// Yaml format
  Yaml,
  /// Plaintext format
  Text,
}

impl std::fmt::Display for DataFormat {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    std::fmt::Debug::fmt(self, f)
  }
}

impl ArgumentParser {
  /// Runs the given subcommand and uses the provided client
  ///
  /// # Arguments
  /// * `client` - Trait object that implements [QuerySecrets]
  /// * `command` - The command to execute
  ///
  #[cfg(not(tarpaulin_include))]
  pub async fn run_subcommand(client: Box<dyn QuerySecrets>, command: &Commands) {
    let result = match command {
      Commands::List(args) => {
        let result = list(&*client, args).await;

        match result {
          Ok(list) => println!("{}", list),
          Err(error) => println!("{}", error),
        }

        Ok(())
      }
      Commands::Edit(args) => edit(&*client, args).await,
      Commands::Show(args) => show(&*client, args).await,
      Commands::Create(args) => create(&*client, args).await,
      Commands::Delete(args) => delete(&*client, args).await,
    };

    if let Err(error) = result {
      println!("{}", error);
    }
  }
}

async fn list(client: &dyn QuerySecrets, _args: &List) -> Result<String, NysmError> {
  let secrets_list = client.secrets_list().await?;

  Ok(secrets_list.table_display())
}

async fn show(client: &dyn QuerySecrets, args: &Show) -> Result<(), NysmError> {
  if !client.supports_read() {
    return Err(NysmError::SecretNotReadable);
  }

  let secret_value = client.secret_value(args.secret_id.clone()).await?;

  let formatted_secret = reformat_data(
    &secret_value.secret,
    &args.secret_format,
    &args.print_format,
  )?;

  let _ = pretty_print(formatted_secret, &args.print_format);

  Ok(())
}

async fn edit(client: &dyn QuerySecrets, args: &Edit) -> Result<(), NysmError> {
  if client.supports_read() {
    let secret_value = client.secret_value(args.secret_id.clone()).await?;

    if let Ok(dir) = temporary_directory() {
      let update_contents = launch_editor(
        secret_value.secret,
        dir,
        &args.secret_format,
        &args.edit_format,
      )?;

      if let Some(contents) = update_contents {
        let _ = client
          .update_secret_value(args.secret_id.clone(), contents)
          .await?;
      }
    }
  } else {
    let template = match args.edit_format {
      DataFormat::Json => "{}".to_string(),
      DataFormat::Yaml => "# Enter new secret value below\n".to_string(),
      DataFormat::Text => "".to_string(),
    };

    if let Ok(dir) = temporary_directory() {
      let update_contents =
        launch_editor(template.clone(), dir, &args.edit_format, &args.edit_format)?;

      if let Some(contents) = update_contents {
        if contents == template {
          println!("No changes made, skipping update.");
        } else {
          println!("Warning: This will completely replace the existing secret.");
          let formatted_contents =
            reformat_data(&contents, &args.edit_format, &args.secret_format)?;
          let _ = client
            .update_secret_value(args.secret_id.clone(), formatted_contents)
            .await?;
        }
      }
    }
  }

  Ok(())
}

async fn create(client: &dyn QuerySecrets, args: &Create) -> Result<(), NysmError> {
  if let Ok(dir) = temporary_directory() {
    let initial_content = match args.edit_format {
      DataFormat::Json => "{}".to_string(),
      DataFormat::Yaml => "".to_string(),
      DataFormat::Text => "".to_string(),
    };

    let secret_contents =
      launch_editor(initial_content, dir, &args.edit_format, &args.edit_format)?;

    if let Some(contents) = secret_contents {
      let formatted_contents = reformat_data(&contents, &args.edit_format, &args.secret_format)?;
      let _ = client
        .create_secret(
          args.secret_id.clone(),
          formatted_contents,
          args.description.clone(),
        )
        .await?;
    }
  }

  Ok(())
}

async fn delete(client: &dyn QuerySecrets, args: &Delete) -> Result<(), NysmError> {
  let _ = client.delete_secret(args.secret_id.clone()).await?;

  Ok(())
}

fn strip_trailing_whitespace_from_block_scalars(content: &str) -> String {
  if content.contains(": |") {
    content
      .lines()
      .map(|line| line.trim_end())
      .collect::<Vec<_>>()
      .join("\n")
  } else {
    content.to_string()
  }
}

fn reformat_data(
  content: &str,
  source_format: &DataFormat,
  destination_format: &DataFormat,
) -> Result<String, NysmError> {
  Ok(match source_format {
    DataFormat::Json => {
      let json_value: serde_json::Value = serde_json::from_str(content)?;

      match destination_format {
        DataFormat::Json => serde_json::to_string_pretty(&json_value)?,
        DataFormat::Yaml => serde_yml::to_string(&json_value)?,
        DataFormat::Text => String::from(content),
      }
    }
    DataFormat::Yaml => match destination_format {
      DataFormat::Yaml => {
        serde_yml::from_str::<serde_yml::Value>(content)?;
        String::from(content)
      }
      DataFormat::Json => {
        let cleaned_content = strip_trailing_whitespace_from_block_scalars(content);
        let yaml_value: serde_yml::Value = serde_yml::from_str(&cleaned_content)?;
        serde_json::to_string_pretty(&yaml_value)?
      }
      DataFormat::Text => String::from(content),
    },
    DataFormat::Text => String::from(content),
  })
}

/// Pretty prints a string with bat.
///
/// # Arguments
/// * `content` - String to be pretty printed
/// * `print_format` - Format to print the string as
///
/// # Returns
/// Returns a result with either an empty tuple or a NysmError. This can error if
/// bat has trouble printing in the specified format.
#[cfg(not(tarpaulin_include))]
fn pretty_print(content: String, print_format: &DataFormat) -> Result<(), NysmError> {
  if std::io::stdout().is_terminal() {
    let language_string = print_format.to_string();
    let mut printer = PrettyPrinter::new();
    let _printer = match print_format {
      DataFormat::Yaml | DataFormat::Json => printer.language(&language_string),
      _ => &mut printer,
    };

    #[allow(unused)]
    #[cfg(not(test))]
    let _ = _printer
      .grid(true)
      .line_numbers(true)
      .paging_mode(bat::PagingMode::QuitIfOneScreen)
      .pager("less")
      .theme("OneHalfDark")
      .input_from_bytes(content.as_bytes())
      .print()?;
  } else {
    println!("{}", content);
  }

  Ok(())
}

/// This method is designed to open up an editor with contents from a secret.
///
/// # Arguments
/// * `contents` - String contents to open up in an editor
/// * `path` - Temporary directory to save the contents of the file to when editing a secret
/// * `secret_format` - Format of the secret as given by the secret provider
/// * `edit_format` - Format of the secret to use while editing the secret in an editor
///
/// # Returns
/// Returns a result containing the changes to the contents originally passed into the method.
/// Can error if any IO operation fails (read/write of the temporary file).
///
fn launch_editor<P>(
  contents: String,
  path: P,
  secret_format: &DataFormat,
  edit_format: &DataFormat,
) -> Result<Option<String>, NysmError>
where
  P: AsRef<std::path::Path>,
{
  let language_string = edit_format.to_string().to_lowercase();
  let file_path = path.as_ref().join("data").with_extension(language_string);

  let file_contents = reformat_data(&contents, secret_format, edit_format)?;
  std::fs::write(&file_path, file_contents)?;

  let mut editor = match std::env::var("EDITOR") {
    Ok(editor) => editor,
    Err(_) => String::from("vim"),
  };

  editor.push(' ');
  editor.push_str(&file_path.to_string_lossy());

  #[cfg(test)]
  editor.insert_str(0, "vim(){ :; }; ");

  std::process::Command::new("/usr/bin/env")
    .arg("sh")
    .arg("-c")
    .arg(editor)
    .spawn()
    .expect("Error: Failed to run editor")
    .wait()
    .expect("Error: Editor returned a non-zero status");

  let file_contents: String = std::fs::read_to_string(file_path)?;
  let json_data = reformat_data(&file_contents, edit_format, secret_format)?;

  if json_data.eq(&contents) {
    println!("It seems the file hasn't changed, not persisting changes.");

    Ok(None)
  } else {
    Ok(Some(json_data))
  }
}

fn temporary_directory() -> std::io::Result<TempDir> {
  TempDir::new()
}

#[cfg(test)]
mod tests {
  use super::*;
  use futures::FutureExt;
  use lazy_static::lazy_static;
  use serde_json::json;
  use std::env::VarError;
  use std::future::Future;
  use std::panic::AssertUnwindSafe;
  use std::panic::{RefUnwindSafe, UnwindSafe};
  use std::{env, panic};

  lazy_static! {
    static ref SERIAL_TEST: tokio::sync::Mutex<()> = Default::default();
  }

  /// Sets environment variables to the given value for the duration of the closure.
  /// Restores the previous values when the closure completes or panics, before unwinding the panic.
  pub async fn async_with_env_vars<F>(kvs: Vec<(&str, Option<&str>)>, closure: F)
  where
    F: Future<Output = ()> + UnwindSafe + RefUnwindSafe,
  {
    let guard = SERIAL_TEST.lock().await;
    let mut old_kvs: Vec<(&str, Result<String, VarError>)> = Vec::new();

    for (k, v) in kvs {
      let old_v = env::var(k);
      old_kvs.push((k, old_v));
      match v {
        None => unsafe { env::remove_var(k) },
        Some(v) => unsafe { env::set_var(k, v) },
      }
    }

    match closure.catch_unwind().await {
      Ok(_) => {
        for (k, v) in old_kvs {
          reset_env(k, v);
        }
      }
      Err(err) => {
        for (k, v) in old_kvs {
          reset_env(k, v);
        }
        drop(guard);
        panic::resume_unwind(err);
      }
    }
  }

  fn reset_env(k: &str, old: Result<String, VarError>) {
    if let Ok(v) = old {
      unsafe { env::set_var(k, v) };
    } else {
      unsafe { env::remove_var(k) };
    }
  }

  type TestResult = Result<(), Box<dyn std::error::Error>>;

  mod reformat_data {
    use super::*;

    #[test]
    fn from_json_to_yaml() -> TestResult {
      let data = r#"{"banana": true, "apple": false}"#;
      let expected = "apple: false\nbanana: true\n";

      let result = reformat_data(data, &DataFormat::Json, &DataFormat::Yaml)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_json_to_json() -> TestResult {
      let data = r#"{"banana": true, "apple": false}"#;
      let json_value = json!({
        "apple": false,
        "banana": true,
      });
      let expected = serde_json::to_string_pretty(&json_value)?;

      let result = reformat_data(data, &DataFormat::Json, &DataFormat::Json)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_json_to_text() -> TestResult {
      let data = r#"{"apple":false,"banana":true}"#;
      let expected = json!({
        "apple": false,
        "banana": true,
      })
      .to_string();

      let result = reformat_data(data, &DataFormat::Json, &DataFormat::Text)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_yaml_to_json() -> TestResult {
      let yaml_string = r#"apple: false
banana: true
"#;
      let json_value = json!({
        "apple": false,
        "banana": true,
      });
      let expected = serde_json::to_string_pretty(&json_value)?;

      let result = reformat_data(yaml_string, &DataFormat::Yaml, &DataFormat::Json)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_yaml_to_yaml() -> TestResult {
      let yaml_string = r#"apple: false
banana: true
"#;
      let expected = "apple: false\nbanana: true\n";

      let result = reformat_data(yaml_string, &DataFormat::Yaml, &DataFormat::Yaml)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_yaml_to_text() -> TestResult {
      let yaml_string = r#"apple: false
banana: true
"#;
      let expected = "apple: false\nbanana: true\n";

      let result = reformat_data(yaml_string, &DataFormat::Yaml, &DataFormat::Text)?;

      assert_eq!(expected, result);

      Ok(())
    }

    #[test]
    fn from_yaml_with_trailing_whitespace_to_json() -> TestResult {
      let yaml_string = "application.yml: |-\n  banana: false \n  apple: true\n  flasdjfljasdlfjalsd: alsdkjflasjdflajdslf\n";

      let result = reformat_data(yaml_string, &DataFormat::Yaml, &DataFormat::Json)?;

      assert!(!result.contains("false \\n"));
      assert!(result.contains("false\\n"));

      Ok(())
    }

    #[test]
    fn from_text() -> TestResult {
      let text = "This is a plain string with no data structure.";
      let expected = "This is a plain string with no data structure.";

      let result = reformat_data(text, &DataFormat::Text, &DataFormat::Text)?;

      assert_eq!(expected, result);

      Ok(())
    }
  }

  #[test]
  fn data_format_display() -> TestResult {
    assert_eq!(format!("{}", DataFormat::Json), "Json");
    assert_eq!(format!("{}", DataFormat::Yaml), "Yaml");
    assert_eq!(format!("{}", DataFormat::Text), "Text");

    Ok(())
  }

  #[test]
  fn test_yaml_with_mixed_whitespace_fixture() -> TestResult {
    let fixture_path = "tests/fixtures/mixed_whitespace.yml";
    let problematic_yaml =
      std::fs::read_to_string(fixture_path).expect("Failed to read fixture file");

    let result = reformat_data(&problematic_yaml, &DataFormat::Yaml, &DataFormat::Json)?;

    assert!(result.contains("application.yml"));
    assert!(result.contains("banana: false"));
    assert!(!result.contains("false \\n"));

    Ok(())
  }

  mod argument_parsing {
    use super::*;

    #[test]
    fn aws_accepts_region() -> TestResult {
      let args = "nysm aws -r us-west-2 list".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(aws.region, Some("us-west-2".to_string()));
          assert!(matches!(aws.command, Commands::List(_)));
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_list_subcommand() -> TestResult {
      let args = "nysm aws list".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(aws.command, Commands::List(List {}));
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_show_subcommand() -> TestResult {
      let args = "nysm aws show testing-secrets".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(
            aws.command,
            Commands::Show(Show {
              secret_id: "testing-secrets".into(),
              print_format: DataFormat::Yaml,
              secret_format: DataFormat::Json,
            })
          );
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_edit_subcommand() -> TestResult {
      let args = "nysm aws edit testing-secrets".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(
            aws.command,
            Commands::Edit(Edit {
              secret_id: "testing-secrets".into(),
              edit_format: DataFormat::Yaml,
              secret_format: DataFormat::Json,
            })
          );
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_create_subcommand() -> TestResult {
      let args = "nysm aws create new-secret".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(
            aws.command,
            Commands::Create(Create {
              secret_id: "new-secret".into(),
              description: None,
              edit_format: DataFormat::Yaml,
              secret_format: DataFormat::Json,
            })
          );
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_create_subcommand_with_description() -> TestResult {
      let args = vec![
        "nysm",
        "aws",
        "create",
        "new-secret",
        "-d",
        "Test secret",
      ];
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(
            aws.command,
            Commands::Create(Create {
              secret_id: "new-secret".into(),
              description: Some("Test secret".into()),
              edit_format: DataFormat::Yaml,
              secret_format: DataFormat::Json,
            })
          );
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn aws_sets_delete_subcommand() -> TestResult {
      let args = "nysm aws delete test-secret".split_whitespace();
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Aws(aws) => {
          assert_eq!(
            aws.command,
            Commands::Delete(Delete {
              secret_id: "test-secret".into(),
            })
          );
        }
        _ => panic!("Expected AWS provider"),
      }

      Ok(())
    }

    #[test]
    fn github_accepts_all_options() -> TestResult {
      let args = vec![
        "nysm",
        "github",
        "--token",
        "ghp_123456",
        "--owner",
        "myorg",
        "--repo",
        "myrepo",
        "list",
      ];
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Github(github) => {
          assert_eq!(github.token, Some("ghp_123456".to_string()));
          assert_eq!(github.owner, "myorg");
          assert_eq!(github.repo, "myrepo");
          assert!(matches!(github.command, Commands::List(_)));
        }
        _ => panic!("Expected GitHub provider"),
      }

      Ok(())
    }

    #[test]
    fn github_requires_owner_and_repo() -> TestResult {
      let args = vec!["nysm", "github", "list"];
      let result = ArgumentParser::try_parse_from(args);

      assert!(result.is_err());

      Ok(())
    }

    #[test]
    fn doppler_accepts_all_options() -> TestResult {
      let args = vec![
        "nysm",
        "doppler",
        "--token",
        "dp.st.123456",
        "--project",
        "myproject",
        "--config",
        "production",
        "list",
      ];
      let arg_parser = ArgumentParser::try_parse_from(args)?;

      match &arg_parser.provider {
        Providers::Doppler(doppler) => {
          assert_eq!(doppler.token, Some("dp.st.123456".to_string()));
          assert_eq!(doppler.project, "myproject");
          assert_eq!(doppler.config, "production");
          assert!(matches!(doppler.command, Commands::List(_)));
        }
        _ => panic!("Expected Doppler provider"),
      }

      Ok(())
    }

    #[test]
    fn doppler_requires_project_and_config() -> TestResult {
      let args = vec!["nysm", "doppler", "list"];
      let result = ArgumentParser::try_parse_from(args);

      assert!(result.is_err());

      Ok(())
    }
  }

  #[allow(clippy::field_reassign_with_default)]
  mod client {
    use super::*;
    use crate::client::{
      CreateSecretResult, DeleteSecretResult, GetSecretValueResult, ListSecretsResult, Secret,
      UpdateSecretValueResult,
    };
    use async_trait::async_trait;

    pub struct TestClient {
      fails_on_list_secrets: bool,
      fails_on_get_secret_value: bool,
      fails_on_update_secret_value: bool,
      fails_on_create_secret: bool,
      fails_on_delete_secret: bool,
      is_write_only: bool,
      on_create_secret: Option<Box<dyn Fn(&str) + Send + Sync>>,
      on_update_secret: Option<Box<dyn Fn(&str) + Send + Sync>>,
      on_delete_secret: Option<Box<dyn Fn(&str) + Send + Sync>>,
    }

    impl Default for TestClient {
      fn default() -> Self {
        Self {
          fails_on_list_secrets: false,
          fails_on_get_secret_value: false,
          fails_on_update_secret_value: false,
          fails_on_create_secret: false,
          fails_on_delete_secret: false,
          is_write_only: false,
          on_create_secret: None,
          on_update_secret: None,
          on_delete_secret: None,
        }
      }
    }

    #[async_trait]
    impl QuerySecrets for TestClient {
      fn supports_read(&self) -> bool {
        !self.is_write_only
      }

      async fn secrets_list(&self) -> Result<ListSecretsResult, NysmError> {
        if self.fails_on_list_secrets {
          return Err(NysmError::ListSecretsFailed("Test error".to_string()));
        }

        Ok(ListSecretsResult {
          entries: vec![Secret {
            name: Some("secret-one".into()),
            uri: Some("some-unique-id-one".into()),
            description: Some("blah blah blah".into()),
          }],
        })
      }

      async fn secret_value(&self, _secret_id: String) -> Result<GetSecretValueResult, NysmError> {
        if self.is_write_only {
          return Err(NysmError::SecretNotReadable);
        }

        if self.fails_on_get_secret_value {
          return Err(NysmError::GetSecretValueFailed("Test error".to_string()));
        }

        let secret_value = json!({
          "apple": true,
          "banana": false,
        });

        let secret_value = serde_json::to_string_pretty(&secret_value)?;

        Ok(GetSecretValueResult {
          secret: secret_value,
        })
      }

      async fn update_secret_value(
        &self,
        _secret_id: String,
        secret_value: String,
      ) -> Result<UpdateSecretValueResult, NysmError> {
        if self.fails_on_update_secret_value {
          return Err(NysmError::UpdateSecretFailed("Test error".to_string()));
        }

        if let Some(callback) = &self.on_update_secret {
          callback(&secret_value);
        }

        Ok(UpdateSecretValueResult {
          name: Some("testy-test-secret".into()),
          uri: Some("some-unique-id".into()),
          version_id: Some("definitely-a-new-version-id".into()),
        })
      }

      async fn create_secret(
        &self,
        _secret_id: String,
        secret_value: String,
        _description: Option<String>,
      ) -> Result<CreateSecretResult, NysmError> {
        if self.fails_on_create_secret {
          return Err(NysmError::CreateSecretFailed("Test error".to_string()));
        }

        if let Some(callback) = &self.on_create_secret {
          callback(&secret_value);
        }

        Ok(CreateSecretResult {
          name: Some("new-test-secret".into()),
          uri: Some("some-new-unique-id".into()),
          version_id: Some("new-secret-version-id".into()),
        })
      }

      async fn delete_secret(&self, secret_id: String) -> Result<DeleteSecretResult, NysmError> {
        if self.fails_on_delete_secret {
          return Err(NysmError::DeleteSecretFailed("Test error".to_string()));
        }

        if let Some(callback) = &self.on_delete_secret {
          callback(&secret_id);
        }

        Ok(DeleteSecretResult {
          name: Some("deleted-secret".into()),
          uri: Some("some-deleted-unique-id".into()),
          deletion_date: Some("2024-01-01".into()),
        })
      }
    }

    mod list_output {
      use super::*;

      #[tokio::test]
      async fn error_when_api_list_call_fails() -> TestResult {
        let mut client = TestClient::default();
        client.fails_on_list_secrets = true;

        let result = list(&client, &List {}).await;

        assert_eq!(
          result,
          Err(NysmError::ListSecretsFailed("Test error".to_string()))
        );

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_list_api_call_succeeds() -> TestResult {
        let client = TestClient::default();

        let result = list(&client, &List {}).await;

        assert!(result.is_ok());

        Ok(())
      }
    }

    mod show_output {
      use super::*;

      #[tokio::test]
      async fn error_when_api_show_call_fails() -> TestResult {
        let mut client = TestClient::default();
        client.fails_on_get_secret_value = true;

        let result = show(
          &client,
          &Show {
            secret_id: "fake".into(),
            print_format: DataFormat::Json,
            secret_format: DataFormat::Json,
          },
        )
        .await;

        assert_eq!(
          result,
          Err(NysmError::GetSecretValueFailed("Test error".to_string()))
        );

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_api_show_call_succeeds() -> TestResult {
        let client = TestClient::default();

        let result = show(
          &client,
          &Show {
            secret_id: "fake".into(),
            print_format: DataFormat::Json,
            secret_format: DataFormat::Json,
          },
        )
        .await;

        assert!(result.is_ok());

        Ok(())
      }

      #[tokio::test]
      async fn error_when_provider_does_not_support_read() -> TestResult {
        let mut client = TestClient::default();
        client.is_write_only = true;

        let result = show(
          &client,
          &Show {
            secret_id: "write-only-secret".into(),
            print_format: DataFormat::Yaml,
            secret_format: DataFormat::Json,
          },
        )
        .await;

        assert_eq!(result, Err(NysmError::SecretNotReadable));

        Ok(())
      }
    }

    mod edit_output {
      use super::*;

      #[tokio::test]
      async fn error_when_api_update_call_fails() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'another: true\n' >> "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.fails_on_update_secret_value = true;

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert_eq!(
              result,
              Err(NysmError::UpdateSecretFailed("Test error".to_string()))
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn json_error_when_api_update_call_fails_due_to_syntax() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'another: true\n' >> "))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert_eq!(
              result,
              Err(NysmError::SerdeJson(
                serde_json::from_str::<String>(";;;").unwrap_err()
              ))
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn yaml_error_when_api_update_call_fails_due_to_syntax() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo '@invalid_yaml' >> "))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Yaml,
              },
            )
            .await;

            assert_eq!(
              result,
              Err(NysmError::SerdeYaml(
                serde_yml::from_str::<String>("::::").unwrap_err()
              ))
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn error_when_api_get_call_fails() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo >/dev/null 2>&1 <<<"))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.fails_on_get_secret_value = true;

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert_eq!(
              result,
              Err(NysmError::GetSecretValueFailed("Test error".to_string()))
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_api_get_calls_succeed() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo >/dev/null 2>&1 <<<"))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_no_editor_environment_variable() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", None)],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = edit(
              &client,
              &Edit {
                secret_id: "fake".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_api_get_calls_succeed_and_no_change() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo >/dev/null 2>&1 <<<"))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = edit(
              &client,
              &Edit {
                secret_id: "secret-one".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn uses_correct_formats_for_editing() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'updated_key: yaml_value\n' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();

            client.on_update_secret = Some(Box::new(|secret_string| {
              let parsed: serde_json::Value =
                serde_json::from_str(secret_string).expect("Should be valid JSON");
              assert_eq!(parsed["updated_key"], "yaml_value");
            }));

            let result = edit(
              &client,
              &Edit {
                secret_id: "secret-one".into(),
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn write_only_provider_uses_json_template() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo '{\"new_key\": \"new_value\"}' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.is_write_only = true;
            client.on_update_secret = Some(Box::new(|secret_string| {
              let parsed: serde_json::Value =
                serde_json::from_str(secret_string).expect("Should be valid JSON");
              assert_eq!(parsed["new_key"], "new_value");
            }));

            let result = edit(
              &client,
              &Edit {
                secret_id: "write-only-secret".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn write_only_provider_uses_yaml_template() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'key: value\nanother: true' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.is_write_only = true;
            client.on_update_secret = Some(Box::new(|secret_string| {
              let parsed: serde_json::Value =
                serde_json::from_str(secret_string).expect("Should be valid JSON");
              assert_eq!(parsed["key"], "value");
              assert_eq!(parsed["another"], true);
            }));

            let result = edit(
              &client,
              &Edit {
                secret_id: "write-only-secret".into(),
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn write_only_provider_uses_text_template() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'plain text secret' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.is_write_only = true;
            client.on_update_secret = Some(Box::new(|secret_string| {
              assert_eq!(secret_string.trim(), "plain text secret");
            }));

            let result = edit(
              &client,
              &Edit {
                secret_id: "write-only-secret".into(),
                edit_format: DataFormat::Text,
                secret_format: DataFormat::Text,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn write_only_provider_skips_update_when_no_changes() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo '{}' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.is_write_only = true;
            let update_called = std::sync::Arc::new(std::sync::Mutex::new(false));
            let update_called_clone = update_called.clone();
            client.on_update_secret = Some(Box::new(move |_| {
              *update_called_clone.lock().unwrap() = true;
            }));

            let result = edit(
              &client,
              &Edit {
                secret_id: "write-only-secret".into(),
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
            assert!(
              !*update_called.lock().unwrap(),
              "Update should not be called when content is unchanged"
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn write_only_provider_cannot_read_secret() -> TestResult {
        let mut client = TestClient::default();
        client.is_write_only = true;

        let result = client.secret_value("test-secret".to_string()).await;
        assert!(matches!(result, Err(NysmError::SecretNotReadable)));

        Ok(())
      }
    }

    mod create_output {
      use super::*;

      #[tokio::test]
      async fn error_when_api_create_call_fails() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'test: value\n' >> "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();
            client.fails_on_create_secret = true;

            let result = create(
              &client,
              &Create {
                secret_id: "fake".into(),
                description: None,
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert_eq!(
              result,
              Err(NysmError::CreateSecretFailed("Test error".to_string()))
            );
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_api_create_call_succeeds() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'test: value\n' >> "))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = create(
              &client,
              &Create {
                secret_id: "new-secret".into(),
                description: Some("Test description".into()),
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_no_changes_made_in_editor() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo >/dev/null 2>&1 <<<"))],
          AssertUnwindSafe(async {
            let client = TestClient::default();

            let result = create(
              &client,
              &Create {
                secret_id: "new-secret".into(),
                description: None,
                edit_format: DataFormat::Json,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }

      #[tokio::test]
      async fn uses_correct_formats_for_editing() -> TestResult {
        async_with_env_vars(
          vec![("EDITOR", Some("echo 'key: yaml_value\n' > "))],
          AssertUnwindSafe(async {
            let mut client = TestClient::default();

            client.on_create_secret = Some(Box::new(|secret_string| {
              let parsed: serde_json::Value =
                serde_json::from_str(secret_string).expect("Should be valid JSON");
              assert_eq!(parsed["key"], "yaml_value");
            }));

            let result = create(
              &client,
              &Create {
                secret_id: "new-secret".into(),
                description: None,
                edit_format: DataFormat::Yaml,
                secret_format: DataFormat::Json,
              },
            )
            .await;

            assert!(result.is_ok());
          }),
        )
        .await;

        Ok(())
      }
    }

    mod delete_output {
      use super::*;

      #[tokio::test]
      async fn error_when_api_delete_call_fails() -> TestResult {
        let mut client = TestClient::default();
        client.fails_on_delete_secret = true;

        let result = delete(
          &client,
          &Delete {
            secret_id: "fake".into(),
          },
        )
        .await;

        assert_eq!(
          result,
          Err(NysmError::DeleteSecretFailed("Test error".to_string()))
        );

        Ok(())
      }

      #[tokio::test]
      async fn ok_when_api_delete_call_succeeds() -> TestResult {
        let client = TestClient::default();

        let result = delete(
          &client,
          &Delete {
            secret_id: "test-secret".into(),
          },
        )
        .await;

        assert!(result.is_ok());

        Ok(())
      }

      #[tokio::test]
      async fn calls_callback_with_secret_id() -> TestResult {
        let mut client = TestClient::default();

        client.on_delete_secret = Some(Box::new(|secret_id| {
          assert_eq!(secret_id, "test-secret");
        }));

        let result = delete(
          &client,
          &Delete {
            secret_id: "test-secret".into(),
          },
        )
        .await;

        assert!(result.is_ok());

        Ok(())
      }
    }
  }
}