csm-rs 0.90.0

A library for Shasta
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
use std::collections::BTreeMap;

use crate::{
  cfs::configuration::http_client::v2::types::cfs_configuration_response::{
    CfsConfigurationResponse, Layer,
  },
  commands::i_apply_sat_file::utils::{
    get_image_name_or_ref_name_to_process,
    get_next_image_in_sat_file_to_process, validate_sat_file_images_section,
  },
  error::Error,
  ims::{image::http_client::types::Image, recipe::types::RecipeGetResponse},
};

/// Test function "get_ref_name" so it falls back to "name" field if "ref_name" is missing
#[test]
fn test_get_ref_name() {
  let image_yaml_vec: serde_yaml::Value = serde_yaml::from_str(
    r#"images:
               - name: base_image
                 base:
                   product: 
                     name: cos
                     type: recipe
                     version: "2.4.139"
            "#,
  )
  .unwrap();

  println!(
    "image yaml vec:\n{}",
    serde_yaml::to_string(&image_yaml_vec).unwrap()
  );

  let ref_name_processed_vec: Vec<String> = Vec::new();
  let next_image_to_process: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  let image_ref =
    get_image_name_or_ref_name_to_process(&next_image_to_process.unwrap());

  assert!(image_ref == "base_image");
}

/// Test function "get_next_image_to_process" in an images section is SAT file with one image with ref_name
#[test]
fn test_get_next_image_to_process_1() {
  let image_yaml_vec: serde_yaml::Value =
    serde_yaml::from_str(r#"images: []"#).unwrap();

  println!(
    "image yaml vec:\n{}",
    serde_yaml::to_string(&image_yaml_vec).unwrap()
  );

  let ref_name_processed_vec: Vec<String> = Vec::new();

  let next_image_to_process: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  println!(
    "next image to process:\n{}",
    serde_yaml::to_string(&next_image_to_process).unwrap()
  );

  assert!(next_image_to_process.is_none());
}

#[test]
fn test_get_next_image_to_process_2() {
  let image_yaml_vec: serde_yaml::Value = serde_yaml::from_str(
    r#"images:
               - name: base_image
                 ref_name: base_cos_image
                 base:
                   product: 
                     name: cos
                     type: recipe
                     version: "2.4.139"
            "#,
  )
  .unwrap();

  println!(
    "image yaml vec:\n{}",
    serde_yaml::to_string(&image_yaml_vec).unwrap()
  );

  let ref_name_processed_vec: Vec<String> = Vec::new();
  let next_image_to_process: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  println!(
    "next image to process:\n{}",
    serde_yaml::to_string(&next_image_to_process).unwrap()
  );

  assert!(
    next_image_to_process.unwrap()["name"].as_str().unwrap() == "base_image"
  );
}

/// Test function "get_next_image_to_process" in an images section in SAT file with 2 images.
/// The test should pass if the first image to process is the one with no dependencies and the
/// second is the one which depends on the first one
#[test]
fn test_get_next_image_to_process_3() {
  let image_yaml_vec: serde_yaml::Value = serde_yaml::from_str(
    r#"images:
               - name: base_image
                 ref_name: base_cos_image
                 base:
                   product: 
                     name: cos
                     type: recipe
                     version: "2.4.139"
               - name: final_image
                 ref_name: compute_image
                 base:
                    image_ref: base_cos_image
            "#,
  )
  .unwrap();

  println!(
    "image yaml vec:\n{}",
    serde_yaml::to_string(&image_yaml_vec).unwrap()
  );

  let mut ref_name_processed_vec: Vec<String> = Vec::new();

  let next_image_to_process_1: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  ref_name_processed_vec.push("base_cos_image".to_string());

  let next_image_to_process_2: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  assert!(
    next_image_to_process_1.unwrap()["name"].as_str().unwrap() == "base_image"
      && next_image_to_process_2.unwrap()["name"].as_str().unwrap()
        == "final_image"
  );
}

#[test]
fn test_get_next_image_to_process_4() {
  let image_yaml_vec: serde_yaml::Value = serde_yaml::from_str(
    r#"images:
               - name: base_image
                 ref_name: base_cos_image
                 base:
                   product: 
                     name: cos
                     type: recipe
                     version: "2.4.139"
               - name: final_image
                 ref_name: compute_image
                 base:
                    image_ref: base_cos_image
            "#,
  )
  .unwrap();

  println!(
    "image yaml vec:\n{}",
    serde_yaml::to_string(&image_yaml_vec).unwrap()
  );

  let mut ref_name_processed_vec: Vec<String> = Vec::new();

  let next_image_to_process_1: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  ref_name_processed_vec.push("base_cos_image".to_string());

  let next_image_to_process_2: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  ref_name_processed_vec.push("compute_image".to_string());

  let next_image_to_process_3: Option<serde_yaml::Value> =
    get_next_image_in_sat_file_to_process(
      image_yaml_vec["images"].as_sequence().unwrap(),
      &ref_name_processed_vec,
    );

  assert!(
    next_image_to_process_1.unwrap()["name"].as_str().unwrap() == "base_image"
      && next_image_to_process_2.unwrap()["name"].as_str().unwrap()
        == "final_image"
      && next_image_to_process_3.is_none()
  );
}

/* /// Test rendering a SAT template file with the values file
#[test]
fn test_render_sat_file_yaml_template_with_yaml_values_file() {
    let sat_file_content = r#"
        name: "{{ config.name }}"
        configurations:
        - name: "{{ config.name }}-{{ config.version }}"
          layers:
          - name: ss11
            playbook: shs_cassini_install.yml
            git:
              url: https://api-gw-service-nmn.local/vcs/cray/slingshot-host-software-config-management.git
              branch: integration
          - name: cos
            playbook: site.yml
            product:
              name: cos
              version: 2.3.101
              branch: integration
          - name: cscs
            playbook: site.yml
            git:
              url: https://api-gw-service-nmn.local/vcs/cray/cscs-config-management.git
              branch: cscs-23.06.0
          - name: nomad-orchestrator
            playbook: site-client.yml
            git:
              url: https://api-gw-service-nmn.local/vcs/cray/nomad_orchestrator.git
              branch: main
        images:
        - name: zinal-nomad-{{ image.version }}
          ims:
            is_recipe: false
            id: 4bf91021-8d99-4adf-945f-46de2ff50a3d
          configuration: "{{ config.name }}-{{ config.version }}"
          configuration_group_names:
          - Compute
          - "{{ hsm.group_name }}"

        session_templates:
        - name: "{{ bos_st.name }}"
          image: zinal-image-v0.5
          configuration: "{{ config.name }}-{{ config.version }}"
          bos_parameters:
            boot_sets:
              compute:
                kernel_parameters: ip=dhcp quiet spire_join_token=${SPIRE_JOIN_TOKEN}
                node_groups:
                - "{{ hsm.group_name }}"
        "#;

    let values_file_content = r#"
        hsm:
          group_name: "zinal_cta"
        config:
          name: "test-config"
          version: "v1.0.0"
        image:
          version: "v1.0.5"
        bos_st:
          name: "deploy-cluster-action"
          version: "v1.0"
        "#;

    let var_content: Vec<String> = vec!["config.name = new-value".to_string()];

    render_jinja2_sat_file_yaml(
        &sat_file_content.to_string(),
        Some(&values_file_content.to_string()),
        Some(var_content),
    );
} */

/// Test SAT file
/// Test image section in OLD format in SAT file
/// Result: FAIL
/// Reason: Configuration assigned to an image could not be found
#[test]
fn test_sat_file_image_section_fails_because_configuration_could_not_be_found_in_old_image_format(
) {
  let cray_product_catalog = &BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              ims:
                id: my-image-id
                is_recipe: false
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> = &vec![];

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    id: Some("my-image-id".to_string()),
    created: None,
    name: "my-image-name".to_string(),
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  assert!(validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes
  )
  .is_err());
}

/// Test SAT file
/// Test image section in OLD format in SAT file
/// Result: PASS
/// Reason: configuration assigned to image found in SAT
#[test]
fn test_old_image_format_in_sat_file_pass_because_configuration_found_in_sat() {
  let cray_product_catalog = &BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              ims:
                id: my-base-image-id
                is_recipe: false
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    id: Some("my-base-image-id".to_string()),
    created: None,
    name: "my-base-image-name".to_string(),
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  assert!(validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes
  )
  .is_ok());
}

/// Test SAT file
/// Test image section in OLD format in SAT file
/// Result: PASS
/// Reason: configuration assigned to image found in CSM
#[test]
fn test_old_image_format_in_sat_file_pass_because_configuration_found_in_csm() {
  let cray_product_catalog = &BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              ims:
                id: my-base-image-id
                is_recipe: false
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> = &vec![];

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    id: Some("my-base-image-id".to_string()),
    created: None,
    name: "my-base-image-name".to_string(),
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![CfsConfigurationResponse {
    name: "my-configuration-name".to_string(),
    last_updated: "2023-10-04T14:15:22Z".to_string(),
    layers: vec![Layer {
      clone_url: "fake-url".to_string(),
      commit: None,
      name: "my-layer-name".to_string(),
      playbook: "my-playbook".to_string(),
      branch: None,
    }],
    additional_inventory: None,
  }];

  let ims_recipes = vec![];

  assert!(validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes
  )
  .is_ok());
}

/// Test SAT file
/// Test image section in OLD format in SAT file
/// Result: FAIL
/// Reason: Base image id assigned to an image could not be found
#[test]
fn test_sat_file_image_section_fails_because_base_image_id_could_not_be_found()
{
  let cray_product_catalog = &BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              ims:
                id: my-image-id
                is_recipe: false
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> = &vec![];

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    id: Some("fake".to_string()),
    created: None,
    name: "my-image-name".to_string(),
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  assert!(validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes
  )
  .is_err());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: FAIL
/// Reason: Base image recipe assigned to an image could not be found in Cray/HPE product catalog
#[test]
fn test_sat_file_image_section_fails_because_base_image_receipe_could_not_be_found_in_cray_product_catalog(
) {
  let mut cray_product_catalog = BTreeMap::<String, String>::new();
  cray_product_catalog.insert("cos".to_string(), "2.2.101:\n  configuration:\n    clone_url: https://vcs.alps.cscs.ch/vcs/cray/cos-config-management.git\n    commit: 7f71cdc5d58f7879dc431b3fd6330296dcb3f7ee\n    import_branch: cray/cos/2.2.101\n    import_date: 2022-06-01 17:57:17.019149\n    ssh_url: git@vcs.alps.cscs.ch:cray/cos-config-management.git\n  images:\n    cray-shasta-compute-sles15sp3.x86_64-2.2.38:\n      id: d737e902-c002-4269-a408-6baa0fb31b4d\n  recipes:\n    cray-shasta-compute-sles15sp3.x86_64-2.2.38:\n      id: 2ffe10da-67f5-47b7-b7fb-de25381498f0".to_string());

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                product:
                  name: cos
                  version: "fake-does-not-exists-in-cra-product-catalog"
                  type: recipe
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_err());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: FAIL
/// Reason: Base IMS recipe assigned to an image could not be found
#[test]
fn test_sat_file_image_section_fails_because_base_image_recipe_name_could_not_be_found(
) {
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: my-ims-recipe
                  type: recipe
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![RecipeGetResponse {
    id: None,
    created: None,
    link: None,
    recipe_type: "".to_string(),
    linux_distribution: "".to_string(),
    name: "fake-my-ims-recipe".to_string(),
  }];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_err());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: PASS
/// Reason: Base IMS recipe assigned to an image found in CSM
#[test]
fn test_sat_file_image_section_pass_because_base_image_recipe_name_could_not_be_found(
) {
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: my-ims-recipe-name
                  type: recipe
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![RecipeGetResponse {
    id: None,
    created: None,
    link: None,
    recipe_type: "".to_string(),
    linux_distribution: "".to_string(),
    name: "my-ims-recipe-name".to_string(),
  }];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_ok());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: FAIL
/// Reason: Base IMS image assigned to an image not found in CSM
#[test]
fn test_sat_file_image_section_fail_because_base_image_name_could_not_be_found()
{
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: fake-my-ims-image-name
                  type: image
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    name: "my-ims-image-name".to_string(),
    id: None,
    created: None,
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_err());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: PASS
/// Reason: Base IMS image assigned to an image found in CSM
#[test]
fn test_sat_file_image_section_pass_because_base_image_name_could_not_be_found()
{
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: my-ims-image-name
                  type: image
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    name: "my-ims-image-name".to_string(),
    id: None,
    created: None,
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_ok());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: FAIL
/// Reason: HSM groups assigned to an image are wrong
#[test]
fn test_sat_file_image_section_fail_because_hsm_groups_are_wrong() {
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: my-ims-image-name
                  type: image
              configuration: my-configuration-name
              configuration_group_names:
                - Compute
                - fake-tenant-a
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> =
    &serde_yaml::from_str(
      r#"
            - name: my-configuration-name
            "#,
    )
    .unwrap();

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    name: "my-ims-image-name".to_string(),
    id: None,
    created: None,
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_err());
}

/// Test SAT file
/// Test image section in NEW format in SAT file
/// Result: PASS
/// Reason: Image can miss 'configuration' section
#[test]
fn test_sat_file_image_section_pass_if_configuration_missing() {
  let cray_product_catalog = BTreeMap::<String, String>::new();

  let image_vec_in_sat_file: &Vec<serde_yaml::Value> = &serde_yaml::from_str(
    r#"
            - name: my-image-name
              base:
                ims:
                  name: my-ims-image-name
                  type: image
            "#,
  )
  .unwrap();

  let configuration_vec_in_sat_file: &Vec<serde_yaml::Value> = &vec![];

  let hsm_group_available_vec = &["tenant-a"];

  let image_vec_in_csm = vec![Image {
    name: "my-ims-image-name".to_string(),
    id: None,
    created: None,
    link: None,
    arch: None,
    metadata: None,
  }];

  let configuration_vec_in_csm = vec![];

  let ims_recipes = vec![];

  let validation_rslt: Result<(), Error> = validate_sat_file_images_section(
    image_vec_in_sat_file,
    configuration_vec_in_sat_file,
    hsm_group_available_vec,
    &cray_product_catalog,
    image_vec_in_csm,
    configuration_vec_in_csm,
    ims_recipes,
  );

  assert!(validation_rslt.is_ok());
}