cronrunner 2.15.0

Run cron jobs manually.
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
pub(crate) mod hash;

pub mod parser;
pub mod reader;
pub mod tokens;

use std::borrow::Cow;
use std::collections::HashMap;
use std::env;
use std::fmt::Write;
use std::path::PathBuf;
use std::process::{Command, Stdio};

use self::parser::Parser;
use self::reader::{ReadError, Reader};
use self::tokens::{CronJob, Token};

/// Default shell used if not overridden by a variable in the crontab.
const DEFAULT_SHELL: &str = "/bin/sh";

#[derive(Debug)]
struct ShellCommand {
    env: HashMap<String, String>,
    shell: String,
    home: PathBuf,
    command: String,
}

/// Low level detail about the run result.
///
/// This is only meant to be used attached to a [`RunResult`], provided
/// by [`Crontab`].
#[derive(Debug, Eq, PartialEq)]
pub enum RunResultDetail {
    /// If the command could be run.
    DidRun {
        /// The exit code, or `None` if the process was killed early.
        exit_code: Option<i32>,
    },
    /// If the command failed to execute at all (e.g., executable not
    /// found).
    DidNotRun {
        /// Explanation of the error in plain English.
        reason: String,
    },
    /// If the command is run in detached mode and the child process got
    /// spawned successfully.
    IsRunning { pid: u32 },
}

/// Info about a run, provided by [`Crontab`] once it is finished.
#[derive(Debug, Eq, PartialEq)]
pub struct RunResult {
    /// Whether the command was successful or not. _Successful_ means
    /// the command ran _AND_ exited without errors (exit 0).
    ///
    /// <div class="warning">
    ///
    /// Commands ran in detached mode will set `was_successful` to
    /// `false`. This is not a special case according to the previous
    /// definition (the command did not yet exit), but it can be
    /// surprising. Instead, detached commands take advantage of
    /// `detail` to tell whether it was launched successfully, and
    /// provide a PID in that case.
    ///
    /// </div>
    pub was_successful: bool,
    /// Detail about the run. May contain exit code or reason of
    /// failure, see [`RunResultDetail`].
    pub detail: RunResultDetail,
}

/// Do things with jobs found in the crontab.
///
/// Chiefly, [`Crontab`] provides the [`run()`](Crontab::run()) method,
/// and takes a [`Vec<Token>`](Token) as input, usually from [`Parser`].
#[derive(Debug)]
pub struct Crontab {
    pub tokens: Vec<Token>,
    env: Option<HashMap<String, String>>,
}

impl Crontab {
    #[must_use]
    pub fn new(tokens: Vec<Token>) -> Self {
        Self { tokens, env: None }
    }

    /// Whether there are jobs in the crontab at all.
    ///
    /// Crontab could be empty or only contain variables, comments or
    /// unrecognized tokens.
    #[must_use]
    pub fn has_runnable_jobs(&self) -> bool {
        self.tokens
            .iter()
            .any(|token| matches!(token, Token::CronJob(_)))
    }

    /// All the jobs, and only the jobs.
    #[must_use]
    pub fn jobs(&self) -> Vec<&CronJob> {
        self.tokens
            .iter()
            .filter_map(|token| {
                if let Token::CronJob(job) = token {
                    Some(job)
                } else {
                    None
                }
            })
            .collect()
    }

    /// Whether a given job is in the crontab or not.
    #[must_use]
    pub fn has_job(&self, job: &CronJob) -> bool {
        self.jobs().contains(&job)
    }

    /// Get a job object from its [`UID`](CronJob::uid).
    #[must_use]
    pub fn get_job_from_uid(&self, uid: usize) -> Option<&CronJob> {
        self.jobs().into_iter().find(|job| job.uid == uid)
    }

    /// Get a job object from its [`fingerprint`](CronJob::fingerprint).
    #[must_use]
    pub fn get_job_from_fingerprint(&self, fingerprint: u64) -> Option<&CronJob> {
        self.jobs()
            .into_iter()
            .find(|job| job.fingerprint == fingerprint)
    }

    /// Get a job object from its [`tag`](CronJob::tag).
    #[must_use]
    pub fn get_job_from_tag(&self, tag: &str) -> Option<&CronJob> {
        self.jobs()
            .into_iter()
            .find(|job| job.tag.as_ref().is_some_and(|job_tag| job_tag == tag))
    }

    /// Override `Crontab`'s default inherited environment.
    ///
    /// By default, jobs are run inheriting the env from the parent
    /// process. This method lets you set a custom environment instead.
    ///
    /// <div class="warning">
    ///
    /// Environments are not additive. The job's env is _replaced_ by
    /// `env`, and not merged with it. If you want to merge the envs,
    /// you will have to do that yourself beforehand.
    ///
    /// </div>
    ///
    /// Note that `set_env()` has no effect on variables declared inside
    /// the crontab or those set on a per-job basis. It only overrides
    /// the default parent-process-inherited environment.
    ///
    /// This requires the `Crontab` instance to be _mutable_.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use std::collections::HashMap;
    /// # use cronrunner::crontab::Crontab;
    /// # let mut crontab: Crontab = Crontab::new(Vec::new());
    /// // let mut crontab = crontab::make_instance()?;
    ///
    /// crontab.set_env(HashMap::from([
    ///     (String::from("FOO"), String::from("bar")),
    ///     (String::from("BAZ"), String::from("42")),
    /// ]));
    ///
    /// // let res = crontab.run(/* ... */);
    /// ```
    pub fn set_env(&mut self, env: HashMap<String, String>) {
        self.env = Some(env);
    }

    /// Run a job.
    ///
    /// By default, the job inherits the environment from the parent
    /// process. Use [`Crontab::set_env()`] to set a custom environment
    /// instead.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use cronrunner::crontab::{Crontab, RunResult};
    /// # use cronrunner::tokens::{CronJob, Token};
    /// #
    /// # let crontab: Crontab = Crontab::new(vec![Token::CronJob(CronJob {
    /// #     uid: 1,
    /// #     fingerprint: 13_376_942,
    /// #     tag: None,
    /// #     schedule: String::new(),
    /// #     command: String::new(),
    /// #     description: None,
    /// #     section: None,
    /// # })]);
    /// #
    /// let job: &CronJob = crontab.get_job_from_uid(1).expect("pretend it exists");
    ///
    /// let result: RunResult = crontab.run(job);
    ///
    /// if result.was_successful {
    ///     // ...
    /// }
    /// ```
    ///
    /// # Errors
    ///
    /// [`Crontab::run()`] will return a [`RunResult`] regardless of
    /// whether the run succeeded or not.
    ///
    /// [`RunResult::was_successful`] will be set to `true` if the
    /// command ran _AND_ returned `0`, and will be set to `false` in
    /// any other case.
    ///
    /// Unless a run failed (as in the command was not run at all), the
    /// exit code will be provided in [`RunResult`] (but can be `None`
    /// if the process got killed).
    ///
    /// A run can fail if:
    ///
    /// - An invalid job UID was provided.
    /// - The Home directory cannot be read from the environment.
    /// - The shell executable cannot be found.
    #[must_use]
    pub fn run(&self, job: &CronJob) -> RunResult {
        let mut command = match self.prepare_command(job) {
            Ok(command) => command,
            Err(res) => return res,
        };

        let status = command.status();

        match status {
            Ok(status) => RunResult {
                was_successful: status.success(),
                detail: RunResultDetail::DidRun {
                    exit_code: status.code(),
                },
            },
            Err(_) => RunResult {
                was_successful: false,
                detail: RunResultDetail::DidNotRun {
                    reason: String::from("Failed to run command (does shell exist?)."),
                },
            },
        }
    }

    /// Run and detach job.
    ///
    /// Mostly the same as [`Crontab::run()`], but doesn't wait for the
    /// job to be finished (returns immediately).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use cronrunner::crontab::{Crontab, RunResult, RunResultDetail};
    /// # use cronrunner::tokens::{CronJob, Token};
    /// #
    /// # let crontab: Crontab = Crontab::new(vec![Token::CronJob(CronJob {
    /// #     uid: 1,
    /// #     fingerprint: 13_376_942,
    /// #     tag: None,
    /// #     schedule: String::new(),
    /// #     command: String::new(),
    /// #     description: None,
    /// #     section: None,
    /// # })]);
    /// #
    /// let job: &CronJob = crontab.get_job_from_fingerprint(13_376_942).expect("pretend it exists");
    ///
    /// let result: RunResult = crontab.run_detached(job);
    ///
    /// if let RunResultDetail::IsRunning { pid } = result.detail {
    ///     // ...
    /// }
    /// ```
    ///
    /// # Errors
    ///
    /// [`Crontab::run()`] will return a [`RunResult`] regardless of
    /// whether the run succeeded or not.
    ///
    /// [`RunResult::was_successful`] will always be set to `false`,
    /// because the job is only spawned, we don't wait for it to finish.
    ///
    /// [`RunResult::detail`] will be [`RunResultDetail::IsRunning`],
    /// which will contain the PID of the spawned process.
    #[must_use]
    pub fn run_detached(&self, job: &CronJob) -> RunResult {
        let mut command = match self.prepare_command(job) {
            Ok(command) => command,
            Err(res) => return res,
        };

        #[cfg(not(tarpaulin_include))] // Wrongly marked uncovered.
        let child = command
            .stdin(Stdio::null())
            .stdout(Stdio::null())
            .stderr(Stdio::null())
            .spawn();

        match child {
            Ok(child) => RunResult {
                // We don't know yet, and `false` enables us to take
                // advantage of `detail` more easily, as calling code
                // will naturally fall back to it.
                was_successful: false,
                detail: RunResultDetail::IsRunning { pid: child.id() },
            },
            Err(_) => RunResult {
                was_successful: false,
                detail: RunResultDetail::DidNotRun {
                    reason: String::from("Failed to run command (does shell exist?)."),
                },
            },
        }
    }

    fn prepare_command(&self, job: &CronJob) -> Result<Command, RunResult> {
        let shell_command = match self.make_shell_command(job) {
            Ok(shell_command) => shell_command,
            Err(reason) => {
                return Err(RunResult {
                    was_successful: false,
                    detail: RunResultDetail::DidNotRun { reason },
                });
            }
        };

        #[cfg(not(tarpaulin_include))] // Wrongly marked uncovered.
        {
            let mut command = Command::new(shell_command.shell);

            if let Some(env) = self.env.as_ref() {
                command.env_clear().envs(env);
            }

            command
                .envs(&shell_command.env)
                .current_dir(shell_command.home)
                .arg("-c")
                .arg(shell_command.command);

            Ok(command)
        }
    }

    fn make_shell_command(&self, job: &CronJob) -> Result<ShellCommand, String> {
        self.ensure_job_exists(job)?;

        let mut env = self.extract_variables(job);
        let shell = Self::determine_shell_to_use(&mut env);
        let home = Self::determine_home_to_use(&mut env)?;
        let command = job.command.clone();

        Ok(ShellCommand {
            env,
            shell,
            home,
            command,
        })
    }

    fn ensure_job_exists(&self, job: &CronJob) -> Result<(), String> {
        if !self.has_job(job) {
            return Err(String::from("The given job is not in the crontab."));
        }
        Ok(())
    }

    fn extract_variables(&self, target_job: &CronJob) -> HashMap<String, String> {
        let mut variables: HashMap<String, String> = HashMap::new();
        for token in &self.tokens {
            if let Token::Variable(variable) = token {
                variables.insert(variable.identifier.clone(), variable.value.clone());
            } else if let Token::CronJob(job) = token {
                if job == target_job {
                    break; // Variables coming after the job are not used.
                }
            }
        }
        variables
    }

    fn determine_shell_to_use(env: &mut HashMap<String, String>) -> String {
        if let Some(shell) = env.remove("SHELL") {
            // Set explicitly in Crontab's env.
            shell
        } else {
            String::from(DEFAULT_SHELL)
        }
    }

    fn determine_home_to_use(env: &mut HashMap<String, String>) -> Result<PathBuf, String> {
        if let Some(home) = env.remove("HOME") {
            // Set explicitly in Crontab's env.
            Ok(PathBuf::from(home))
        } else {
            Ok(Self::get_home_directory()?)
        }
    }

    fn get_home_directory() -> Result<PathBuf, String> {
        if let Some(home_directory) = env::home_dir() {
            Ok(home_directory)
        } else {
            Err(String::from("Could not determine Home directory."))
        }
    }
}

impl Crontab {
    #[must_use]
    pub fn to_json(&self) -> String {
        let jobs = self.jobs();

        let mut json = String::with_capacity(jobs.len() * 250);
        let mut jobs = jobs.iter().peekable();

        _ = write!(json, "[");
        while let Some(job) = jobs.next() {
            _ = write!(json, "{{");
            _ = write!(json, r#""uid":{},"#, job.uid);
            _ = write!(json, r#""fingerprint":"{:x}","#, job.fingerprint);
            _ = write!(
                json,
                r#""tag":{},"#,
                job.tag.as_ref().map_or_else(
                    || Cow::Borrowed("null"),
                    |tag| { Cow::Owned(format!(r#""{}""#, tag.replace('"', r#"\""#))) }
                )
            );
            _ = write!(json, r#""schedule":"{}","#, job.schedule);
            _ = write!(
                json,
                r#""command":"{}","#,
                job.command.replace('"', r#"\""#)
            );
            _ = write!(
                json,
                r#""description":{},"#,
                job.description.as_ref().map_or_else(
                    || Cow::Borrowed("null"),
                    |description| {
                        Cow::Owned(format!(r#""{}""#, description.0.replace('"', r#"\""#)))
                    }
                )
            );
            _ = write!(
                json,
                r#""section":{}"#,
                job.section.as_ref().map_or_else(
                    || Cow::Borrowed("null"),
                    |section| Cow::Owned(format!(
                        r#"{{"uid":{},"title":"{}"}}"#,
                        section.uid,
                        section.title.replace('"', r#"\""#)
                    ))
                )
            );
            _ = write!(json, "}}");

            if jobs.peek().is_some() {
                _ = write!(json, ",");
            }
        }
        _ = write!(json, "]");

        json
    }
}

/// Create an instance of [`Crontab`].
///
/// This helper reads the current user's crontab and creates a
/// [`Crontab`] instance out of it.
///
/// # Examples
///
/// ```rust
/// use cronrunner::crontab;
///
/// let crontab = match crontab::make_instance() {
///     Ok(crontab) => crontab,
///     Err(_) => return (),
/// };
/// ```
///
/// # Errors
///
/// Will forward [`ReadError`] from [`Reader`] if any.
pub fn make_instance() -> Result<Crontab, ReadError> {
    let crontab: String = Reader::read()?;
    let tokens: Vec<Token> = Parser::parse(&crontab);

    Ok(Crontab::new(tokens))
}

#[cfg(test)]
mod tests {
    use self::tokens::{Comment, CommentKind, JobDescription, Variable};
    use super::*;

    // Warning: These tests MUST be run sequentially. Running them in
    // parallel threads may cause conflicts with environment variables,
    // as a variable may be overridden before it is used.

    fn tokens() -> Vec<Token> {
        vec![
            Token::Comment(Comment {
                value: String::from("# CronRunner Demo"),
                kind: CommentKind::Regular,
            }),
            Token::Comment(Comment {
                value: String::from("# ---------------"),
                kind: CommentKind::Regular,
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@reboot"),
                command: String::from("/usr/bin/bash ~/startup.sh"),
                description: None,
                section: None,
            }),
            Token::Comment(Comment {
                value: String::from(
                    "# Double-hash comments (##) immediately preceding a job are used as",
                ),
                kind: CommentKind::Regular,
            }),
            Token::Comment(Comment {
                value: String::from("# description. See below:"),
                kind: CommentKind::Regular,
            }),
            Token::Comment(Comment {
                value: String::from("## Update brew."),
                kind: CommentKind::Description,
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("30 20 * * *"),
                command: String::from("/usr/local/bin/brew update && /usr/local/bin/brew upgrade"),
                description: Some(JobDescription(String::from("Update brew."))),
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("bar"),
            }),
            Token::Comment(Comment {
                value: String::from("## Print variable."),
                kind: CommentKind::Description,
            }),
            Token::CronJob(CronJob {
                uid: 3,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("* * * * *"),
                command: String::from("echo $FOO"),
                description: Some(JobDescription(String::from("Print variable."))),
                section: None,
            }),
            Token::Comment(Comment {
                value: String::from("# Do nothing (this is a regular comment)."),
                kind: CommentKind::Regular,
            }),
            Token::CronJob(CronJob {
                uid: 4,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@reboot"),
                command: String::from(":"),
                description: None,
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/bash"),
            }),
            Token::CronJob(CronJob {
                uid: 5,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed by bash!'"),
                description: None,
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/<custom>"),
            }),
            Token::CronJob(CronJob {
                uid: 6,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@yerly"),
                command: String::from("./cleanup.sh"),
                description: None,
                section: None,
            }),
        ]
    }

    #[test]
    fn has_runnable_jobs() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@hourly"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        assert!(crontab.has_runnable_jobs());
    }

    #[test]
    fn has_no_runnable_jobs() {
        let crontab = Crontab::new(vec![
            Token::Comment(Comment {
                value: String::from("# This is a comment"),
                kind: CommentKind::Regular,
            }),
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/bash"),
            }),
        ]);

        assert!(!crontab.has_runnable_jobs());
    }

    #[test]
    fn has_no_runnable_jobs_because_crontab_is_empty() {
        let crontab = Crontab::new(vec![]);

        assert!(!crontab.has_runnable_jobs());
    }

    #[test]
    fn list_of_jobs() {
        let crontab = Crontab::new(tokens());

        let tokens = tokens();
        let jobs: Vec<&CronJob> = tokens
            .iter()
            .filter_map(|token| {
                if let Token::CronJob(job) = token {
                    Some(job)
                } else {
                    None
                }
            })
            .collect();

        assert_eq!(crontab.jobs(), jobs);
    }

    #[test]
    fn has_job() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("docker image prune --force"),
            description: None,
            section: None,
        })]);

        // Same job, same UID.
        assert!(crontab.has_job(&CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("docker image prune --force"),
            description: None,
            section: None,
        }),);
        // Same job, different UID.
        assert!(!crontab.has_job(&CronJob {
            uid: 0,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("docker image prune --force"),
            description: None,
            section: None,
        }),);
        // Different job, same UID.
        assert!(!crontab.has_job(&CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("<invalid>"),
            command: String::from("<invalid>"),
            description: None,
            section: None,
        }),);
    }

    #[test]
    fn get_job_from_uid() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@reboot"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_uid(1).unwrap();

        assert_eq!(
            *job,
            CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@reboot"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }
        );
    }

    #[test]
    fn get_job_from_uid_not_in_crontab() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_uid(42);

        assert!(job.is_none());
    }

    #[test]
    fn get_job_from_fingerprint() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@reboot"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_fingerprint(13_376_942).unwrap();

        assert_eq!(
            *job,
            CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@reboot"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }
        );
    }

    #[test]
    fn get_job_from_fingerprint_not_in_crontab() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_fingerprint(42);

        assert!(job.is_none());
    }

    #[test]
    fn get_job_from_tag() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: Some(String::from("my-tag")),
            schedule: String::from("@reboot"),
            command: String::from("echo 'hello, world'"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_tag("my-tag").unwrap();

        assert_eq!(
            *job,
            CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: Some(String::from("my-tag")),
                schedule: String::from("@reboot"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }
        );
    }

    #[test]
    fn get_job_from_tag_not_in_crontab() {
        let crontab = Crontab::new(vec![
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@daily"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 369_108,
                tag: Some(String::from("MY-TAG")),
                schedule: String::from("@daily"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_tag("my-tag");

        assert!(job.is_none());
    }

    #[test]
    fn two_equal_jobs_are_treated_as_different_jobs() {
        let crontab = Crontab::new(vec![
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@daily"),
                command: String::from("df -h > ~/track_disk_usage.txt"),
                description: Some(JobDescription(String::from("Track disk usage."))),
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("bar"),
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 108_216_215,
                tag: None,
                schedule: String::from("@daily"),
                command: String::from("df -h > ~/track_disk_usage.txt"),
                description: Some(JobDescription(String::from("Track disk usage."))),
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(2).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        // If 'FOO=bar' is not included, it means the first of the twin
        // jobs was used instead of the second that we selected.
        assert_eq!(
            command.env,
            HashMap::from([(String::from("FOO"), String::from("bar"))])
        );
        assert_eq!(command.command, "df -h > ~/track_disk_usage.txt");
    }

    #[test]
    fn set_env() {
        let mut crontab = Crontab::new(Vec::new());

        assert!(crontab.env.is_none());

        crontab.set_env(HashMap::from([(String::from("FOO"), String::from("bar"))]));

        assert!(
            crontab.env.is_some_and(
                |env| env == HashMap::from([(String::from("FOO"), String::from("bar"))])
            )
        );
    }

    #[test]
    fn set_env_replaces_previous_one() {
        let mut crontab = Crontab::new(Vec::new());

        let env1 = HashMap::from([(String::from("FOO"), String::from("bar"))]);
        let env2 = HashMap::from([(String::from("BAZ"), String::from("42"))]);

        crontab.set_env(env1);
        crontab.set_env(env2.clone());

        assert!(crontab.env.is_some_and(|env| env == env2));
    }

    #[test]
    fn working_directory_is_home_directory() {
        unsafe {
            env::set_var("HOME", "/home/<test>");
        }

        let home_directory = Crontab::get_home_directory().unwrap();

        assert_eq!(home_directory.to_string_lossy(), "/home/<test>");
    }

    #[test]
    fn run_cron_without_variable() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@reboot"),
            command: String::from("/usr/bin/bash ~/startup.sh"),
            description: Some(JobDescription(String::from("Description."))),
            section: None,
        })]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.command, "/usr/bin/bash ~/startup.sh");
    }

    #[test]
    fn run_cron_with_variable() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("bar"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("* * * * *"),
                command: String::from("echo $FOO"),
                description: Some(JobDescription(String::from("Print variable."))),
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(
            command.env,
            HashMap::from([(String::from("FOO"), String::from("bar"))])
        );
        assert_eq!(command.command, "echo $FOO");
    }

    #[test]
    fn run_cron_after_variable_but_not_right_after_it() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("bar"),
            }),
            Token::Comment(Comment {
                value: String::from("## Print variable."),
                kind: CommentKind::Description,
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("* * * * *"),
                command: String::from("echo $FOO"),
                description: Some(JobDescription(String::from("Print variable."))),
                section: None,
            }),
            Token::Comment(Comment {
                value: String::from("# Do nothing (this is a regular comment)."),
                kind: CommentKind::Regular,
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@reboot"),
                command: String::from(":"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(2).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(
            command.env,
            HashMap::from([(String::from("FOO"), String::from("bar"))])
        );
        assert_eq!(command.command, ":");
    }

    #[test]
    fn double_variable_change() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("bar"),
            }),
            Token::Variable(Variable {
                identifier: String::from("FOO"),
                value: String::from("baz"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("30 9 * * * "),
                command: String::from("echo 'gm'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(
            command.env,
            HashMap::from([(String::from("FOO"), String::from("baz"))])
        );
        assert_eq!(command.command, "echo 'gm'");
    }

    #[test]
    fn run_cron_with_default_shell() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@reboot"),
            command: String::from("cat a-file.txt"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.shell, DEFAULT_SHELL);
        assert_eq!(command.command, "cat a-file.txt");
    }

    #[test]
    fn run_cron_with_different_shell() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/bash"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed by bash!'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.env, HashMap::new());
        assert_eq!(command.shell, "/bin/bash");
        assert_eq!(command.command, "echo 'I am echoed by bash!'");
    }

    #[test]
    fn shell_variable_is_removed_from_env() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/<custom>"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed by a custom shell!'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert!(!command.env.contains_key("SHELL"));
        assert_eq!(command.shell, "/bin/<custom>");
    }

    #[test]
    fn double_shell_change() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/bash"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed by bash!'"),
                description: None,
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("SHELL"),
                value: String::from("/bin/zsh"),
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed by zsh!'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(2).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.shell, "/bin/zsh");
        assert_eq!(command.command, "echo 'I am echoed by zsh!'");
    }

    #[test]
    fn run_cron_with_default_home() {
        unsafe {
            env::set_var("HOME", "/home/<default>");
        }

        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@daily"),
            command: String::from("/usr/bin/bash ~/startup.sh"),
            description: None,
            section: None,
        })]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.home.to_string_lossy(), "/home/<default>");
    }

    #[test]
    fn run_cron_with_different_home() {
        unsafe {
            env::set_var("HOME", "/home/<default>");
        }

        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/<custom>"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@yearly"),
                command: String::from("./cleanup.sh"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.env, HashMap::new());
        assert_eq!(command.home.to_string_lossy(), "/home/<custom>");
        assert_eq!(command.command, "./cleanup.sh");
    }

    #[test]
    fn home_variable_is_removed_from_env() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/<custom>"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I am echoed in a different Home!'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(1).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert!(!command.env.contains_key("HOME"));
        assert_eq!(command.home.to_string_lossy(), "/home/<custom>");
    }

    // Failure is too hard, and too platform-specific to provoke.
    //#[test]
    //fn get_home_directory_error() {
    //    unsafe {
    //        env::remove_var("HOME");
    //    }
    //
    //    let crontab = Crontab::new(vec![Token::CronJob(CronJob {
    //        uid: 1,
    //        fingerprint: 13_376_942,
    //        tag: None,
    //        schedule: String::from("@reboot"),
    //        command: String::from("/usr/bin/bash ~/startup.sh"),
    //        description: None,
    //        section: None,
    //    })]);
    //
    //    let job = crontab.get_job_from_uid(1).unwrap();
    //    let error = crontab.make_shell_command(job).unwrap_err();
    //
    //    assert_eq!(error, "Could not read Home directory from environment.");
    //
    //    // If we don't re-create it, other tests will fail.
    //    unsafe {
    //        env::set_var("HOME", "/home/<test>");
    //    }
    //}

    #[test]
    fn double_home_change() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/user1"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I run is user1's Home!'"),
                description: None,
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/user2"),
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 13_376_942,
                tag: None,
                schedule: String::from("@hourly"),
                command: String::from("echo 'I run is user2's Home!'"),
                description: None,
                section: None,
            }),
        ]);

        let job = crontab.get_job_from_uid(2).unwrap();
        let command = crontab.make_shell_command(job).unwrap();

        assert_eq!(command.home.to_string_lossy(), "/home/user2");
        assert_eq!(command.command, "echo 'I run is user2's Home!'");
    }

    #[test]
    fn run_cron_with_non_existing_job() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@hourly"),
            command: String::from("echo 'I am echoed by bash!'"),
            description: None,
            section: None,
        })]);
        let job_not_in_crontab = CronJob {
            uid: 42,
            fingerprint: 13_376_942,
            tag: None,
            schedule: String::from("@never"),
            command: String::from("sleep infinity"),
            description: None,
            section: None,
        };

        let error = crontab.make_shell_command(&job_not_in_crontab).unwrap_err();

        assert_eq!(error, "The given job is not in the crontab.");
    }

    #[test]
    fn to_json() {
        let crontab = Crontab::new(vec![
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/user1"),
            }),
            Token::CronJob(CronJob {
                uid: 1,
                fingerprint: 13_376_942,
                tag: Some(String::from("taggy \"tag\"")),
                schedule: String::from("@daily"),
                command: String::from("/usr/bin/bash ~/startup.sh"),
                description: None,
                section: None,
            }),
            Token::Variable(Variable {
                identifier: String::from("HOME"),
                value: String::from("/home/user2"),
            }),
            Token::CronJob(CronJob {
                uid: 2,
                fingerprint: 17_118_619_922_108_271_534,
                tag: None,
                schedule: String::from("* * * * *"),
                command: String::from("echo \"$FOO\""),
                description: Some(JobDescription(String::from("Print \"variable\"."))),
                section: Some(tokens::JobSection {
                    uid: 1,
                    title: String::from("Some \"testing\" going on here..."),
                }),
            }),
        ]);

        let json = crontab.to_json();

        println!("{}", &json);
        assert_eq!(
            json,
            r#"[{"uid":1,"fingerprint":"cc1dae","tag":"taggy \"tag\"","schedule":"@daily","command":"/usr/bin/bash ~/startup.sh","description":null,"section":null},{"uid":2,"fingerprint":"ed918e1eee304bae","tag":null,"schedule":"* * * * *","command":"echo \"$FOO\"","description":"Print \"variable\".","section":{"uid":1,"title":"Some \"testing\" going on here..."}}]"#
        );
    }
}