[VVP] updating validation scripts in dublin
[vvp/validation-scripts.git] / ice_validator / tests / test_required_parameters_no_constraints.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 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
39 #
40
41 import pytest
42 from tests import cached_yaml as yaml
43
44 from .helpers import validates
45
46
47 def check_parameters_no_constraints(yaml_file, parameter):
48
49     with open(yaml_file) as fh:
50         yml = yaml.load(fh)
51
52     param = yml.get("parameters", {}).get(parameter)
53     if not param:
54         pytest.skip("Parameter {} not defined in parameters section".format(parameter))
55
56     assert (
57         "constraints" not in param
58     ), "Found constraints defined for parameter: {}".format(parameter)
59
60
61 @validates("R-55218")
62 def test_vnf_id_parameter_has_no_constraints(yaml_file):
63     check_parameters_no_constraints(yaml_file, "vnf_id")
64
65
66 @validates("R-98374")
67 def test_vf_module_id_parameter_has_no_constraints(yaml_file):
68     check_parameters_no_constraints(yaml_file, "vf_module_id")
69
70
71 @validates("R-44318")
72 def test_vnf_name_parameter_has_no_constraints(yaml_file):
73     check_parameters_no_constraints(yaml_file, "vnf_name")
74
75
76 @validates("R-34055")
77 def test_workload_context_parameter_has_no_constraints(yaml_file):
78     check_parameters_no_constraints(yaml_file, "workload_context")
79
80
81 @validates("R-56183")
82 def test_environment_context_parameter_has_no_constraints(yaml_file):
83     check_parameters_no_constraints(yaml_file, "environment_context")
84
85
86 @validates("R-15480")
87 def test_vf_module_name_parameter_has_no_constraints(yaml_file):
88     check_parameters_no_constraints(yaml_file, "vf_module_name")
89
90
91 @validates("R-67597")
92 def test_vm_role_parameter_has_no_constraints(yaml_file):
93     check_parameters_no_constraints(yaml_file, "vm_role")
94
95
96 @validates("R-09811")
97 def test_vf_module_index_parameter_has_no_constraints(yaml_file):
98     check_parameters_no_constraints(yaml_file, "vf_module_index")