This file is indexed.

/usr/lib/python3/dist-packages/muranoclient/tests/functional/cli/test_murano.py is in python3-muranoclient 1.0.1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# Copyright (c) 2015 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

import json
import unittest

from muranoclient.tests.functional.cli import \
    murano_test_utils as utils
from muranoclient.tests.functional import muranoclient as murano_client
from oslo_utils.strutils import bool_from_string as str2bool


# TODO(mstolyarenko):  need to remove this raw when
# https://bugs.launchpad.net/python-muranoclient/+bug/1625039 is fixed
backend_name =\
    murano_client.ClientTestBase.get_backend_flag().rstrip().split()[-1]


class SimpleReadOnlyMuranoClientTest(utils.CLIUtilsTestBase):
    """Basic, read-only tests for Murano CLI client.

    Basic smoke test for the Murano CLI commands which do not require
    creating or modifying murano objects.
    """

    def test_category_list(self):
        category = self.get_table_struct('category-list')
        self.assertEqual(['ID', 'Name'], category)

    def test_env_template_list(self):
        templates = self.get_table_struct('env-template-list')
        self.assertEqual(['ID', 'Name', 'Created', 'Updated', 'Is public'],
                         templates)

    def test_environment_list(self):
        environment = self.get_table_struct('environment-list')
        self.assertEqual(['ID', 'Name', 'Status', 'Created', 'Updated'],
                         environment)

    def test_package_list(self):
        packages = self.get_table_struct('package-list')
        self.assertEqual(['ID', 'Name', 'FQN', 'Author', 'Active',
                          'Is Public', 'Type', 'Version'], packages)


class TableStructureMuranoClientTest(utils.CLIUtilsTestBase):
    """Smoke test for the Murano CLI commands

    Smoke test for the Murano CLI commands which checks table
    structure after create or delete category, env-template
    environment and package.
    """

    def test_table_struct_deployment_list(self):
        """Test scenario:

            1) create environment
            2) check table structure
        """
        environment = self.create_murano_object('environment',
                                                'MuranoTestTS-depl-list')
        table_struct = self.get_table_struct('deployment-list',
                                             params=environment['ID'])
        self.assertEqual(['ID', 'State', 'Created', 'Updated', 'Finished'],
                         table_struct)

    def test_table_struct_of_environment_create(self):
        """Test scenario:

            1) create environment
            2) check table structure
        """
        self.create_murano_object('environment', 'MuranoTestTS-env-create')
        table_struct = self.get_table_struct('environment-list')
        self.assertEqual(['ID', 'Name', 'Status', 'Created', 'Updated'],
                         table_struct)

    def test_table_struct_of_environment_delete(self):
        """Test scenario:

            1) create environment
            2) delete environment
            3) check table structure
        """
        environment = self.create_murano_object('environment',
                                                'MuranoTestTS-env-del')
        self.delete_murano_object('environment', environment)
        table_struct = self.get_table_struct('environment-list')
        self.assertEqual(['ID', 'Name', 'Status', 'Created', 'Updated'],
                         table_struct)

    def test_table_struct_of_category_create(self):
        """Test scenario:

            1) create category
            2) check table structure
        """
        self.create_murano_object('category', 'MuranoTestTS-cat-create')
        table_struct = self.get_table_struct('category-list')
        self.assertEqual(['ID', 'Name'], table_struct)

    def test_table_struct_of_category_delete(self):
        """Test scenario:

            1) create category
            2) delete category
            3) check table structure
        """
        category = self.create_murano_object('category',
                                             'MuranoTestTS-cat-create')
        self.delete_murano_object('category', category)
        category = self.get_table_struct('category-list')
        self.assertEqual(['ID', 'Name'], category)

    def test_table_struct_of_env_template_create(self):
        """Test scenario:

            1) create env_template
            2) check table structure
        """
        self.create_murano_object('env-template',
                                  'MuranoTestTS-env-tmp-create')
        table_struct = self.get_table_struct('env-template-list')
        self.assertEqual(['ID', 'Name', 'Created', 'Updated', 'Is public'],
                         table_struct)

    def test_table_struct_of_env_template_delete(self):
        """Test scenario:

            1) create env_template
            2) delete env_template
            3) check table structure
        """
        env_template = self.create_murano_object('env-template',
                                                 'MuranoTestTS-env-tmp-create')
        self.delete_murano_object('env-template', env_template)
        table_struct = self.get_table_struct('env-template-list')
        self.assertEqual(['ID', 'Name', 'Created', 'Updated', 'Is public'],
                         table_struct)


class EnvironmentMuranoSanityClientTest(utils.CLIUtilsTestBase):
    """Sanity tests for testing actions with environment.

    Smoke test for the Murano CLI commands which checks basic actions with
    environment command like create, delete, rename etc.
    """

    def test_environment_create(self):
        """Test scenario:

            1) create environment
            2) check that created environment exist
        """
        environment = self.create_murano_object('environment',
                                                'TestMuranoSanityEnv')
        env_list = self.listing('environment-list')

        # Deleting dates from dictionaries to skip it in assert
        map(lambda x: x.pop('Updated', None),
            env_list + [environment])
        map(lambda x: x.pop('Created', None),
            env_list + [environment])

        self.assertIn(environment, env_list)

    def test_environment_delete(self):
        """Test scenario:

            1) create environment
            2) delete environment
        """
        environment = self.create_murano_object('environment',
                                                'TestMuranoSanityEnv')
        self.delete_murano_object('environment', environment)
        env_list = self.listing('environment-list')

        self.assertNotIn(environment, env_list)

    def test_environment_rename(self):
        """Test scenario:

            1) create environment
            2) rename environment
        """
        environment = self.create_murano_object('environment',
                                                'TestMuranoSanityEnv')

        new_env_name = self.generate_name('TestMuranoSEnv-env-rename')
        rename_params = "{0} {1}".format(environment['Name'], new_env_name)
        new_list = self.listing('environment-rename', params=rename_params)
        renamed_env = self.get_object(new_list, new_env_name)
        self.addCleanup(self.delete_murano_object, 'environment', renamed_env)
        new_env_list = self.listing('environment-list')

        # Deleting dates from dictionaries to skip it in assert
        map(lambda x: x.pop('Updated', None),
            new_env_list + [environment] + [renamed_env])
        map(lambda x: x.pop('Created', None),
            new_env_list + [environment] + [renamed_env])

        self.assertIn(renamed_env, new_env_list)
        self.assertNotIn(environment, new_env_list)

    def test_table_struct_env_show(self):
        """Test scenario:

            1) create environment
            2) check structure of env_show object
        """
        environment = self.create_murano_object('environment',
                                                'TestMuranoSanityEnv')
        env_show = self.listing('environment-show', params=environment['Name'])
        # Check structure of env_show object
        self.assertEqual(['acquired_by', 'created', 'description_text', 'id',
                          'name', 'services', 'status', 'tenant_id',
                          'updated', 'version'],
                         map(lambda x: x['Property'], env_show))

    def test_environment_show(self):
        """Test scenario:

            1) create environment
            2) check that env_name, ID, updated and created values
               exist in env_show object
        """
        environment = self.create_murano_object('environment',
                                                'TestMuranoSanityEnv')
        env_show = self.listing('environment-show', params=environment['Name'])

        self.assertIn(environment['Created'],
                      map(lambda x: x['Value'], env_show))
        self.assertIn(environment['Updated'],
                      map(lambda x: x['Value'], env_show))
        self.assertIn(environment['Name'], map(lambda x: x['Value'], env_show))
        self.assertIn(environment['ID'], map(lambda x: x['Value'], env_show))

    def test_environment_delete_by_id(self):
        """Test scenario:

            1) create environment
            2) delete environment by environment ID
        """
        env_name = self.generate_name('TestMuranoSanityEnv')
        environment = self.create_murano_object('environment', env_name)
        result = self.murano('environment-delete', params=environment['ID'],
                             fail_ok=False)
        self.assertNotIn(environment['Name'], result)
        env_list = self.listing('environment-list')
        self.assertNotIn(environment, env_list)

    def test_environment_model_show(self):
        """Test scenario:

            1) create environment
            2) check that the result of environment-model-show is a valid
               non-empty json
        """
        env_name = self.generate_name('TestMuranoSanityEnv')
        environment = self.create_murano_object('environment', env_name)
        model = self.murano('environment-model-show', params=environment['ID'])
        result = json.loads(model)
        self.assertEqual(4, len(result))


class CategoryMuranoSanityClientTest(utils.CLIUtilsTestBase):
    """Sanity tests for testing actions with Category.

    Smoke test for the Murano CLI commands which checks basic actions with
    category command like create, delete etc.
    """

    def test_category_create(self):
        """Test scenario:

            1) create category
            2) check that created category exist
        """
        category = self.create_murano_object('category',
                                             'TestMuranoSanityCategory')
        category_list = self.listing('category-list')

        self.assertIn(category, category_list)

    def test_category_delete(self):
        """Test scenario:

            1) create category
            2) delete category
            3) check that category has been deleted successfully
        """
        category = self.create_murano_object('category',
                                             'TestMuranoSanityCategory')
        self.delete_murano_object('category', category)
        category_list = self.listing('category-list')

        self.assertNotIn(category, category_list)

    def test_table_struct_category_show(self):
        """Test scenario:

            1) create category
            2) check table structure of category-show object
        """
        category = self.create_murano_object('category',
                                             'TestMuranoSanityCategory')
        category_show = self.listing('category-show', params=category['ID'])

        self.assertEqual(['id', 'name', 'packages'],
                         map(lambda x: x['Property'], category_show))

    def test_category_show(self):
        """Test scenario:

            1) create category
            2) check that category values exist in category_show object
        """
        category = self.create_murano_object('category',
                                             'TestMuranoSanityCategory')
        category_show = self.listing('category-show', params=category['ID'])

        self.assertIn(category['ID'], map(lambda x: x['Value'], category_show))
        self.assertIn(category['Name'],
                      map(lambda x: x['Value'], category_show))

    def test_non_existing_category_delete(self):
        """Test scenario:

            1) try to call category-delete for non existing category
            2) check that error message contains user friendly substring
        """
        result = self.murano('category-delete', params='non-existing',
                             fail_ok=True)
        self.assertIn("Failed to delete 'non-existing'; category not found",
                      result)

    def test_non_existing_category_show(self):
        """Test scenario:

            1) try to call category-show for non existing category
            2) check that error message contains user friendly substring
        """
        result = self.murano('category-show', params='non-existing',
                             fail_ok=True)
        self.assertIn("Category id 'non-existing' not found", result)

    def test_category_create_with_long_name(self):
        """Test scenario:

            1) try to create category with long name (>80)
            2) check that error message contains user friendly substring
        """
        result = self.murano('category-create', params='name' * 21,
                             fail_ok=True)
        self.assertIn(
            "Category name should be 80 characters maximum",
            result)


class EnvTemplateMuranoSanityClientTest(utils.CLIUtilsTestBase):
    """Sanity tests for testing actions with Environment template.

    Smoke test for the Murano CLI commands which checks basic actions with
    env-temlate command like create, delete etc.
    """
    def test_environment_template_create(self):
        """Test scenario:

            1) create environment template
            2) check that created environment template exist
        """
        env_template = self.create_murano_object('env-template',
                                                 'TestMuranoSanityEnvTemp')
        env_template_list = self.listing('env-template-list')

        # Deleting dates from dictionaries to skip it in assert
        map(lambda x: x.pop('Updated', None),
            env_template_list + [env_template])
        map(lambda x: x.pop('Created', None),
            env_template_list + [env_template])

        self.assertIn(env_template, env_template_list)

    def test_environment_template_delete(self):
        """Test scenario:

            1) create environment template
            2) delete environment template
            3) check that deleted environment template doesn't exist
        """
        env_template = self.create_murano_object('env-template',
                                                 'TestMuranoSanityEnvTemp')
        env_template_list = self.delete_murano_object('env-template',
                                                      env_template)

        self.assertNotIn(env_template, env_template_list)

    def test_table_struct_env_template_show(self):
        """Test scenario:

            1) create environment template
            2) check table structure of env-template-show object
        """
        env_template = self.create_murano_object('env-template',
                                                 'TestMuranoSanityEnvTemp')
        env_template_show = self.listing('env-template-show',
                                         params=env_template['ID'])
        tested_env_template = map(lambda x: x['Property'], env_template_show)

        self.assertIn('created', tested_env_template)
        self.assertIn('id', tested_env_template)
        self.assertIn('name', tested_env_template)
        self.assertIn('services', tested_env_template)
        self.assertIn('tenant_id', tested_env_template)
        self.assertIn('updated', tested_env_template)
        self.assertIn('version', tested_env_template)

    def test_env_template_show(self):
        """Test scenario:

            1) create environment template
            2) check that environment template values exist in
            env-template-show object
        """
        env_template = self.create_murano_object('env-template',
                                                 'TestMuranoSanityEnvTemp')
        env_template_show = self.listing('env-template-show',
                                         params=env_template['ID'])
        tested_env = map(lambda x: x['Value'], env_template_show)

        self.assertIn(env_template['ID'], tested_env)
        self.assertIn(env_template['Name'], tested_env)

    def test_env_template_create_environment(self):
        """Test scenario:

            1) create environment template
            2) create environment from template
        """
        env_template = self.create_murano_object('env-template',
                                                 'TestMuranoSanityEnvTemp')
        new_env_name = self.generate_name('EnvFromTemp')
        params = "{0} {1}".format(env_template['ID'], new_env_name)
        env_created = self.listing('env-template-create-env', params=params)
        tested_env_created = map(lambda x: x['Property'], env_created)

        self.assertIn('environment_id', tested_env_created)
        self.assertIn('session_id', tested_env_created)

    def test_env_template_clone(self):
        """Test scenario:

            1) create environment template
            2) clone template
            3) check that create environment template has the new name
            4) delete new template
        """

        env_template = self.create_murano_object_parameter(
            'env-template', 'TestMuranoSanityEnvTemp', '--is-public')
        new_template = self.generate_name('TestMuranoSanityEnvTemp')

        params = "{0} {1}".format(env_template['ID'], new_template)
        template_created = self.listing('env-template-clone', params=params)
        list = map(lambda x: ({x['Property']: x['Value']}), template_created)
        result_name = filter(lambda x: x.get('name'), list)[0]['name']
        result_id = filter(lambda x: x.get('id'), list)[0]['id']
        self.listing('env-template-delete', params=result_id)

        self.assertIn(result_name, new_template)


class PackageMuranoSanityClientTest(utils.CLIUtilsTestPackagesBase):
    """Sanity tests for testing actions with Packages.

    Smoke tests for the Murano CLI commands which check basic actions with
    packages like import, create, delete etc.
    """

    def test_package_import_by_url(self):
        """Test scenario:

            1) import package by url
            2) check that package exists
        """
        try:
            self.run_server()
            package = self.import_package(
                self.app_name,
                'http://localhost:8089/apps/{0}.zip'.format(self.app_name)
            )
        finally:
            self.stop_server()
        package_list = self.listing('package-list')

        self.assertIn(package, package_list)

    def test_package_import_by_path(self):
        """Test scenario:

            1) import package by path
            2) check that package exists
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        package_list = self.listing('package-list')

        self.assertIn(package, package_list)

    def test_package_is_public(self):
        """Test scenario:

            1) import package
            2) check that package is public
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path,
            '--is-public')

        package_show = self.listing('package-show', params=package['ID'])
        package_show = {item['Property']: item['Value']
                        for item in package_show}

        self.assertEqual(package['Is Public'], 'True')
        self.assertEqual(
            str2bool(package['Is Public']),
            str2bool(package_show['is_public']))

    def test_package_delete(self):
        """Test scenario:

            1) import package
            2) delete package
            3) check that package has been deleted
        """

        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        package_list = self.delete_murano_object('package', package)

        self.assertNotIn(package, package_list)

    def test_package_show(self):
        """Test scenario:

            1) import package
            2) check that package values exist in
            return by package-show object
        """

        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        package_show = self.listing('package-show', params=package['ID'])
        package_show = {item['Property']: item['Value']
                        for item in package_show}

        self.assertEqual(
            str2bool(package['Active']),
            str2bool(package_show['enabled']))
        self.assertEqual(
            package['FQN'],
            package_show['fully_qualified_name'])
        self.assertEqual(
            package['ID'],
            package_show['id'])
        self.assertEqual(
            str2bool(package['Is Public']),
            str2bool(package_show['is_public']))
        self.assertEqual(
            package['Name'],
            package_show['name'])
        self.assertEqual(
            package['Type'],
            package_show['type'])

    def test_package_import_update(self):
        """Test scenario:

            1) import package
            2) import new_package using option 'u' - update
            3) check that package has been updated
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        upd_package = self.import_package(
            self.app_name,
            self.dummy_app_path,
            '--exists-action', 'u'
        )
        self.assertEqual(package['Name'], upd_package['Name'])
        self.assertNotEqual(package['ID'], upd_package['ID'])

    def test_package_import_skip(self):
        """Test scenario:

            1) import package using option 's' - skip for existing package
            2) try to import the same package using option 's' - skip
            3) check that package hasn't been updated
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path,
            '--exists-action', 's'
        )
        updated_package = self.import_package(
            self.app_name,
            self.dummy_app_path,
            '--exists-action', 's'
        )
        package_list = self.listing("package-list")

        self.assertIn(package, package_list)
        self.assertIsNone(updated_package)

    def test_package_import_abort(self):
        """Test scenario:

            1) import package
            2) import new_package using option 'a' - skip
            3) check that package hasn't been updated
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        package_list = self.listing('package-list')

        self.assertIn(package, package_list)

        package = self.import_package(
            self.app_name,
            self.dummy_app_path,
            '--exists-action', 'a'
        )
        package_list = self.listing('package-list')
        self.assertNotIn(package, package_list)


class DeployMuranoEnvironmentTest(utils.CLIUtilsTestPackagesBase):
    """Test for testing Murano environment deployment.

    Test for the Murano CLI commands which checks addition of app
    to the environment, session creation and deployment of
    environment.
    """
    # TODO(mstolyarenko):  need to unskip this test when
    # https://bugs.launchpad.net/python-muranoclient/+bug/1625039 is fixed
    @unittest.skipIf(backend_name == 'glare',
                     "This test fails when GLARE is used as packages "
                     "service. To be fixed as part of #1625039")
    def test_environment_deployment(self):
        """Test scenario:

            1) import package
            2) create environment
            3) create session for created environment
            4) add application to the environment
            5) send environment to deploy
            6) check that deployment was successful
        """
        self.import_package(
            self.app_name,
            self.dummy_app_path
        )

        env_id = self.create_murano_object('environment',
                                           'TestMuranoDeployEnv')['ID']
        obj_model = {
            'op': 'add',
            'path': '/-',
            'value': {
                '?': {
                    'type': 'io.murano.apps.{0}'.format(self.app_name),
                    'id': '{0}'.format(self.generate_uuid()),
                }
            }
        }
        self.deploy_environment(env_id, obj_model)
        deployments = self.listing('deployment-list', params=env_id)

        self.assertEqual('success', deployments[0]['State'])
        self.assertEqual(1, len(deployments))

    # TODO(mstolyarenko):  need to unskip this test when
    # https://bugs.launchpad.net/python-muranoclient/+bug/1625039 is fixed
    @unittest.skipIf(backend_name == 'glare',
                     "This test fails when GLARE is used as packages "
                     "service. To be fixed as part of #1625039")
    def test_add_component_to_deployed_env(self):
        """Test scenario:

            1) import package
            2) create environment
            3) create session for created environment
            4) add application to the environment
            5) send environment to deploy
            6) check that deployment was successful
            7) add application to environment
            8) deploy environment again
        """
        self.import_package(
            self.app_name,
            self.dummy_app_path
        )

        env_id = self.create_murano_object('environment',
                                           'TestMuranoDeployEnv')['ID']
        obj_model = {
            'op': 'add',
            'path': '/-',
            'value': {
                '?': {
                    'type': 'io.murano.apps.{0}'.format(self.app_name),
                    'id': '',
                }
            }
        }
        obj_model['value']['?']['id'] = self.generate_uuid()
        self.deploy_environment(env_id, obj_model)

        deployments = self.listing('deployment-list', params=env_id)
        self.assertEqual('success', deployments[0]['State'])
        self.assertEqual(1, len(deployments))

        obj_model['value']['?']['id'] = self.generate_uuid()
        self.deploy_environment(env_id, obj_model)

        deployments = self.listing('deployment-list', params=env_id)
        self.assertEqual('success', deployments[1]['State'])
        self.assertEqual(2, len(deployments))

    # TODO(mstolyarenko):  need to unskip this test when
    # https://bugs.launchpad.net/python-muranoclient/+bug/1625039 is fixed
    @unittest.skipIf(backend_name == 'glare',
                     "This test fails when GLARE is used as packages "
                     "service. To be fixed as part of #1625039")
    def test_delete_component_from_deployed_env(self):
        """Test scenario:

            1) import package
            2) create environment
            3) create session for created environment
            4) add application to the environment
            5) send environment to deploy
            6) check that deployment was successful
            7) delete application from environment
            8) deploy environment again
        """
        self.import_package(
            self.app_name,
            self.dummy_app_path
        )

        env_id = self.create_murano_object('environment',
                                           'TestMuranoDeployEnv')['ID']

        obj_model = {
            'op': 'add',
            'path': '/-',
            'value': {
                '?': {
                    'type': 'io.murano.apps.{0}'.format(self.app_name),
                    'id': '{0}'.format(self.generate_uuid()),
                }
            }
        }
        self.deploy_environment(env_id, obj_model)

        obj_model = {
            'op': 'remove',
            'path': '/0'
        }
        self.deploy_environment(env_id, obj_model)

        deployments = self.listing('deployment-list', params=env_id)
        self.assertEqual('success', deployments[1]['State'])
        self.assertEqual(2, len(deployments))


class BundleMuranoSanityClientTest(utils.CLIUtilsTestPackagesBase):
    """Sanity tests for testing actions with bundle.

    Tests for the Murano CLI commands which check basic actions with
    bundles.
    """

    def test_bundle_import_without_bundle_name(self):
        """Test scenario:

            1) Execute murano bundle-import command without bundle name
            2) check that error message contains user friendly substring
        """
        result = self.murano('bundle-import', params='',
                             fail_ok=True)
        self.assertIn("murano bundle-import: error: too few arguments", result)

    @unittest.skip("Skip due to apps.openstack.org website is retired.")
    def test_bundle_import_with_non_existing_package_name(self):
        """Test scenario:

            1) Execute murano bundle-import command with non-existing packages
            name inside
            2) check that error message contains user friendly substring
        """
        result = self.murano(
            'bundle-import',
            params=self.prepare_bundle_with_non_existed_package(),
            fail_ok=False)
        self.assertIn("Couldn't find file for package", result)
        self.assertIn("Error Got non-ok status(404) while connecting", result)

    @unittest.skip("Skip due to apps.openstack.org website is retired.")
    def test_bundle_import_with_non_existing_name(self):
        """Test scenario:

            1) Execute murano bundle-import command with non-existing bundle
            name
            2) check that error message contains user friendly substring
        """
        result = self.murano('bundle-import', params=self.app_name,
                             fail_ok=True)
        self.assertIn("Bundle file '{}' does not exist".format(self.app_name),
                      result)
        self.assertIn("reason: Got non-ok status(404) while connecting to",
                      result)

    def test_bundle_import_with_invalid_file_format(self):
        """Test scenario:

            1) Execute murano bundle-import command with invalid bundle file
            format
            2) check that error message contains user friendly substring
        """
        try:
            self.murano(
                'bundle-import',
                params=self.prepare_bundle_with_invalid_format(),
                fail_ok=False)
        except utils.exceptions.CommandFailed as exception:
            self.assertIn("Can't parse bundle contents", exception.stdout)


class StaticActionMuranoClientTest(utils.CLIUtilsTestPackagesBase):
    """Tests for testing static actions execution.

    Tests for the Murano CLI commands which check the result of sample
    static action execution.
    """

    def test_static_action_call(self):
        """Test scenario:

                1) import package
                2) call static action of the class in that package
                3) check the result of action
        """
        package = self.import_package(
            self.app_name,
            self.dummy_app_path
        )
        result = self.murano(
            'static-action-call', params='{0} staticAction --package-name {1} '
            '--arguments myName=John myAge=28'.format(package['FQN'],
                                                      package['FQN']))
        expected = "Waiting for result...\nStatic action result: Hello, " \
                   "John. In 5 years you will be 33 years old.\n"
        self.assertEqual(expected, result)