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
1665
1666
//! A `std::process::Command` replacement which is a bit more flexible and testable.
//!
//! For now this is focused on cases which wait until the subprocess is completed
//! and then map the output (or do not care about the output).
//!
//! - by default check the exit status
//!
//! - bundle a mapping of the captured stdout/stderr to an result into the command,
//!   i.e. the `Command` type is `Command<Output, Error>` e.g. `Command<Vec<String>, Error>`.
//!
//! - implicitly define if stdout/stderr needs to be captured to prevent mistakes
//!   wrt. this, this is done through through the same mechanism which is used to
//!   define how the output is mapped, e.g. `Command::new("ls", ReturnStdoutString)`
//!   will implicitly enabled stdout capturing and disable `stderr` capturing.
//!
//! - allow replacing command execution with an callback, this is mainly used to
//!   allow mocking the command.
//!
//! - besides allowing to decide weather the sub-process should inherit the environment and
//!   which variables get removed/set/overwritten this type also allows you to whitelist which
//!   env variables should be inherited.
//!
//! - do not have `&mut self` pass through based API. This makes it more bothersome to create
//!   functions which create and return commands, which this types intents to make simple so
//!   that you can e.g. have a function like `fn ls_command() -> Command<Vec<String>, Error>`
//!   which returns a command which if run runs the ls command and returns a vector of string
//!   (or an error if spawning, running or utf8 validation fails).
//!
//! - be generic over Output and Error type but dynamic over how the captured stdout/err is
//!   mapped to the given `Result<Output, Error>`. This allows you to e.g. at runtime switch
//!   between different function which create a command with the same output but on different
//!   ways (i.e. with different called programs and output mapping, e.g. based on a config
//!   setting).
//!
//! # Basic Examples
//!
//! ```rust
//! use mapped_command::{Command, MapStdoutString, ReturnStdoutString, ExecResult, CommandExecutionWithStringOutputError as Error};
//!
//! /// Usage: `echo().run()`.
//! fn echo() -> Command<String, Error> {
//!     // implicitly enables stdout capturing but not stderr capturing
//!     // and converts the captured bytes to string
//!     Command::new("echo", ReturnStdoutString)
//! }
//!
//! /// Usage: `ls_command().run()`.
//! fn ls_command() -> Command<Vec<String>, Error> {
//!     Command::new("ls", MapStdoutString(|out| {
//!         let lines = out.lines().map(Into::into).collect::<Vec<_>>();
//!         Ok(lines)
//!     }))
//! }
//!
//! fn main() {
//!     let res = ls_command()
//!         //mock
//!         .with_exec_replacement_callback(|_cmd, _rs| {
//!             Ok(ExecResult {
//!                 exit_status: 0.into(),
//!                 // Some indicates in the mock that stdout was captured, None would mean it was not.
//!                 stdout: Some("foo\nbar\ndoor\n".to_owned().into()),
//!                 ..Default::default()
//!             })
//!         })
//!         // run, check exit status and map captured outputs
//!         .run()
//!         .unwrap();
//!
//!     assert_eq!(res, vec!["foo", "bar", "door"]);
//!
//!     let err = ls_command()
//!         //mock
//!         .with_exec_replacement_callback(|_cmd, _rs| {
//!             Ok(ExecResult {
//!                 exit_status: 1.into(),
//!                 stdout: Some("foo\nbar\ndoor\n".to_owned().into()),
//!                 ..Default::default()
//!             })
//!         })
//!         .run()
//!         .unwrap_err();
//!
//!     assert_eq!(err.to_string(), "Unexpected exit status. Got: 0x1, Expected: 0x0");
//! }
//! ```
//!
//! # Handling arguments and environment variables
//!
//! ```rust
//! use mapped_command::{Command,ReturnStdoutString, EnvChange};
//! # #[cfg(unix)]
//! # fn main() {
//! std::env::set_var("FOOBAR", "the foo");
//! std::env::set_var("DODO", "no no");
//! let echoed = Command::new("bash", ReturnStdoutString)
//!     .with_arguments(&["-c", "echo $0 ${DODO:-yo} $FOOBAR $BARFOOT $(pwd)", "arg1"])
//!     .with_inherit_env(false)
//!     .with_env_update("BARFOOT", "the bar")
//!     //inherit this even if env inheritance is disabled (it is see above)
//!     .with_env_update("FOOBAR", EnvChange::Inherit)
//!     .with_working_directory_override(Some("/usr"))
//!     .run()
//!     .unwrap();
//!
//! assert_eq!(echoed, "arg1 yo the foo the bar /usr\n");
//! # }
//! ```
//!
use std::{
    borrow::Cow,
    collections::HashMap,
    env::{self, VarsOs},
    ffi::{OsStr, OsString},
    fmt,
    fmt::Display,
    io,
    path::{Path, PathBuf},
};
use thiserror::Error;

pub use self::return_settings::*;

#[macro_use]
mod utils;
mod return_settings;
mod sys;

/// A alternative to `std::process::Command` see module level documentation.
pub struct Command<Output, Error>
where
    Output: 'static,
    Error: From<io::Error> + From<UnexpectedExitStatus> + 'static,
{
    program: OsString,
    arguments: Vec<OsString>,
    env_updates: HashMap<OsString, EnvChange>,
    working_directory_override: Option<PathBuf>,
    expected_exit_status: ExitStatus,
    check_exit_status: bool,
    inherit_env: bool,
    return_settings: Option<Box<dyn OutputMapping<Output = Output, Error = Error>>>,
    run_callback: Option<
        Box<
            dyn FnOnce(
                Self,
                &dyn OutputMapping<Output = Output, Error = Error>,
            ) -> Result<ExecResult, io::Error>,
        >,
    >,
}

impl<Output, Error> Command<Output, Error>
where
    Output: 'static,
    Error: From<io::Error> + From<UnexpectedExitStatus> + 'static,
{
    /// Create a new command for given program and output mapping.
    ///
    /// The output mapping will imply if stdout/stderr is captured and how the
    /// captured output is mapped to a `Result<Self::Output, Self::Error>`.
    ///
    pub fn new(
        program: impl Into<OsString>,
        return_settings: impl OutputMapping<Output = Output, Error = Error>,
    ) -> Self {
        Command {
            program: program.into(),
            arguments: Vec::new(),
            env_updates: HashMap::new(),
            check_exit_status: true,
            inherit_env: true,
            expected_exit_status: ExitStatus::Code(0),
            return_settings: Some(Box::new(return_settings) as _),
            working_directory_override: None,
            run_callback: Some(Box::new(sys::actual_exec_exec_replacement_callback)),
        }
    }

    /// Return the program the command will run.
    pub fn program(&self) -> &OsStr {
        &*self.program
    }

    /// Returns the arguments passed the the program when run.
    pub fn arguments(&self) -> &[OsString] {
        &self.arguments
    }

    /// Returns this command with new arguments added to the end of the argument list
    pub fn with_arguments<T>(mut self, args: impl IntoIterator<Item = T>) -> Self
    where
        T: Into<OsString>,
    {
        self.arguments.extend(args.into_iter().map(|v| v.into()));
        self
    }

    /// Returns this command with a new argument added to the end of the argument list
    pub fn with_argument(mut self, arg: impl Into<OsString>) -> Self {
        self.arguments.push(arg.into());
        self
    }

    /// Return a map of all env variables which will be set/overwritten in the subprocess.
    ///
    /// # Warning
    ///
    /// The keys of env variables have not *not* been evaluated for syntactic validity.
    /// So the given keys can cause process spawning or calls to [`std::env::set_var`] to
    /// fail.
    pub fn env_updates(&self) -> &HashMap<OsString, EnvChange> {
        &self.env_updates
    }

    /// Returns this command with the map of env updates updated by given iterator of key value pairs.
    ///
    /// If any key from the new map already did exist in the current updates it will
    /// replace the old key & value.
    ///
    /// - Common supported values for keys include `OsString`, `&OsStr`, `String`, `&str`.
    /// - Common supported values for values include `EnvChange`, `OsString`, `&OsStr`, `String`,
    ///   `&str`
    ///
    /// So you can pass in containers like `Vec<(&str, &str)>`, `HashMap<&str, &str>` or
    /// `HashMap<OsString, EnvChange>`, etc.
    ///
    /// # Warning
    ///
    /// The keys of env variables will *not* be evaluated for syntactic validity.
    /// Setting a key invalid on given platform *might* cause the process spawning to
    /// fail (e.g. using a key lik `"="` or `""`). It also *might* also do other thinks
    /// like the env variable being passed in but being unaccessible or similar. It's completely
    /// dependent on the OS and the impl. of `std::process::Command` or whatever is used to
    /// execute the command.
    pub fn with_env_updates<K, V>(mut self, map: impl IntoIterator<Item = (K, V)>) -> Self
    where
        K: Into<OsString>,
        V: Into<EnvChange>,
    {
        self.env_updates
            .extend(map.into_iter().map(|(k, v)| (k.into(), v.into())));
        self
    }

    /// Returns this command with the map of env updates updated by one key value pair.
    ///
    /// If the new key already did exist in the current updates it will replace that
    /// old key & value.
    ///
    /// See [`Command::with_env_updates()`].
    pub fn with_env_update(
        mut self,
        key: impl Into<OsString>,
        value: impl Into<EnvChange>,
    ) -> Self {
        self.env_updates.insert(key.into(), value.into());
        self
    }

    /// Returns true if the env of the current process is inherited.
    ///
    /// Updates to then environment are applied after the inheritance:
    ///
    /// - [`EnvChange::Set`] can be use to override inherited env vars, or
    ///   add new ones if no variable with given key was inherited
    /// - [`EnvChange::Remove`] can be used to remove an inherited (or previously added)
    ///   env variable
    /// - [`EnvChange::Inherit`] can be used to state a env variable should be inherited
    ///   even if `inherit_env` is `false`. If `inherit_env` is true this will have no
    ///   effect.
    pub fn inherit_env(&self) -> bool {
        self.inherit_env
    }

    /// Returns this command with a change to weather or the sub-process will inherit env variables.
    ///
    /// See [`Command::inherit_env()`] for how this affects the sub-process env.
    pub fn with_inherit_env(mut self, do_inherit: bool) -> Self {
        self.inherit_env = do_inherit;
        self
    }

    /// Returns a map with all env variables the sub-process spawned by this command would have
    /// if the current processes env is not changed.
    ///
    /// # Site note about `env::set_var()` problems
    ///
    /// Note that if you use `std::env::set_var()` in a multi-threaded setup depending on
    /// the operating system you run this on this can lead to all kind of problem, including
    /// unexpected race conditions in some situations (especially if `inherit_env(true)` is
    /// combined with `EnvChange::Inherit` and multiple variables are changed in another thread
    /// racing with this function and some but not all are covered by `EnvChange::Inherit`).
    ///
    /// Given that [`std::env::set_var()`] should strictly be avoided in a multi-threaded context
    /// this is seen as an acceptable drawback.
    ///
    /// Note that this function + `std::env::set_var()` is not unsafe it might just have a
    /// very unexpected result. Except if `env::set_var()` + reading env races are inherently
    /// unsafe on your system, in which case this has nothing to do with this function.
    pub fn create_expected_env_iter(&self) -> impl Iterator<Item = (Cow<OsStr>, Cow<OsStr>)> {
        let inherit = if self.inherit_env() {
            Some(env::vars_os())
        } else {
            None
        };

        return ExpectedEnvIter {
            self_: self,
            inherit,
            update: Some(self.env_updates.iter()),
        };

        //FIXME[rust/generators] use yield base iterator
        struct ExpectedEnvIter<'a, Output, Error>
        where
            Output: 'static,
            Error: From<io::Error> + From<UnexpectedExitStatus> + 'static,
        {
            self_: &'a Command<Output, Error>,
            inherit: Option<VarsOs>,
            update: Option<std::collections::hash_map::Iter<'a, OsString, EnvChange>>,
        }

        impl<'a, O, E> Iterator for ExpectedEnvIter<'a, O, E>
        where
            O: 'static,
            E: From<io::Error> + From<UnexpectedExitStatus> + 'static,
        {
            type Item = (Cow<'a, OsStr>, Cow<'a, OsStr>);

            fn next(&mut self) -> Option<Self::Item> {
                loop {
                    fused_opt_iter_next!(&mut self.inherit, |(key, val)| {
                        match self.self_.env_updates.get(&key) {
                            Some(_) => continue,
                            None => return Some((Cow::Owned(key), Cow::Owned(val))),
                        }
                    });
                    fused_opt_iter_next!(&mut self.update, |(key, change)| {
                        match change {
                            EnvChange::Set(val) => {
                                return Some((Cow::Borrowed(&key), Cow::Borrowed(&val)));
                            }
                            EnvChange::Inherit => {
                                // Mostly used if inherit_var is valse in which case we *should* not
                                // have done aboves loop-part on vars_os. We could "optimize" this to
                                // handle Inherit in aboves loop if we run that loop, but why add that
                                // complexity?
                                if let Some(val) = env::var_os(&key) {
                                    return Some((Cow::Borrowed(&key), Cow::Owned(val)));
                                } else {
                                    continue;
                                }
                            }
                            EnvChange::Remove => {
                                continue;
                            }
                        }
                    });
                    return None;
                }
            }
        }
    }

    /// Return the working directory which will be used instead of the current working directory.
    ///
    /// If `None` is returned it means no override is set and the working directory will be inherited
    /// from the spawning process.
    pub fn working_directory_override(&self) -> Option<&Path> {
        self.working_directory_override.as_ref().map(|s| &**s)
    }

    /// Replaces the working directory override.
    ///
    /// Setting it to `None` will unset the override making the spawned
    /// process inherit the working directory from the spawning process.
    pub fn with_working_directory_override(
        mut self,
        wd_override: Option<impl Into<PathBuf>>,
    ) -> Self {
        self.working_directory_override = wd_override.map(Into::into);
        self
    }

    /// Return which exit status is treated as success.
    pub fn expected_exit_status(&self) -> ExitStatus {
        self.expected_exit_status
    }

    /// Set which exit status is treated as successful.
    ///
    /// **This enables exit status checking even if it
    ///   was turned of before.**
    pub fn with_expected_exit_status(self, exit_status: impl Into<ExitStatus>) -> Self {
        let mut cmd = self.with_check_exit_status(true);
        cmd.expected_exit_status = exit_status.into();
        cmd
    }

    /// Returns true if the exit status is checked before mapping the output(s).
    pub fn check_exit_status(&self) -> bool {
        self.check_exit_status
    }

    /// Sets if the exit status is checked before mapping the output(s).
    pub fn with_check_exit_status(mut self, val: bool) -> Self {
        self.check_exit_status = val;
        self
    }

    /// Returns true if stdout will be captured.
    ///
    /// # Panics
    ///
    /// **If called in a `exec_replacement_callback` this will panic.**
    pub fn will_capture_stdout(&self) -> bool {
        self.return_settings
            .as_ref()
            .expect("Can not be called in a exec_replacement_callback.")
            .capture_stdout()
    }

    /// Returns true if stderr will be captured.
    ///
    /// # Panics
    ///
    /// **If called in a `exec_replacement_callback` this will panic.**
    pub fn will_capture_stderr(&self) -> bool {
        self.return_settings
            .as_ref()
            .expect("Can not be called in a exec_replacement_callback.")
            .capture_stderr()
    }

    /// Run the command, blocking until completion and then mapping the output.
    ///
    /// This will:
    ///
    /// 1. run the program with the specified arguments and env variables
    /// 2. capture the necessary outputs as specified by the output mapping
    /// 3. if exit status checking was not disabled check the exit status and potentially
    ///    fail.
    /// 4. if 3 doesn't fail now map captured outputs to a `Result<Output, Error>`
    ///
    /// If [`Command::with_exec_replacement_callback()`] is used instead of running the
    /// program and capturing the output the given callback is called. The callback
    /// could mock the program execution. The exit status checking and output mapping
    /// are still done as normal.
    ///
    /// # Panics
    ///
    /// **This will panic if called in a `exec_replacement_callback`.**
    pub fn run(mut self) -> Result<Output, Error> {
        let expected_exit_status = self.expected_exit_status;
        let check_exit_status = self.check_exit_status;
        let return_settings = self
            .return_settings
            .take()
            .expect("run recursively called in exec replacing callback");
        let run_callback = self
            .run_callback
            .take()
            .expect("run recursively called in exec replacing callback");

        let result = run_callback(self, &*return_settings)?;

        if check_exit_status && result.exit_status != expected_exit_status {
            return Err(UnexpectedExitStatus {
                got: result.exit_status,
                expected: expected_exit_status,
            }
            .into());
        } else {
            let stdout = if return_settings.capture_stdout() {
                result.stdout
            } else {
                debug_assert!(result.stdout.is_none());
                None
            };
            let stderr = if return_settings.capture_stderr() {
                result.stderr
            } else {
                debug_assert!(result.stderr.is_none());
                None
            };
            let exit_status = result.exit_status;
            return_settings.map_output(stdout, stderr, exit_status)
        }
    }

    /// Sets a callback which is called instead of executing the command when running the command.
    ///
    /// This is mainly meant to be used for mocking command execution during testing, but can be used for
    /// other thinks, too. E.g. the current implementation does have a default callback for normally executing
    /// the command this method was not called.
    ///
    ///
    /// # Implementing Mocks with an exec_replacement_callback
    ///
    /// You must not call following methods in the callback:
    ///
    /// - [`Command::run()`], recursively calling run will not work.
    /// - [`Command::will_capture_stdout()`], use the passed in output mapping [`OutputMapping::capture_stdout()`] method instead.
    /// - [`Command::will_capture_stderr()`], use the passed in output mapping [`OutputMapping::capture_stderr()`] method instead.
    ///
    /// An emulation of captured output and exit status is returned as [`ExecResult`] instance:
    ///
    /// - Any exit code can be returned including a target specific one,
    ///   the `From<num> for ExitStatus` implementations are useful here.
    /// - If  [`OutputMapping::capture_stdout()`] is `true` then [`ExecResult::stdout`] must be `Some`
    ///   else it must be `None`. Failing to do so will panic on unwrap of debug assertions.
    /// - If  [`OutputMapping::capture_stdout()`] is `true` then [`ExecResult::stdout`] must be `Some`
    ///   else it must be `None`. Failing to do so will panic on unwrap of debug assertions.
    ///
    /// If used for mocking in tests you already know if stdout/stderr is assumed to (not) be
    /// captured so you do not need to access [`OutputMapping::capture_stdout()`]/[`OutputMapping::capture_stdout()`].
    ///
    /// Settings like env updates and inheritance can be retrieved from the passed in `Command` instance.
    ///
    /// # Implement custom subprocess spawning
    ///
    /// *Be aware that if you execute the program in the callback you need to make sure the right program, arguments
    /// stdout/stderr capture setting and env variables are used. Especially note should be taken to how `EnvChange::Inherit`
    /// is handled.*
    ///
    /// The [`Command::create_expected_env_iter()`] method can be used to find what exact env variables
    /// are expected to be in the sub-process. Clearing the sub-process env and then setting all env vars
    /// using [`Command::create_expected_env_iter()`] is not the most efficient but most simple and robust
    /// to changes way to set the env. It's recommended to be used.
    ///
    pub fn with_exec_replacement_callback(
        mut self,
        callback: impl FnOnce(
                Self,
                &dyn OutputMapping<Output = Output, Error = Error>,
            ) -> Result<ExecResult, io::Error>
            + 'static,
    ) -> Self {
        self.run_callback = Some(Box::new(callback));
        self
    }
}

/// Trait used to configure what [`Command::run()`] returns.
pub trait OutputMapping: 'static {
    /// The output produced by this command, if it is run and doesn't fail.
    type Output: 'static;

    /// The error produced by this command, if it is run and does fail.
    type Error: 'static;

    /// Return if stdout needs to be captured for this output mapping `map_output` function.
    ///
    /// *This should be a pure function only depending on `&self`.*
    fn capture_stdout(&self) -> bool;

    /// Return if stderr needs to be captured for this output mapping `map_output` function.
    ///
    /// *This should be a pure function only depending on `&self`.*
    fn capture_stderr(&self) -> bool;

    /// The function called once the command's run completed.
    ///
    /// This function is used to convert the captured stdout/stderr
    /// to an instance of the given `Output` type.
    ///
    /// If exist code checking is enabled and fails this function will
    /// not be called.
    ///
    /// If it is disabled this function will be called and the implementation
    /// can still decide to fail due to an unexpected/bad exit status.
    fn map_output(
        self: Box<Self>,
        stdout: Option<Vec<u8>>,
        stderr: Option<Vec<u8>>,
        exit_status: ExitStatus,
    ) -> Result<Self::Output, Self::Error>;
}

/// The command failed due to an unexpected exit status.
///
/// By default this means the exit status was not 0, but
/// this can be reconfigured.
#[derive(Debug, Error)]
#[error("Unexpected exit status. Got: {got}, Expected: {expected}")]
pub struct UnexpectedExitStatus {
    got: ExitStatus,
    expected: ExitStatus,
}

/// A ExitStatus type similar to `std::process::ExitStatus` but which can be created (e.g. for testing).
///
/// # Display
///
/// If there is an exit code it will always be displayed as hexadecimal.
/// This is done because of two reasons:
///
/// - Some platforms allow rather large exit codes which are just very unreadable (and unrecognizable) in decimal formatting.
/// - The hex format is always bit based which removes confusions around differences between targets having signed and unsigned
///   exit codes. The drawback is that on platforms which do allow negative exit codes you need to convert the number not just
///   from hex to decimal but also consider signing wrt. the max supported unsigned size on that platform.
///
/// An target specific exit status is displayed in a target specific way.
/// The non os specific fallback defaults to displaying `NO_exit_status`.
/// A signal termination exit status on unix will be displayed as e.g.
/// `signal(9)`.
///
///
/// # Os Support
///
/// For now part of this type are only supported for targets of the os families
/// windows and unix(-like).
///
/// If you need support for _any_ other OS feel free to open an issue, I will
/// add the necessary code path for the methods which are not OS independent
/// then.
///
/// Currently this only affects the [`ExitStatus::successful()`] method.
///
/// # Why not `std::process::ExitStatus`?
///
/// The standard library and this library have different design goals, most
/// importantly this library can introduce braking changes while the standard
/// library ones can't really do so.
///
/// Major differences include:
///
/// - Just one enum instead of an `.exit_status() -> Option<i32>` accessor.
/// - Implements `PartialEq<RHS>` for various numbers making testing easier.
/// - Has a platform independent constructor, `std::process::ExitStatus` has
///   various platform specific constructors.
/// - Uses `i64` as exit code to more correctly represents exits codes (see below).
///
/// ## Incompatibilities and limitations.
///
/// Due to the current structures a various exit codes can be constructed which
/// are not possible to appear on the target you are currently compiling against.
/// **This is already true for the std implementation, but with slightly less
/// constraints in our case.** For example if you target linux you can still
/// create a exit code > 0xFF but in linux no exit code > 0xFF can be returned (
/// furthermore returning any exit code > 127 is a cause of unexpected problems
/// and must be avoided).
///
/// Furthermore `std::process::Command` returning a i32 code is a major problem
/// as it's incompatible with various platforms:
///
/// - Windows has a `u32`! exit code, rust std's Command does reinterpret
///   it as `i32` when returning it which in some cases lead to negative
///   exit codes even through there *are not negative exit codes on windows*.
///   Furthermore Fushisa does have a i64 exit status which they currently
///   can't handle at all. *Be aware that this library still uses
///   `std::process::Command` internally and a such can't handle this either*.
///   But we do "fix" the exit code so that an exit code of `u32::MAX` is still
///   `u32::MAX` and not `-1`!.
///
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum ExitStatus {
    /// The process exited with an exit code.
    ///
    /// As this allows any i64 this allows you to create an exit status which can not
    /// appear on the current target. (This is also possible with the standard libraries
    /// `ExitStatus`). This makes testing easier and allows you to test cases of exit
    /// codes which can't appear on your but other platforms.
    ///
    /// # Differences to `std::process::ExitStatus`
    ///
    /// This uses a `i64` as this allows a more correct representation of exit codes.
    ///
    /// *On windows a exit code > `i32::MAX` will be correctly be represented as such
    /// instead of wrongly being displayed as negative number.*
    Code(i64),

    /// An exit status which isn't a simple exit code was returned.
    ///
    /// On unix if a process was directly terminated via an signal no exit code was
    /// set but the signal causing the exit is returned (encoded with other values
    /// in the raw exit status).
    ///
    /// Rust represents this separately as depending on the exact unix-like operating
    /// system it might be encoded in different ways, in some cases instead of a integer
    /// encoding the status a struct with multiple fields is returned, as such there
    /// is no correct or reliable way to encode exit an status just as an number.
    ///
    /// Be aware that for testability [`OpaqueOsExitStatus`] can be created on all platforms
    /// even through e.g. on windows there are only exit codes! Note that the exact inner
    /// implementation of [`OpaqueOsExitStatus`] is platform dependent, but it implements
    /// [`arbitrary_default()`](OpaqueOsExitStatus::target_specific_default())
    OsSpecific(OpaqueOsExitStatus),
}

impl ExitStatus {
    /// Returns true if the command did succeed.
    ///
    /// As not all operating systems use 0 == success we need to have platform
    /// specific code for all of them. Which is infeasible and as such this is
    /// only enabled on the unix and window target family. (Note that windows
    /// and unix are currently the only target families as e.g. linux, all BSD's,
    /// OsX, iOs are unix-like enough to count as part of the unix family).
    #[cfg(any(window, unix))]
    pub fn successful(&self) -> bool {
        match self {
            Self::Code(code) if *code == 0 => true,
            _ => false,
        }
    }
}

impl Display for ExitStatus {
    fn fmt(&self, fter: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::Code(code) => write!(fter, "0x{:X}", code),
            Self::OsSpecific(alt) => Display::fmt(alt, fter),
        }
    }
}

impl Default for ExitStatus {
    fn default() -> Self {
        Self::Code(0)
    }
}

impl From<OpaqueOsExitStatus> for ExitStatus {
    fn from(ooes: OpaqueOsExitStatus) -> Self {
        ExitStatus::OsSpecific(ooes)
    }
}

macro_rules! impl_from_and_partial_eq_for_fitting_int {
    ($($int:ty),*) => ($(
        impl From<$int> for ExitStatus {
            fn from(code: $int) -> Self {
                Self::Code(code as _)
            }
        }

        impl PartialEq<$int> for ExitStatus {
            fn eq(&self, other: &$int) -> bool {
                match self {
                    Self::Code(code) => *code == *other as i64,
                    Self::OsSpecific(_) => false,
                }
            }
        }
    )*);
}

impl_from_and_partial_eq_for_fitting_int!(u8, i8, u16, i16, u32, i32, i64);
/// A platform specific opaque exit status.
///
/// An exit status which is not an exit code, e.g.
/// on unix the signal which terminated an process
/// preventing it from exiting with an exit status.
///
/// **Warning: Besides [`OpaqueOsExitStatus::target_specific_default()`]
/// all other methods only exist on _some_ targets but not all.** As such
/// using them can lead to code which only compiles on some targets.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub struct OpaqueOsExitStatus {
    #[cfg(not(unix))]
    _priv: (),
    #[cfg(unix)]
    signal: i32,
}

impl OpaqueOsExitStatus {
    /// Creates a instance of this type.
    ///
    /// This is meant for allowing non-platform specific tests which
    /// handle the case of a non exit code process exit status.
    ///
    /// Platform specific tests likely still are needed as what
    /// this type means is platform specific.
    ///
    /// This will always create the same default value but it's
    /// a target_specific_value *and* it's picked arbitrary so
    /// it's not really appropriately to implement [`Default`].
    /// (To make clear why it isn't consider `u32` would default
    /// to `246` or similar arbitrary value.)
    pub fn target_specific_default() -> Self {
        Self {
            #[cfg(not(unix))]
            _priv: (),
            #[cfg(unix)]
            signal: 9,
        }
    }

    /// Return the signal number which did lead to the process termination.
    #[cfg(unix)]
    pub fn signal_number(&self) -> i32 {
        self.signal
    }

    /// Create a unix [`OpaqueOsExitStatus`] instance based on the signal code
    /// causing the non exit code termination.
    ///
    /// Like some other aspects you can define (and test) unrealistic signal numbers.
    /// IMHO this is better (more simple, flexible etc.) then to have a result which
    /// is potentially target dependent or a implicit target dependent bit masking.
    ///
    // E.g. on linux and most (all) unix it's limited to 7 bit (&0x7f) but on at least
    // OpenBSD the value 0x7F is reserved and doesn't count as signal (the macro for
    // testing if it exited with an signal excludes it). Also in any case 0 is not a
    // valid signal either.
    //
    // POSIX defines signals as `int` and with this more or less as i32, but this seems to
    // be because of practical reasons i.e. bitmasking a i32 produces a i32. I do not think
    // there are any negative signals at all, nor do there seem to be any platforms with more
    // than a handful of valid signals.
    #[cfg(unix)]
    pub fn from_signal_number(signal: i32) -> Self {
        Self { signal }
    }
}

impl Display for OpaqueOsExitStatus {
    fn fmt(&self, fter: &mut fmt::Formatter) -> fmt::Result {
        #[cfg(not(unix))]
        {
            fter.write_str("NO_EXIT_CODE")
        }
        #[cfg(unix)]
        {
            write!(fter, "signal({})", self.signal)
        }
    }
}

/// Used to determine how a env variable should be updated.
#[derive(Debug, Clone, PartialEq)]
pub enum EnvChange {
    /// Remove the env value if it normally would have been set
    ///
    /// (e.g. because of inherited environment)
    Remove,

    /// Make sure the env variable will have given value in the sub-process.
    Set(OsString),

    /// Make sure the env variable is inherited from the process spawning the sub-process.
    ///
    /// If environment inheritance is disabled (e.g. using `with_inherit_env(false)`) this
    /// will cause given values to still be inherited anyway.
    ///
    /// If environment inheritance is enabled this won't have any effect.
    Inherit,
}

impl From<&Self> for EnvChange {
    fn from(borrow: &Self) -> Self {
        borrow.clone()
    }
}
impl From<&OsString> for EnvChange {
    fn from(val: &OsString) -> Self {
        EnvChange::Set(val.clone())
    }
}

impl From<OsString> for EnvChange {
    fn from(val: OsString) -> Self {
        EnvChange::Set(val)
    }
}

impl From<&OsStr> for EnvChange {
    fn from(val: &OsStr) -> Self {
        EnvChange::Set(val.into())
    }
}

impl From<String> for EnvChange {
    fn from(val: String) -> Self {
        EnvChange::Set(val.into())
    }
}

impl From<&str> for EnvChange {
    fn from(val: &str) -> Self {
        EnvChange::Set(val.into())
    }
}

/// Type used for `exec_replacement_callback` to return mocked output and exit status.
#[derive(Debug, Default)]
pub struct ExecResult {
    /// The exit status the process did exit with.
    pub exit_status: ExitStatus,

    /// The stdout output captured during sub-process execution (if any).
    ///
    /// This must be `Some` if `stdout` is expected to be captured, it must
    /// be `None` if it's expected to not be captured.
    pub stdout: Option<Vec<u8>>,

    /// The stderr output captured during sub-process execution (if any).
    ///
    /// This must be `Some` if `stderr` is expected to be captured, it must
    /// be `None` if it's expected to not be captured.
    pub stderr: Option<Vec<u8>>,
}

#[cfg(test)]
mod tests {
    use super::*;
    use proptest::prelude::*;
    use thiserror::Error;

    #[derive(Debug, Error)]
    enum TestCommandError {
        #[error(transparent)]
        Io(#[from] io::Error),

        #[error(transparent)]
        UnexpectedExitStatus(#[from] UnexpectedExitStatus),

        #[error("TestCase error: {0}")]
        Prop(TestCaseError),
    }

    impl From<TestCaseError> for TestCommandError {
        fn from(prop_err: TestCaseError) -> Self {
            Self::Prop(prop_err)
        }
    }

    impl TestCommandError {
        pub fn unwrap_prop(self) -> TestCaseError {
            match self {
                Self::Io(err) => panic!("unexpected io error: {:?}", err),
                Self::UnexpectedExitStatus(err) => panic!("unexpected exit status: {:?}", err),
                Self::Prop(prop_err) => return prop_err,
            }
        }
    }

    struct TestOutputMapping {
        capture_stdout: bool,
        capture_stderr: bool,
    }

    impl OutputMapping for TestOutputMapping {
        type Output = bool;
        type Error = TestCommandError;

        fn capture_stdout(&self) -> bool {
            self.capture_stdout
        }
        fn capture_stderr(&self) -> bool {
            self.capture_stderr
        }

        fn map_output(
            self: Box<Self>,
            stdout: Option<Vec<u8>>,
            stderr: Option<Vec<u8>>,
            _exit_status: super::ExitStatus,
        ) -> Result<Self::Output, Self::Error> {
            (|| {
                prop_assert_eq!(stdout.is_some(), self.capture_stdout());
                prop_assert_eq!(stderr.is_some(), self.capture_stderr());
                Ok(())
            })()?;
            Ok(true)
        }
    }

    mod Command {
        #![allow(non_snake_case)]

        mod new {
            use super::super::super::*;
            use proptest::prelude::*;

            #[test]
            fn comp_can_be_created_using_str_string_os_str_or_os_string() {
                Command::new("ls", ReturnNothing);
                Command::new("ls".to_owned(), ReturnNothing);
                Command::new(OsString::from("ls"), ReturnNothing);
                Command::new(OsStr::new("ls"), ReturnNothing);
            }

            #[test]
            fn comp_when_creating_command_different_capture_modes_can_be_used() {
                Command::new("foo", ReturnNothing);
                Command::new("foo", ReturnStdout);
                Command::new("foo", ReturnStderr);
                Command::new("foo", ReturnStdoutAndErr);
            }

            proptest! {
                #[test]
                fn the_used_program_can_be_queried(s in any::<OsString>()) {
                    let s = OsStr::new(&*s);
                    let cmd = Command::new(s, ReturnNothing);
                    prop_assert_eq!(&*cmd.program(), s)
                }
            }
        }

        mod arguments {
            use super::super::super::*;
            use proptest::prelude::*;
            use std::{collections::HashSet, iter};

            #[test]
            fn default_arguments_are_empty() {
                let cmd = Command::new("foo", ReturnNothing);
                assert!(cmd.arguments().is_empty());
            }

            #[test]
            fn comp_arguments_can_be_set_from_iterables() {
                Command::new("foo", ReturnNothing).with_arguments(Vec::<OsString>::new());
                Command::new("foo", ReturnNothing).with_arguments(HashSet::<OsString>::new());
                Command::new("foo", ReturnNothing).with_arguments(&[] as &[OsString]);
            }

            proptest! {
                #[test]
                fn new_arguments_can_be_added(
                    cmd in any::<OsString>(),
                    argument in any::<OsString>(),
                    arguments in proptest::collection::vec(any::<OsString>(), 0..5),
                    arguments2 in proptest::collection::vec(any::<OsString>(), 0..5)
                ) {
                    let cmd = OsStr::new(&*cmd);
                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_arguments(&arguments);
                    prop_assert_eq!(cmd.arguments(), &arguments);
                    let cmd = cmd.with_argument(&argument);
                    prop_assert_eq!(
                        cmd.arguments().iter().collect::<Vec<_>>(),
                        arguments.iter().chain(iter::once(&argument)).collect::<Vec<_>>()
                    );
                    let cmd = cmd.with_arguments(&arguments2);
                    prop_assert_eq!(
                        cmd.arguments().iter().collect::<Vec<_>>(),
                        arguments.iter()
                            .chain(iter::once(&argument))
                            .chain(arguments2.iter())
                            .collect::<Vec<_>>()
                    );
                }
            }
        }

        mod run {
            use super::super::super::*;

            #[test]
            fn run_can_lead_to_and_io_error() {
                let res = Command::new("foo", ReturnNothing)
                    .with_exec_replacement_callback(|_, _| {
                        Err(io::Error::new(io::ErrorKind::Other, "random"))
                    })
                    .run();

                res.unwrap_err();
            }

            #[test]
            fn return_no_error_if_the_command_has_zero_exit_status() {
                let res = Command::new("foo", ReturnNothing)
                    .with_exec_replacement_callback(move |_, _| {
                        Ok(ExecResult {
                            exit_status: 0.into(),
                            ..Default::default()
                        })
                    })
                    .run();

                res.unwrap();
            }
        }

        mod ReturnSetting {
            use super::super::super::*;
            use super::super::TestOutputMapping;
            use proptest::prelude::*;

            #[test]
            fn comp_command_must_only_be_generic_over_the_output() {
                if false {
                    let mut _cmd = Command::new("foo", ReturnNothing);
                    _cmd = Command::new("foo", ReturnNothingAlt);
                }

                //---
                struct ReturnNothingAlt;
                impl OutputMapping for ReturnNothingAlt {
                    type Output = ();
                    type Error = CommandExecutionError;
                    fn capture_stdout(&self) -> bool {
                        false
                    }
                    fn capture_stderr(&self) -> bool {
                        false
                    }
                    fn map_output(
                        self: Box<Self>,
                        _stdout: Option<Vec<u8>>,
                        _stderr: Option<Vec<u8>>,
                        _exit_status: ExitStatus,
                    ) -> Result<Self::Output, Self::Error> {
                        unimplemented!()
                    }
                }
            }

            #[test]
            fn allow_custom_errors() {
                let _result: MyError = Command::new("foo", ReturnError)
                    .with_exec_replacement_callback(|_, _| {
                        Ok(ExecResult {
                            exit_status: 0.into(),
                            ..Default::default()
                        })
                    })
                    .run()
                    .unwrap_err();

                //------------
                struct ReturnError;
                impl OutputMapping for ReturnError {
                    type Output = ();
                    type Error = MyError;
                    fn capture_stdout(&self) -> bool {
                        false
                    }
                    fn capture_stderr(&self) -> bool {
                        false
                    }
                    fn map_output(
                        self: Box<Self>,
                        _stdout: Option<Vec<u8>>,
                        _stderr: Option<Vec<u8>>,
                        _exit_status: ExitStatus,
                    ) -> Result<Self::Output, Self::Error> {
                        Err(MyError::BarFoot)
                    }
                }
                #[derive(Debug, Error)]
                enum MyError {
                    #[error("FooBar")]
                    BarFoot,

                    #[error(transparent)]
                    Io(#[from] io::Error),

                    #[error(transparent)]
                    UnexpectedExitStatus(#[from] UnexpectedExitStatus),
                }
            }

            #[should_panic]
            #[test]
            fn returning_stdout_which_should_not_be_captured_triggers_a_debug_assertion() {
                let _ = Command::new("foo", ReturnNothing)
                    .with_check_exit_status(false)
                    .with_exec_replacement_callback(|_, _| {
                        Ok(ExecResult {
                            exit_status: 1.into(),
                            stdout: Some(Vec::new()),
                            ..Default::default()
                        })
                    })
                    .run();
            }

            #[should_panic]
            #[test]
            fn returning_stderr_which_should_not_be_captured_triggers_a_debug_assertion() {
                let _ = Command::new("foo", ReturnNothing)
                    .with_check_exit_status(false)
                    .with_exec_replacement_callback(|_, _| {
                        Ok(ExecResult {
                            exit_status: 1.into(),
                            stderr: Some(Vec::new()),
                            ..Default::default()
                        })
                    })
                    .run();
            }

            proptest! {
                #[test]
                fn only_pass_stdout_stderr_to_map_output_if_return_settings_indicate_they_capture_it(
                    capture_stdout in proptest::bool::ANY,
                    capture_stderr in proptest::bool::ANY
                ) {
                    let res = Command::new("foo", TestOutputMapping { capture_stdout, capture_stderr })
                        .with_exec_replacement_callback(move |_,_| {
                            Ok(ExecResult {
                                exit_status: 0.into(),
                                stdout: if capture_stdout { Some(Vec::new()) } else { None },
                                stderr: if capture_stderr { Some(Vec::new()) } else { None }
                            })
                        })
                        .run()
                        .map_err(|e| e.unwrap_prop())?;

                    assert!(res);
                }

                #[test]
                fn command_provides_a_getter_to_check_if_stdout_and_err_will_be_captured(
                    capture_stdout in proptest::bool::ANY,
                    capture_stderr in proptest::bool::ANY
                ) {
                    let cmd = Command::new("foo", TestOutputMapping { capture_stdout, capture_stderr });
                    prop_assert_eq!(cmd.will_capture_stdout(), capture_stdout);
                    prop_assert_eq!(cmd.will_capture_stderr(), capture_stderr);
                }

                #[test]
                fn capture_hints_are_available_in_the_callback(
                    capture_stdout in proptest::bool::ANY,
                    capture_stderr in proptest::bool::ANY
                ) {
                    Command::new("foo", TestOutputMapping { capture_stdout, capture_stderr })
                        .with_exec_replacement_callback(move |_cmd, return_settings| {
                            assert_eq!(return_settings.capture_stdout(), capture_stdout);
                            assert_eq!(return_settings.capture_stderr(), capture_stderr);
                            Ok(ExecResult {
                                exit_status: 0.into(),
                                stdout: if capture_stdout { Some(Vec::new()) } else { None },
                                stderr: if capture_stderr { Some(Vec::new()) } else { None }
                            })
                        })
                        .run()
                        .unwrap();
                }
            }
        }
        mod environment {
            use super::super::super::*;
            use proptest::prelude::*;

            #[test]
            fn by_default_no_environment_updates_are_done() {
                let cmd = Command::new("foo", ReturnNothing);
                assert!(cmd.env_updates().is_empty());
            }

            #[test]
            fn create_expected_env_iter_includes_the_current_env_by_default() {
                let process_env = env::vars_os()
                    .into_iter()
                    .map(|(k, v)| (Cow::Owned(k), Cow::Owned(v)))
                    .collect::<HashMap<_, _>>();
                let cmd = Command::new("foo", ReturnNothing);
                let created_map = cmd.create_expected_env_iter().collect::<HashMap<_, _>>();
                assert_eq!(process_env, created_map);
            }

            #[test]
            fn by_default_env_is_inherited() {
                let cmd = Command::new("foo", ReturnNothing);
                assert_eq!(cmd.inherit_env(), true);
                //FIXME fluky if there is no single ENV variable set
                assert_ne!(cmd.create_expected_env_iter().count(), 0);
            }

            #[test]
            fn inheritance_of_env_variables_can_be_disabled() {
                let cmd = Command::new("foo", ReturnNothing).with_inherit_env(false);
                assert_eq!(cmd.inherit_env(), false);
                assert_eq!(cmd.create_expected_env_iter().count(), 0);
            }

            proptest! {
                #[test]
                fn new_env_variables_can_be_added(
                    cmd in any::<OsString>(),
                    variable in any::<OsString>(),
                    value in any::<OsString>(),
                    map1 in proptest::collection::hash_map(
                        any::<OsString>(),
                        any::<OsString>().prop_map(|s| EnvChange::Set(s)),
                        0..4
                    ),
                    map2 in proptest::collection::hash_map(
                        any::<OsString>(),
                        any::<OsString>().prop_map(|s| EnvChange::Set(s)),
                        0..4
                    ),
                ) {
                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_env_updates(&map1);

                    prop_assert_eq!(cmd.env_updates(), &map1);

                    let cmd = cmd.with_env_update(&variable, &value);

                    let mut n_map = map1.clone();
                    n_map.insert(variable, EnvChange::Set(value));
                    prop_assert_eq!(cmd.env_updates(), &n_map);

                    let cmd = cmd.with_env_updates(&map2);

                    for (key, value) in &map2 {
                        n_map.insert(key.into(), value.into());
                    }
                    prop_assert_eq!(cmd.env_updates(), &n_map);
                }


                //FIXME on CI this test can leak secrets if it fails
                #[test]
                fn env_variables_can_be_set_to_be_removed_from_inherited_env(
                    cmd in any::<OsString>(),
                    rem_key in proptest::sample::select(env::vars_os().map(|(k,_v)| k).collect::<Vec<_>>())
                ) {
                    let cmd = Command::new(cmd, ReturnNothing).with_env_update(rem_key.clone(), EnvChange::Remove);
                    prop_assert_eq!(cmd.env_updates().get(&rem_key), Some(&EnvChange::Remove));

                    let produced_env = cmd.create_expected_env_iter()
                        .map(|(k,v)| (k.into_owned(), v.into_owned()))
                        .collect::<HashMap<OsString, OsString>>();

                    prop_assert_eq!(produced_env.get(&rem_key), None);
                }

                //FIXME on CI this test can leak secrets if it fails
                #[test]
                fn env_variables_can_be_set_to_be_replaced_from_inherited_env(
                    cmd in any::<OsString>(),
                    rem_key in proptest::sample::select(env::vars_os().map(|(k,_v)| k).collect::<Vec<_>>()),
                    replacement in any::<OsString>()
                ) {
                    let cmd = Command::new(cmd, ReturnNothing).with_env_update(rem_key.clone(), EnvChange::Set(replacement.clone()));
                    let expect = EnvChange::Set(replacement.clone());
                    prop_assert_eq!(cmd.env_updates().get(&rem_key), Some(&expect));
                    let produced_env = cmd.create_expected_env_iter()
                        .map(|(k,v)| (k.into_owned(), v.into_owned()))
                        .collect::<HashMap<OsString, OsString>>();

                    prop_assert_eq!(produced_env.get(&rem_key), Some(&replacement));
                }

                //FIXME on CI this test can leak secrets if it fails
                #[test]
                fn env_variables_can_be_set_to_inherit_even_if_inheritance_is_disabled(
                    cmd in any::<OsString>(),
                    inherit in proptest::sample::select(env::vars_os().map(|(k,_v)| k).collect::<Vec<_>>()),
                )  {
                    let expected_val = env::var_os(&inherit);
                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_inherit_env(false)
                        .with_env_update(&inherit, EnvChange::Inherit);

                    assert_eq!(cmd.create_expected_env_iter().count(), 1);
                    let got_value = cmd.create_expected_env_iter().find(|(k,_v)| &*k==&*inherit)
                        .map(|(_k,v)| v);
                    assert_eq!(
                        expected_val.as_ref().map(|v|&**v),
                        got_value.as_ref().map(|v|&**v)
                    );
                }

                #[test]
                fn env_variables_can_be_set_to_inherit_even_if_inheritance_is_disabled_2(
                    cmd in any::<OsString>(),
                    inherit in proptest::sample::select(env::vars_os().map(|(k,_v)| k).collect::<Vec<_>>()),
                )  {
                    let expected_val = env::var_os(&inherit);
                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_env_update(&inherit, EnvChange::Inherit)
                        .with_inherit_env(false);

                    assert_eq!(cmd.create_expected_env_iter().count(), 1);
                    let got_value = cmd.create_expected_env_iter().find(|(k,_v)| &*k==&*inherit)
                        .map(|(_k,v)| v);
                    assert_eq!(
                        expected_val.as_ref().map(|v|&**v),
                        got_value.as_ref().map(|v|&**v)
                    );
                }

                //FIXME on CI this test can leak secrets if it fails
                #[test]
                fn setting_inherit_does_not_affect_anything_if_we_anyway_inherit_all(
                    cmd in any::<OsString>(),
                    pointless_inherit in proptest::sample::select(env::vars_os().map(|(k,_v)| k).collect::<Vec<_>>()),
                ) {
                    const NON_EXISTING_VAR_KEY: &'static str = "____MAPPED_COMMAND__THIS_SHOULD_NOT_EXIST_AS_ENV_VARIABLE____";
                    assert_eq!(env::var_os(NON_EXISTING_VAR_KEY), None);

                    let expected_values = env::vars_os()
                        .map(|(k,v)| (Cow::Owned(k), Cow::Owned(v)))
                        .collect::<HashMap<_,_>>();

                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_env_update(&pointless_inherit, EnvChange::Inherit)
                        .with_env_update(NON_EXISTING_VAR_KEY, EnvChange::Inherit);

                    let values = cmd.create_expected_env_iter().collect::<HashMap<_,_>>();

                    assert!(!values.contains_key(OsStr::new(NON_EXISTING_VAR_KEY)));
                    assert_eq!(expected_values.len(), values.len());
                    assert_eq!(
                        expected_values.get(&pointless_inherit),
                        values.get(&*pointless_inherit)
                    );

                }
            }
        }

        mod working_directory {
            use super::super::super::*;
            use crate::utils::opt_arbitrary_path_buf;
            use proptest::prelude::*;

            #[test]
            fn by_default_no_explicit_working_directory_is_set() {
                let cmd = Command::new("foo", ReturnNothing);
                assert_eq!(cmd.working_directory_override(), None);
            }

            proptest! {
                #[test]
                fn the_working_directory_can_be_changed(
                    cmd in any::<OsString>(),
                    wd_override in opt_arbitrary_path_buf(),
                    wd_override2 in opt_arbitrary_path_buf()
                ) {
                    let cmd = Command::new(cmd, ReturnNothing)
                        .with_working_directory_override(wd_override.as_ref());

                    assert_eq!(cmd.working_directory_override(), wd_override.as_ref().map(|i|&**i));

                    let cmd = cmd.with_working_directory_override(wd_override2.as_ref());
                    assert_eq!(cmd.working_directory_override(), wd_override2.as_ref().map(|i|&**i));
                }
            }
        }

        mod exit_status_checking {
            use super::super::super::*;
            use proptest::prelude::*;

            #[test]
            fn by_default_the_expected_exit_status_is_0() {
                let cmd = Command::new("foo", ReturnNothing);
                assert_eq!(cmd.expected_exit_status(), 0);
            }

            #[test]
            fn by_default_exit_status_checking_is_enabled() {
                let cmd = Command::new("foo", ReturnNothing);
                assert_eq!(cmd.check_exit_status(), true);
            }

            #[test]
            fn setting_check_exit_status_to_false_disables_it() {
                Command::new("foo", ReturnNothing)
                    .with_check_exit_status(false)
                    .with_exec_replacement_callback(|_, _| {
                        Ok(ExecResult {
                            exit_status: 1.into(),
                            ..Default::default()
                        })
                    })
                    .run()
                    .unwrap();
            }

            #[test]
            fn you_can_expect_no_exit_status_to_be_returned() {
                let cmd = Command::new("foo", ReturnNothing).with_expected_exit_status(
                    ExitStatus::OsSpecific(OpaqueOsExitStatus::target_specific_default()),
                );

                assert_eq!(
                    cmd.expected_exit_status(),
                    ExitStatus::OsSpecific(OpaqueOsExitStatus::target_specific_default())
                );
            }

            #[test]
            fn setting_the_expected_exit_status_will_enable_checking() {
                let cmd = Command::new("foo", ReturnNothing)
                    .with_check_exit_status(false)
                    .with_expected_exit_status(0);

                assert_eq!(cmd.check_exit_status(), true);
            }

            proptest! {
                #[test]
                fn return_an_error_if_the_command_has_non_zero_exit_status(
                    cmd in any::<OsString>(),
                    exit_status in prop_oneof!(..0, 1..).prop_map(ExitStatus::from)
                ) {
                    let res = Command::new(cmd, ReturnNothing)
                        .with_exec_replacement_callback(move |_,_| {
                            Ok(ExecResult {
                                exit_status,
                                ..Default::default()
                            })
                        })
                        .run();

                    res.unwrap_err();
                }

                #[test]
                fn replacing_the_expected_exit_status_causes_error_on_different_exit_status(
                    exit_status in -5..6,
                    offset in prop_oneof!(-100..0, 1..101)
                ) {
                    let res = Command::new("foo", ReturnNothing)
                        .with_expected_exit_status(exit_status)
                        .with_exec_replacement_callback(move |cmd,_| {
                            assert_eq!(cmd.expected_exit_status(), exit_status);
                            Ok(ExecResult {
                                exit_status: ExitStatus::from(exit_status + offset),
                                ..Default::default()
                            })
                        })
                        .run();

                    match res {
                        Err(CommandExecutionError::UnexpectedExitStatus(UnexpectedExitStatus {got, expected})) => {
                            assert_eq!(expected, exit_status);
                            assert_eq!(got, exit_status+offset);
                        },
                        _ => panic!("Unexpected Result: {:?}", res)
                    }
                }

                #[test]
                fn exit_status_checking_can_be_disabled_and_enabled(
                    change1 in proptest::bool::ANY,
                    change2 in proptest::bool::ANY,
                ) {
                    let cmd = Command::new("foo", ReturnNothing)
                        .with_check_exit_status(change1);

                    assert_eq!(cmd.check_exit_status(), change1);

                    let cmd = cmd.with_check_exit_status(change2);
                    assert_eq!(cmd.check_exit_status(), change2);
                }

            }
        }

        mod exec_replacement_callback {
            use std::{cell::RefCell, rc::Rc};

            use super::super::super::*;

            #[test]
            fn program_execution_can_be_replaced_with_an_callback() {
                let was_run = Rc::new(RefCell::new(false));
                let was_run_ = was_run.clone();
                let cmd = Command::new("some_cmd", ReturnStdoutAndErr)
                    .with_exec_replacement_callback(move |for_cmd, _| {
                        *(*was_run_).borrow_mut() = true;
                        assert_eq!(&*for_cmd.program(), "some_cmd");
                        Ok(ExecResult {
                            exit_status: 0.into(),
                            stdout: Some("result=12".to_owned().into()),
                            stderr: Some(Vec::new()),
                        })
                    });

                let res = cmd.run().unwrap();
                assert_eq!(*was_run.borrow_mut(), true);
                assert_eq!(&*res.stdout, "result=12".as_bytes());
                assert_eq!(&*res.stderr, "".as_bytes());
            }
        }
    }

    mod ExitStatus {
        #![allow(non_snake_case)]

        mod display_fmt {
            use crate::{ExitStatus, OpaqueOsExitStatus};

            #[test]
            fn format_exit_status_as_hex() {
                let exit_status = ExitStatus::from(0x7Fi32);
                assert_eq!(&format!("{}", exit_status), "0x7F");
            }

            #[test]
            fn format_negative_exit_status_as_hex() {
                let exit_status = ExitStatus::Code(-1i32 as u32 as _);
                assert_eq!(&format!("{}", exit_status), "0xFFFFFFFF");
            }

            #[test]
            #[cfg(unix)]
            fn display_for_non_exit_code_on_unix() {
                let signal = OpaqueOsExitStatus::from_signal_number(9);
                assert_eq!(&format!("{}", signal), "signal(9)");
            }
        }

        mod new {
            use crate::ExitStatus;

            #[test]
            fn can_be_create_from_many_numbers() {
                let status = ExitStatus::from(12u8);
                assert_eq!(status, ExitStatus::Code(12));
                let status = ExitStatus::from(-12i8);
                assert_eq!(status, ExitStatus::Code(-12));
                let status = ExitStatus::from(12u16);
                assert_eq!(status, ExitStatus::Code(12));
                let status = ExitStatus::from(-12i16);
                assert_eq!(status, ExitStatus::Code(-12));
                let status = ExitStatus::from(u32::MAX);
                assert_eq!(status, ExitStatus::Code(u32::MAX as i64));
                let status = ExitStatus::from(-1i32);
                assert_eq!(status, ExitStatus::Code(-1));
                let status = ExitStatus::from(-13i64);
                assert_eq!(status, ExitStatus::Code(-13));
            }

            #[test]
            fn can_compare_to_many_numbers() {
                let status = ExitStatus::from(12u8);
                assert_eq!(status, 12u8);
                let status = ExitStatus::from(-12i8);
                assert_eq!(status, -12i8);
                let status = ExitStatus::from(12u16);
                assert_eq!(status, 12u16);
                let status = ExitStatus::from(-12i16);
                assert_eq!(status, -12i16);
                let status = ExitStatus::from(u32::MAX);
                assert_eq!(status, u32::MAX);
                let status = ExitStatus::from(-1i32);
                assert_eq!(status, -1i32);
                let status = ExitStatus::from(-13i64);
                assert_eq!(status, -13i64);
            }
        }
    }

    #[cfg(unix)]
    mod signal_number {
        use proptest::prelude::*;

        use crate::OpaqueOsExitStatus;

        proptest! {
            #[test]
            fn from_to_signal_number(
                nr in any::<i32>()
            ) {
                let exit_status = OpaqueOsExitStatus::from_signal_number(nr);
                assert_eq!(exit_status.signal_number(), nr);
            }

        }
    }
}