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