aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/patrole/patrole.py
blob: a00e17c3700597659f7702b85a7d09b7eae393e0 (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
#!/usr/bin/env python

# Copyright (c) 2018 Orange and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0

# pylint: disable=missing-docstring

import logging
import os

from six.moves import configparser

from functest.opnfv_tests.openstack.tempest import tempest
from functest.utils import config


class Patrole(tempest.TempestCommon):

    __logger = logging.getLogger(__name__)

    def __init__(self, **kwargs):
        if "case_name" not in kwargs:
            kwargs["case_name"] = 'patrole'
        super(Patrole, self).__init__(**kwargs)
        self.res_dir = os.path.join(
            getattr(config.CONF, 'dir_results'), 'patrole')
        self.list = os.path.join(self.res_dir, 'tempest-list.txt')

    def apply_tempest_blacklist(self):
        pass

    def configure(self, **kwargs):
        super(Patrole, self).configure(**kwargs)
        rconfig = configparser.RawConfigParser()
        rconfig.read(self.conf_file)
        rconfig.add_section('rbac')
        rconfig.set('rbac', 'enable_rbac', True)
        rconfig.set('rbac', 'rbac_test_role', kwargs.get('role', 'admin'))
        with open(self.conf_file, 'wb') as config_file:
            rconfig.write(config_file)
        self.backup_tempest_config(self.conf_file, self.res_dir)

    def run(self, **kwargs):
        for exclude in kwargs.get('exclude', []):
            self.mode = "{}(?!.*{})".format(self.mode, exclude)
        self.mode = "'{}(?=patrole_tempest_plugin.tests.api.({}))'".format(
            self.mode, '|'.join(kwargs.get('services', [])))
        return super(Patrole, self).run(**kwargs)