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
// cronrunner — Run cron jobs manually.
// Copyright (C) 2024  Quentin Richert
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

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

use std::collections::HashMap;
use std::env;
use std::process::{Command, Stdio};

pub use self::parser::Parser;
pub use self::reader::{ReadError, ReadErrorDetail, Reader};
pub use self::tokens::{CronJob, JobDescription, JobSection, 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: String,
    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>,
}

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

    /// 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().iter().any(|x| *x == job)
    }

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

    /// Run a job.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use cronrunner::crontab::{CronJob, Crontab, RunResult, Token};
    /// #
    /// # let crontab: Crontab = Crontab::new(vec![Token::CronJob(CronJob {
    /// #     uid: 1,
    /// #     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::{CronJob, Crontab, RunResult, RunResultDetail, Token};
    /// #
    /// # let crontab: Crontab = Crontab::new(vec![Token::CronJob(CronJob {
    /// #     uid: 1,
    /// #     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_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,
        };

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

        let mut command = Command::new(shell_command.shell);

        command
            // .env_clear() // TODO: Cleaner env?
            .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") {
            shell
        } else {
            String::from(DEFAULT_SHELL)
        }
    }

    fn determine_home_to_use(env: &mut HashMap<String, String>) -> Result<String, String> {
        if let Some(home) = env.remove("HOME") {
            Ok(home)
        } else {
            Ok(Self::get_home_directory()?)
        }
    }

    fn get_home_directory() -> Result<String, String> {
        if let Ok(home_directory) = env::var("HOME") {
            Ok(home_directory)
        } else {
            Err(String::from(
                "Could not read Home directory from environment.",
            ))
        }
    }
}

/// 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 super::tokens::{Comment, CommentKind, 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,
                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,
                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,
                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,
                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,
                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,
                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,
            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,
            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,
            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,
            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,
            schedule: String::from("<invalid>"),
            command: String::from("<invalid>"),
            description: None,
            section: None,
        }),);
    }

    #[test]
    fn get_job() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            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,
                schedule: String::from("@reboot"),
                command: String::from("echo 'hello, world'"),
                description: None,
                section: None,
            }
        );
    }

    #[test]
    fn get_job_not_in_crontab() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            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 two_equal_jobs_are_treated_as_different_jobs() {
        let crontab = Crontab::new(vec![
            Token::CronJob(CronJob {
                uid: 1,
                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,
                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 working_directory_is_home_directory() {
        env::set_var("HOME", "/home/<test>");

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

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

    #[test]
    fn run_cron_without_variable() {
        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            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,
                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,
                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,
                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,
                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,
            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,
                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,
                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,
                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,
                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() {
        env::set_var("HOME", "/home/<default>");

        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            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, "/home/<default>");
    }

    #[test]
    fn run_cron_with_different_home() {
        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,
                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, "/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,
                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, "/home/<custom>");
    }

    #[test]
    fn get_home_directory_error() {
        env::remove_var("HOME");

        let crontab = Crontab::new(vec![Token::CronJob(CronJob {
            uid: 1,
            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)
            .expect_err("should be an error");

        assert_eq!(error, "Could not read Home directory from environment.");

        // If we don't re-create it, other tests will fail.
        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,
                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,
                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, "/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,
            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,
            schedule: String::from("@never"),
            command: String::from("sleep infinity"),
            description: None,
            section: None,
        };

        let error = crontab
            .make_shell_command(&job_not_in_crontab)
            .expect_err("the job is not in the crontab");

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