58a1384705b797e5447158c32a1249b3557abf24
[vvp/validation-scripts.git] / ice_validator / tests / test_get_file_only_reference_local_files.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 """test get_file
41 """
42 import re
43 from os import listdir
44 from os import path
45 from os import sep
46
47 import pytest
48 from tests import cached_yaml as yaml
49
50 from .helpers import validates
51 from .utils.nested_iterables import find_all_get_file_in_yml
52
53 VERSION = "1.0.0"
54
55 # pylint: disable=invalid-name
56
57
58 @validates("R-41888")
59 @pytest.mark.base
60 def test_get_file_no_url_retrieval(yaml_file):
61     """
62     Make sure that all references to get_file only try to access local files
63     and only assume a flat directory structure
64     """
65     is_url = re.compile(r"(?:http|https|file|ftp|ftps)://.+")
66
67     with open(yaml_file) as fh:
68         yml = yaml.load(fh)
69
70     # skip if parameters are not defined
71     if "resources" not in yml:
72         pytest.skip("No resources specified in the heat template")
73
74     get_files = find_all_get_file_in_yml(yml["resources"])
75
76     invalid_files = []
77     for get_file in get_files:
78         if is_url.match(get_file):
79             invalid_files.append(get_file)
80             continue
81         if sep in get_file:
82             invalid_files.append(get_file)
83             continue
84
85     assert not set(invalid_files), "External get_file references detected {}".format(
86         invalid_files
87     )
88
89
90 @validates("R-76718")
91 @pytest.mark.base
92 def test_get_file_only_reference_local_files(yaml_file):
93     """
94     Make sure that all references to get_file only try to access local files
95     and only assume a flat directory structure
96     """
97     is_url = re.compile(r"(?:http|https|file|ftp|ftps)://.+")
98     base_dir, filename = path.split(yaml_file)
99
100     with open(yaml_file) as fh:
101         yml = yaml.load(fh)
102
103     # skip if parameters are not defined
104     if "resources" not in yml:
105         pytest.skip("No resources specified in the heat template")
106
107     get_files = find_all_get_file_in_yml(yml["resources"])
108
109     invalid_files = []
110     for get_file in get_files:
111         if is_url.match(get_file):
112             pytest.skip("external get_file detected")
113             continue
114         if get_file not in listdir(base_dir):
115             invalid_files.append(get_file)
116             continue
117
118     assert not set(invalid_files), "Non-local files detected in get_file {}".format(
119         invalid_files
120     )