[VVP] Updating test that parameters section must have param
[vvp/validation-scripts.git] / ice_validator / tests / test_heat_template_structure.py
1 # -*- coding: utf8 -*-
2 # ============LICENSE_START====================================================
3 # org.onap.vvp/validation-scripts
4 # ===================================================================
5 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 # ===================================================================
7 #
8 # Unless otherwise specified, all software contained herein is licensed
9 # under the Apache License, Version 2.0 (the "License");
10 # you may not use this software except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #             http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 #
21 #
22 #
23 # Unless otherwise specified, all documentation contained herein is licensed
24 # under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25 # you may not use this documentation except in compliance with the License.
26 # You may obtain a copy of the License at
27 #
28 #             https://creativecommons.org/licenses/by/4.0/
29 #
30 # Unless required by applicable law or agreed to in writing, documentation
31 # distributed under the License is distributed on an "AS IS" BASIS,
32 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 # See the License for the specific language governing permissions and
34 # limitations under the License.
35 #
36 # ============LICENSE_END============================================
37 #
38 #
39
40 """Test heat template structure
41 """
42 import pytest
43
44 from tests import cached_yaml as yaml
45 from .helpers import validates, is_base_module, load_yaml
46
47 VERSION = "1.2.0"
48
49 # pylint: disable=invalid-name
50
51
52 @validates("R-27078")
53 def test_heat_template_structure_contains_heat_template_version(yaml_file):
54     """
55     Check that all heat templates have the required sections
56     """
57     template = load_yaml(yaml_file)
58     assert "heat_template_version" in template, "This template must contain a heat_template_version section"
59
60
61 @validates("R-39402")
62 def test_heat_template_structure_contains_description(yaml_file):
63     """
64     Check that all heat templates have the required sections
65     """
66     template = load_yaml(yaml_file)
67     assert "description" in template, "This template must contain a description section"
68
69
70 @validates("R-35414")
71 def test_heat_template_structure_contains_parameters(yaml_file):
72     """
73     Check that all heat templates have the required sections
74     """
75     if is_base_module(yaml_file):
76         pytest.skip("Not applicable to base modules")
77     template = load_yaml(yaml_file)
78     assert "parameters" in template and len(template["parameters"].keys()), "This template must contain a parameters section"
79
80
81 @validates("R-23664")
82 def test_heat_template_structure_contains_resources(heat_template):
83     """
84     Check that all heat templates have the required sections
85     """
86     if is_base_module(heat_template):
87         pytest.skip("Not applicable to base modules")
88     template = load_yaml(heat_template)
89     assert "resources" in template, "This template must contain a resources section"
90
91
92 @validates("R-11441")
93 def test_parameter_type(yaml_file):
94     """A VNF's Heat Orchestration Template's parameter type **MUST**
95     be one of the following values:
96     """
97     types = ["string", "number", "json", "comma_delimited_list", "boolean"]
98     with open(yaml_file) as fh:
99         yml = yaml.load(fh)
100     for key, param in yml.get("parameters", {}).items():
101         assert isinstance(param, dict), "%s parameter %s is not dict" % (yaml_file, key)
102         if "type" not in param:
103             continue
104         typ = param["type"]
105         assert typ in types, '%s parameter %s has invalid type "%s"' % (
106             yaml_file,
107             key,
108             typ,
109         )