Set unlimited router quotas
[sdnvpn.git] / sdnvpn / test / functest / run_sdnvpn_tests.py
1 #!/bin/python
2 #
3 # Copyright (c) 2017 All rights reserved
4 # This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10
11 import importlib
12 import logging
13 import os
14 import sys
15 import traceback
16 import yaml
17
18 from functest.core import feature as base
19 from functest.utils import openstack_utils as os_utils
20 from sdnvpn.lib import config as sdnvpn_config
21 from sdnvpn.lib.gather_logs import gather_logs
22 from sdnvpn.lib import utils as test_utils
23
24 COMMON_CONFIG = sdnvpn_config.CommonConfig()
25
26
27 class SdnvpnFunctest(base.Feature):
28
29     __logger = logging.getLogger(__name__)
30
31     def execute(self):
32
33         nova_client = os_utils.get_nova_client()
34         neutron_client = os_utils.get_neutron_client()
35
36         tenant_id = os_utils.get_tenant_id(os_utils.get_keystone_client(),
37                                            os.environ['OS_PROJECT_NAME'])
38
39         neutron_quota = test_utils.get_neutron_quota(neutron_client, tenant_id)
40         (neutron_nw_quota, neutron_subnet_quota, neutron_port_quota,
41          neutron_router_quota) = (
42             neutron_quota['network'], neutron_quota['subnet'],
43             neutron_quota['port'], neutron_quota['router'])
44         instances_quota = test_utils.get_nova_instances_quota(nova_client)
45
46         self.__logger.info("Setting net/subnet/port/router "
47                            "quota to unlimited")
48         test_utils.update_nw_subnet_port_quota(
49             neutron_client,
50             tenant_id,
51             COMMON_CONFIG.neutron_nw_quota,
52             COMMON_CONFIG.neutron_subnet_quota,
53             COMMON_CONFIG.neutron_port_quota,
54             COMMON_CONFIG.neutron_router_quota)
55
56         # Workaround for
57         # https://jira.opnfv.org/projects/SDNVPN/issues/SDNVPN-115
58         self.__logger.info("Setting instances quota class to unlimited")
59         test_utils.update_instance_quota_class(
60             nova_client,
61             COMMON_CONFIG.nova_instances_quota_class)
62
63         with open(COMMON_CONFIG.config_file) as f:
64             config_yaml = yaml.safe_load(f)
65
66         testcases = config_yaml.get("testcases")
67         overall_status = "PASS"
68         for tc in testcases:
69             if testcases[tc]['enabled']:
70                 test_name = tc
71                 test_descr = testcases[tc]['description']
72                 title = ("Running '%s - %s'" %
73                          (test_name, test_descr))
74                 self.__logger.info(title)
75                 self.__logger.info("%s\n" % ("=" * len(title)))
76                 t = importlib.import_module(test_name, package=None)
77                 try:
78                     result = t.main()
79                 except Exception as ex:
80                     result = -1
81                     self.__logger.info("Caught Exception in %s: %s Trace: %s"
82                                        % (test_name, ex,
83                                           traceback.format_exc()))
84                 if result < 0:
85                     status = "FAIL"
86                     overall_status = "FAIL"
87                     self.__logger.info("Testcase %s failed" % test_name)
88                 else:
89                     status = result.get("status")
90                     self.details.update(
91                         {test_name: {'status': status,
92                                      'details': result.get("details")}})
93                     self.__logger.info("Results of test case '%s - %s':\n%s\n"
94                                        % (test_name, test_descr, result))
95
96                     if status == "FAIL":
97                         overall_status = "FAIL"
98
99         self.__logger.info("Resetting subnet/net/port quota")
100         test_utils.update_nw_subnet_port_quota(neutron_client,
101                                                tenant_id,
102                                                neutron_nw_quota,
103                                                neutron_subnet_quota,
104                                                neutron_port_quota,
105                                                neutron_router_quota)
106
107         self.__logger.info("Resetting instances quota class")
108         test_utils.update_instance_quota_class(nova_client, instances_quota)
109
110         try:
111             installer_type = str(os.environ['INSTALLER_TYPE'].lower())
112             if installer_type in ["fuel", "apex"]:
113                 gather_logs('overall')
114             else:
115                 self.__logger.info("Skipping log gathering because installer"
116                                    "type %s is neither fuel nor apex" %
117                                    installer_type)
118         except Exception as ex:
119             self.__logger.error(('Something went wrong in the Log gathering.'
120                                  'Ex: %s, Trace: %s')
121                                 % (ex, traceback.format_exc()))
122
123         if overall_status == "PASS":
124             self.result = 100
125             return base.Feature.EX_OK
126
127         return base.Feature.EX_RUN_ERROR
128
129
130 if __name__ == '__main__':
131     logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s'
132                         '- %(levelname)s - %(message)s')
133     SDNVPN = SdnvpnFunctest()
134     sys.exit(SDNVPN.execute())