aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_nova_servers_index.py
blob: 3ca99a011186a47069d050c8db7fbb780fc9e1ff (plain)
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
# -*- coding: utf8 -*-
# ============LICENSE_START====================================================
# org.onap.vvp/validation-scripts
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
# ===================================================================
#
# Unless otherwise specified, all software contained herein is licensed
# under the Apache License, Version 2.0 (the "License");
# you may not use this software 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.
#
#
#
# Unless otherwise specified, all documentation contained herein is licensed
# under the Creative Commons License, Attribution 4.0 Intl. (the "License");
# you may not use this documentation except in compliance with the License.
# You may obtain a copy of the License at
#
#             https://creativecommons.org/licenses/by/4.0/
#
# Unless required by applicable law or agreed to in writing, documentation
# 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.
#
# ============LICENSE_END============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
#

'''
Ensure that if a resource_id has an {index}, then all resources of
the same vm-type have an index, the indices are consecutive and start
with 0.
'''

import collections
import re

import pytest

from .structures import Heat
from .helpers import validates
from .utils import vm_types

VERSION = '1.1.0'

RE_INDEXED_RESOURCE_ID = re.compile(r'\w+_(?P<index>\d+)$')


@validates('R-11690')
def test_indices(heat_templates):
    '''validate indices
    '''
    indexed_resource_ids = {}
    resources = {}
    for heat_template in heat_templates:
        h = Heat(filepath=heat_template)
        if h.resources:
            indexed_resource_ids.update(get_indexed_resource_ids(h.resources))
            resources.update(h.resources)
    if not resources:
        pytest.skip('No resources found')

    if not indexed_resource_ids:
        pytest.skip('No resources with {index} found')

    types = get_types(resources, indexed_resource_ids)
    if not types:
        pytest.skip('No resources with {vm-type} found')

    indices = collections.defaultdict(list)
    for resource_id, vm_type in types.items():
        indices[vm_type].append(indexed_resource_ids[resource_id])
    bad = {}
    for vm_type, index_list in indices.items():
        for i in range(len(index_list)):
            if i not in index_list:
                bad[vm_type] = index_list
                break
    assert not bad, (
            'vm-type indices must be consecutive, unique,'
            ' and start at 0.\n    %s' % (
                    '\n    '.join(['Resource ID %s: VM Type: %s' % (x, y)
                                   for x, y in types.items() if y in bad])))


def get_indexed_resource_ids(resources):
    """Return dict. keys are resource_ids which end in an index.
    values are the integer index parsed from the resource_id.
    """
    indexed_resource_ids = {}
    for resource in resources:
        match = RE_INDEXED_RESOURCE_ID.match(resource)
        if match:
            indexed_resource_ids[resource] = int(match.groupdict()['index'])
    return indexed_resource_ids


def get_types(resources, indexed_resource_ids):
    """Return dict. keys are resource_ids from indexed_resource_ids.
    values are the vm-type extracted from the resource.
    """
    all_vm_types = {}
    for rid in indexed_resource_ids:
        x = vm_types.get_vm_types_for_resource(resources[rid])
        if x and len(x) == 1:
            all_vm_types[rid] = list(x)[0]  # x is a set.
    return all_vm_types