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
mod builder;

pub mod macros;

pub use builder::DockerFile;

use std::{
    collections::HashMap,
    convert::From as StdFrom,
    fmt::{self, Display},
    hash::Hash,
};

pub trait Instruction: Display {}

trait StorageInstruction: Instruction {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub enum TagOrDigest {
    Tag(String),
    Digest(String),
}

pub use TagOrDigest::*;

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct From {
    pub image: String,
    pub tag_or_digest: Option<TagOrDigest>,
    pub name: Option<String>,
}

impl Display for From {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match (&self.tag_or_digest, &self.name) {
            (Some(Tag(tag)), None) => write!(f, "FROM {}:{}", self.image, tag),
            (Some(Tag(tag)), Some(name)) => write!(f, "FROM {}:{} AS {}", self.image, tag, name),
            (Some(Digest(digest)), None) => write!(f, "FROM {}@{}", self.image, digest),
            (Some(Digest(digest)), Some(name)) => {
                write!(f, "FROM {}@{} AS {}", self.image, digest, name)
            }
            (None, None) => write!(f, "FROM {}", self.image),
            (None, Some(name)) => write!(f, "FROM {} AS {}", self.image, name),
        }
    }
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Run {
    pub params: Vec<String>,
}

impl<I, S> StdFrom<I> for Run
where
    I: IntoIterator<Item = S>,
    S: Into<String>,
{
    fn from(iter: I) -> Self {
        let params = iter.into_iter().map(Into::into).collect();
        Run { params }
    }
}

impl Display for Run {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "RUN [{}]",
            self.params
                .iter()
                .map(|i| format!(r#""{}""#, i))
                .collect::<Vec<String>>()
                .join(", ")
        )
    }
}

impl Instruction for Run {}
impl StorageInstruction for Run {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Cmd {
    pub params: Vec<String>,
}

impl<I, S> StdFrom<I> for Cmd
where
    I: IntoIterator<Item = S>,
    S: Into<String>,
{
    fn from(iter: I) -> Self {
        let params = iter.into_iter().map(Into::into).collect();
        Cmd { params }
    }
}

impl Display for Cmd {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "CMD [{}]",
            self.params
                .iter()
                .map(|i| format!(r#""{}""#, i))
                .collect::<Vec<String>>()
                .join(", ")
        )
    }
}

impl Instruction for Cmd {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Label {
    inner: HashMap<String, String>,
}

impl<K, V> StdFrom<HashMap<K, V>> for Label
where
    K: Into<String> + Eq + Hash,
    V: AsRef<str>,
{
    fn from(map: HashMap<K, V>) -> Self {
        let inner = map
            .into_iter()
            .map(|(k, v)| (k.into(), v.as_ref().replace('\n', "\\\n")))
            .collect();
        Label { inner }
    }
}

impl<K, V> StdFrom<(K, V)> for Label
where
    K: Into<String> + Eq + Hash,
    V: Into<String>,
{
    fn from((k, v): (K, V)) -> Self {
        let mut inner = HashMap::new();
        inner.insert(k.into(), v.into());
        Label { inner }
    }
}

impl Display for Label {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "LABEL {}",
            self.inner
                .iter()
                .map(|(k, v)| format!(r#"{}="{}""#, k, v))
                .collect::<Vec<String>>()
                .join(" \\\n      ")
        )
    }
}

impl Instruction for Label {}
impl StorageInstruction for Label {}

/// Deprecated, use [`Label`] with `maintainer` key instead
///
/// [`Label`]: struct.Label.html
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Maintainer {
    pub name: String,
}

impl<T> StdFrom<T> for Maintainer
where
    T: Into<String>,
{
    fn from(name: T) -> Self {
        Maintainer { name: name.into() }
    }
}

impl PartialEq<Label> for Maintainer {
    fn eq(&self, other: &Label) -> bool {
        if let Some(name) = other.inner.get("maintainer") {
            self.name == *name
        } else {
            false
        }
    }
}

impl Display for Maintainer {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "MAINTAINER {}", self.name)
    }
}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Expose {
    pub port: u16,
    pub proto: Option<String>,
}

impl StdFrom<u16> for Expose {
    fn from(port: u16) -> Self {
        Expose { port, proto: None }
    }
}

impl Display for Expose {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "EXPOSE {}{}",
            self.port,
            self.proto
                .clone()
                .map(|s| format!("/{}", s))
                .unwrap_or_default()
        )
    }
}

impl Instruction for Expose {}
impl StorageInstruction for Expose {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Env {
    inner: HashMap<String, String>,
}

impl<K, V> StdFrom<HashMap<K, V>> for Env
where
    K: Into<String> + Eq + Hash,
    V: Into<String>,
{
    fn from(map: HashMap<K, V>) -> Self {
        let inner = map.into_iter().map(|(k, v)| (k.into(), v.into())).collect();
        Env { inner }
    }
}

impl<K, V> StdFrom<(K, V)> for Env
where
    K: Into<String> + Eq + Hash,
    V: Into<String>,
{
    fn from((k, v): (K, V)) -> Self {
        let mut inner = HashMap::new();
        inner.insert(k.into(), v.into());
        Env { inner }
    }
}

impl Display for Env {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "ENV {}",
            self.inner
                .iter()
                .map(|(k, v)| format!(r#"{}="{}""#, k, v))
                .collect::<Vec<String>>()
                .join(" ")
        )
    }
}

impl Instruction for Env {}
impl StorageInstruction for Env {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Add {
    pub src: String,
    pub dst: String,
    pub chown: Option<User>,
}

impl<K, V> StdFrom<(K, V)> for Add
where
    K: Into<String>,
    V: Into<String>,
{
    fn from((src, dst): (K, V)) -> Self {
        Add {
            src: src.into(),
            dst: dst.into(),
            chown: None,
        }
    }
}

impl Display for Add {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self.chown {
            Some(chown) => write!(
                f,
                r#"ADD --chown={}{} "{}" "{}""#,
                chown.user,
                chown
                    .group
                    .clone()
                    .map(|s| format!(":{}", s))
                    .unwrap_or_default(),
                self.src,
                self.dst
            ),
            None => write!(f, r#"ADD "{}" "{}""#, self.src, self.dst),
        }
    }
}

impl Instruction for Add {}
impl StorageInstruction for Add {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Copy {
    pub src: String,
    pub dst: String,
    pub from: Option<String>,
    pub chown: Option<User>,
}

impl<K, V> StdFrom<(K, V)> for Copy
where
    K: Into<String>,
    V: Into<String>,
{
    fn from((src, dst): (K, V)) -> Self {
        Copy {
            src: src.into(),
            dst: dst.into(),
            from: None,
            chown: None,
        }
    }
}

impl Display for Copy {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match (&self.from, &self.chown) {
            (Some(from), Some(chown)) => write!(
                f,
                r#"COPY --from={} --chown={}{} "{}" "{}""#,
                from,
                chown.user,
                chown
                    .group
                    .clone()
                    .map(|s| format!(":{}", s))
                    .unwrap_or_default(),
                self.src,
                self.dst
            ),
            (Some(from), None) => {
                write!(f, r#"COPY --from={} "{}" "{}""#, from, self.src, self.dst)
            }
            (None, Some(chown)) => write!(
                f,
                r#"COPY --chown={}{} "{}" "{}""#,
                chown.user,
                chown
                    .group
                    .clone()
                    .map(|group| format!(":{}", group))
                    .unwrap_or_default(),
                self.src,
                self.dst
            ),
            (None, None) => write!(f, r#"COPY "{}" "{}""#, self.src, self.dst),
        }
    }
}

impl Instruction for Copy {}
impl StorageInstruction for Copy {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct EntryPoint {
    params: Vec<String>,
}

impl<I, S> StdFrom<I> for EntryPoint
where
    I: IntoIterator<Item = S>,
    S: Into<String>,
{
    fn from(iter: I) -> Self {
        let params = iter.into_iter().map(Into::into).collect();
        EntryPoint { params }
    }
}

impl Display for EntryPoint {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "ENTRYPOINT [{}]",
            self.params
                .iter()
                .map(|i| format!(r#""{}""#, i))
                .collect::<Vec<String>>()
                .join(", ")
        )
    }
}

impl Instruction for EntryPoint {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Volume {
    pub paths: Vec<String>,
}

impl<I, S> StdFrom<I> for Volume
where
    I: IntoIterator<Item = S>,
    S: Into<String>,
{
    fn from(iter: I) -> Self {
        let paths = iter.into_iter().map(Into::into).collect();
        Volume { paths }
    }
}

impl Display for Volume {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "VOLUME [{}]",
            self.paths
                .iter()
                .map(|i| format!(r#""{}""#, i))
                .collect::<Vec<String>>()
                .join(", ")
        )
    }
}

impl Instruction for Volume {}
impl StorageInstruction for Volume {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct User {
    pub user: String,
    pub group: Option<String>,
}

impl Display for User {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self.group {
            Some(group) => write!(f, "USER {}:{}", self.user, group),
            None => write!(f, "USER {}", self.user),
        }
    }
}

impl Instruction for User {}
impl StorageInstruction for User {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct WorkDir {
    pub path: String,
}

impl<T> StdFrom<T> for WorkDir
where
    T: Into<String>,
{
    fn from(path: T) -> Self {
        WorkDir { path: path.into() }
    }
}

impl Display for WorkDir {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, r#"WORKDIR "{}""#, self.path)
    }
}

impl Instruction for WorkDir {}
impl StorageInstruction for WorkDir {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Arg {
    pub name: String,
    pub value: Option<String>,
}

impl<K, V> StdFrom<(K, V)> for Arg
where
    K: Into<String>,
    V: Into<String>,
{
    fn from((name, value): (K, V)) -> Self {
        Arg {
            name: name.into(),
            value: Some(value.into()),
        }
    }
}

impl Display for Arg {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match &self.value {
            Some(value) => write!(f, r#"ARG {}="{}""#, self.name, value),
            None => write!(f, "ARG {}", self.name),
        }
    }
}

impl Instruction for Arg {}
impl StorageInstruction for Arg {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct StopSignal {
    pub signal: String,
}

impl<T> StdFrom<T> for StopSignal
where
    T: Into<String>,
{
    fn from(signal: T) -> Self {
        StopSignal {
            signal: signal.into(),
        }
    }
}

impl Display for StopSignal {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "STOPSIGNAL {}", self.signal)
    }
}

impl Instruction for StopSignal {}
impl StorageInstruction for StopSignal {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub enum HealthCheck {
    Check {
        cmd: Cmd,
        interval: Option<i32>,
        timeout: Option<i32>,
        start_period: Option<i32>,
        retries: Option<i32>,
    },
    None,
}

impl Display for HealthCheck {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            HealthCheck::Check {
                cmd,
                interval,
                timeout,
                start_period,
                retries,
            } => {
                write!(f, "HEALTHCHECK ")?;
                if let Some(interval) = interval {
                    write!(f, "--interval={} ", interval)?;
                }
                if let Some(timeout) = timeout {
                    write!(f, "--timeout={} ", timeout)?;
                }
                if let Some(period) = start_period {
                    write!(f, "--start-period={} ", period)?;
                }
                if let Some(retries) = retries {
                    write!(f, "--retries={} ", retries)?;
                }
                write!(f, "{}", cmd)
            }
            HealthCheck::None => write!(f, "HEALTHCHECK NONE"),
        }
    }
}

impl Instruction for HealthCheck {}
impl StorageInstruction for HealthCheck {}

#[derive(Debug, Clone, Eq, PartialEq)]
pub struct Shell {
    pub params: Vec<String>,
}

impl<I, S> StdFrom<I> for Shell
where
    I: IntoIterator<Item = S>,
    S: Into<String>,
{
    fn from(iter: I) -> Self {
        let params = iter.into_iter().map(Into::into).collect();
        Shell { params }
    }
}

impl Display for Shell {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "SHELL [{}]",
            self.params
                .iter()
                .map(|i| format!(r#""{}""#, i))
                .collect::<Vec<String>>()
                .join(", ")
        )
    }
}

impl Instruction for Shell {}
impl StorageInstruction for Shell {}

pub struct OnBuild {
    inner: Box<Instruction>,
}

impl<I> StdFrom<I> for OnBuild
where
    I: Instruction + 'static,
{
    fn from(i: I) -> Self {
        let inner = Box::new(i);
        OnBuild { inner }
    }
}

impl Display for OnBuild {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "ONBUILD {}", self.inner)
    }
}

pub struct Comment {
    pub comment: String,
}

impl<T> StdFrom<T> for Comment
where
    T: Into<String>,
{
    fn from(comment: T) -> Self {
        Comment {
            comment: comment.into(),
        }
    }
}

impl Display for Comment {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "# {}", self.comment)
    }
}

impl Instruction for Comment {}
impl StorageInstruction for Comment {}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn from() {
        let image = String::from("rust");
        let tag = Some(Tag("latest".into()));
        let digest = Some(Digest("digest".into()));
        let name = Some(String::from("crab"));

        // tag and no name
        let from = From {
            image: image.clone(),
            tag_or_digest: tag.clone(),
            name: None,
        };
        assert_eq!(from.to_string(), "FROM rust:latest");

        // tag and name
        let from = From {
            image: image.clone(),
            tag_or_digest: tag.clone(),
            name: name.clone(),
        };
        assert_eq!(from.to_string(), "FROM rust:latest AS crab");

        // digest and no name
        let from = From {
            image: image.clone(),
            tag_or_digest: digest.clone(),
            name: None,
        };
        assert_eq!(from.to_string(), "FROM rust@digest");

        // digest and name
        let from = From {
            image: image.clone(),
            tag_or_digest: digest.clone(),
            name: name.clone(),
        };
        assert_eq!(from.to_string(), "FROM rust@digest AS crab");

        // no tag or digest and no name
        let from = From {
            image: image.clone(),
            tag_or_digest: None,
            name: None,
        };
        assert_eq!(from.to_string(), "FROM rust");

        // no tag or digest and name
        let from = From {
            image: image.clone(),
            tag_or_digest: None,
            name: name.clone(),
        };
        assert_eq!(from.to_string(), "FROM rust AS crab");
    }

    #[test]
    fn run() {
        let curl = vec!["curl", "-v", "https://rust-lang.org"];
        let run = Run::from(curl);
        assert_eq!(run.params, ["curl", "-v", "https://rust-lang.org"]);
        assert_eq!(
            run.to_string(),
            r#"RUN ["curl", "-v", "https://rust-lang.org"]"#
        )
    }

    #[test]
    fn cmd() {
        let curl = vec!["curl", "-v", "https://rust-lang.org"];
        let cmd = Cmd::from(curl);
        assert_eq!(cmd.params, ["curl", "-v", "https://rust-lang.org"]);
        assert_eq!(
            cmd.to_string(),
            r#"CMD ["curl", "-v", "https://rust-lang.org"]"#
        )
    }

    #[test]
    fn label() {
        let mut map = HashMap::new();
        map.insert("key", "value");
        let label = Label::from(map);
        assert_eq!(label.to_string(), r#"LABEL key="value""#);

        let mut map = HashMap::new();
        map.insert("key", "1\n2\n3");
        let label = Label::from(map);
        assert_eq!(
            label.to_string(),
            r#"LABEL key="1\
2\
3""#
        );

        let mut map = HashMap::new();
        map.insert("key", "value");
        map.insert("hello", "world");
        let label = Label::from(map);
        let label = label.to_string();
        assert!(
            label
                == r#"LABEL hello="world" \
      key="value""#
                || label
                    == r#"LABEL key="value" \
      hello="world""#
        );
    }

    #[test]
    fn maintainer() {
        let name = String::from("Someone Rustacean");
        let maintainer = Maintainer::from(name.clone());
        assert_eq!(maintainer.to_string(), "MAINTAINER Someone Rustacean");
        assert_eq!(maintainer, Label::from(("maintainer", name)))
    }

    #[test]
    fn expose() {
        let port = 80;
        let proto = Some(String::from("tcp"));

        // without proto
        let expose = Expose { port, proto: None };
        assert_eq!(expose.to_string(), "EXPOSE 80");

        // with proto
        let expose = Expose { port, proto };
        assert_eq!(expose.to_string(), "EXPOSE 80/tcp")
    }

    #[test]
    fn env() {
        let mut map = HashMap::new();
        map.insert("key", "value");
        let label = Env::from(map.clone());
        assert_eq!(label.to_string(), r#"ENV key="value""#);
    }

    #[test]
    fn add() {
        let chown = User {
            user: "rustacean".to_string(),
            group: None,
        };
        let src = "/home/container001".to_string();
        let dst = "/".to_string();

        // with chown
        let add = Add {
            src: src.clone(),
            dst: dst.clone(),
            chown: Some(chown),
        };
        assert_eq!(
            add.to_string(),
            r#"ADD --chown=rustacean "/home/container001" "/""#
        );

        // without chown
        let add = Add::from((src.clone(), dst.clone()));
        assert_eq!(add.to_string(), r#"ADD "/home/container001" "/""#);
    }

    #[test]
    fn copy() {
        let from = Some("crab".to_string());
        let chown = Some(User {
            user: "rustacean".to_string(),
            group: Some("root".to_string()),
        });
        let src = "/home/container001".to_string();
        let dst = "/".to_string();

        // with from and with chown
        let copy = Copy {
            src: src.clone(),
            dst: dst.clone(),
            from: from.clone(),
            chown: chown.clone(),
        };
        assert_eq!(
            copy.to_string(),
            r#"COPY --from=crab --chown=rustacean:root "/home/container001" "/""#
        );

        // with from
        let copy = Copy {
            src: src.clone(),
            dst: dst.clone(),
            from: from.clone(),
            chown: None,
        };
        assert_eq!(
            copy.to_string(),
            r#"COPY --from=crab "/home/container001" "/""#
        );

        // with chown
        let copy = Copy {
            src: src.clone(),
            dst: dst.clone(),
            from: None,
            chown: chown.clone(),
        };
        assert_eq!(
            copy.to_string(),
            r#"COPY --chown=rustacean:root "/home/container001" "/""#
        );

        // without from and without chown
        let copy = Copy::from((src.clone(), dst.clone()));
        assert_eq!(copy.to_string(), r#"COPY "/home/container001" "/""#);
    }

    #[test]
    fn entrypoint() {
        let curl = vec!["curl", "-v", "https://rust-lang.org"];
        let point = EntryPoint::from(curl);
        assert_eq!(point.params, ["curl", "-v", "https://rust-lang.org"]);
        assert_eq!(
            point.to_string(),
            r#"ENTRYPOINT ["curl", "-v", "https://rust-lang.org"]"#
        )
    }

    #[test]
    fn volume() {
        let paths = vec!["/var/run"];
        let volume = Volume::from(paths);
        assert_eq!(volume.to_string(), r#"VOLUME ["/var/run"]"#);
    }

    #[test]
    fn user() {
        let user = "rustacean".to_string();
        let group = Some("root".to_string());

        // with group
        let usr = User {
            user: user.clone(),
            group,
        };
        assert_eq!(usr.to_string(), "USER rustacean:root");

        // without group
        let usr = User { user, group: None };
        assert_eq!(usr.to_string(), "USER rustacean");
    }

    #[test]
    fn workdir() {
        let path = "/var/run";
        let dir = WorkDir::from(path);
        assert_eq!(dir.to_string(), r#"WORKDIR "/var/run""#)
    }

    #[test]
    fn arg() {
        let name = "name".to_string();
        let value = Some("value".to_string());

        // with value
        let arg = Arg {
            name: name.clone(),
            value,
        };
        assert_eq!(arg.to_string(), r#"ARG name="value""#);

        // without value
        let arg = Arg { name, value: None };
        assert_eq!(arg.to_string(), r#"ARG name"#);
    }

    #[test]
    fn stopsignal() {
        let signal = "SIGKILL".to_string();
        let signal = StopSignal::from(signal);
        assert_eq!(signal.to_string(), "STOPSIGNAL SIGKILL");
    }

    #[test]
    fn healthcheck() {
        // with params
        let curl = vec!["curl", "-v", "https://rust-lang.org"];
        let cmd = Cmd::from(curl);
        let check = HealthCheck::Check {
            cmd,
            interval: Some(0),
            timeout: Some(3600),
            start_period: Some(123),
            retries: Some(2),
        };
        assert_eq!(check.to_string(), r#"HEALTHCHECK --interval=0 --timeout=3600 --start-period=123 --retries=2 CMD ["curl", "-v", "https://rust-lang.org"]"#);

        // without params
        let check = HealthCheck::None;
        assert_eq!(check.to_string(), "HEALTHCHECK NONE");
    }

    #[test]
    fn shell() {
        let bash = vec!["bash", "-c"];
        let shell = Shell::from(bash);
        assert_eq!(shell.params, ["bash", "-c"]);
        assert_eq!(shell.to_string(), r#"SHELL ["bash", "-c"]"#)
    }

    #[test]
    fn onbuild() {
        let curl = vec!["curl", "-v", "https://rust-lang.org"];
        let cmd = Cmd::from(curl);
        let onbuild = OnBuild::from(cmd);
        assert_eq!(
            onbuild.to_string(),
            r#"ONBUILD CMD ["curl", "-v", "https://rust-lang.org"]"#
        );
    }

    #[test]
    fn comment() {
        let comment = "This is an example comment";
        let comment = Comment::from(comment);
        assert_eq!(comment.to_string(), "# This is an example comment");
    }
}