Make sdnvpn logging proper
[sdnvpn.git] / sdnvpn / test / functest / run_sdnvpn_tests.py
1 #!/usr/bin/env 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 xtesting.core import feature
19 from sdnvpn.lib import config as sdnvpn_config
20 from sdnvpn.lib import openstack_utils as os_utils
21 from sdnvpn.lib.gather_logs import gather_logs
22 from sdnvpn.lib import utils as test_utils
23
24
25 COMMON_CONFIG = sdnvpn_config.CommonConfig()
26
27
28 class SdnvpnFunctest(feature.Feature):
29
30     def execute(self):
31
32         nova_client = os_utils.get_nova_client()
33         neutron_client = os_utils.get_neutron_client()
34
35         tenant_id = os_utils.get_tenant_id(os_utils.get_keystone_client(),
36                                            os.environ['OS_PROJECT_NAME'])
37
38         neutron_quota = test_utils.get_neutron_quota(neutron_client, tenant_id)
39         (neutron_nw_quota, neutron_subnet_quota, neutron_port_quota,
40          neutron_router_quota) = (
41             neutron_quota['network'], neutron_quota['subnet'],
42             neutron_quota['port'], neutron_quota['router'])
43         instances_quota = test_utils.get_nova_instances_quota(nova_client)
44
45         self.logger.info("Setting net/subnet/port/router "
46                          "quota to unlimited")
47         test_utils.update_nw_subnet_port_quota(
48             neutron_client,
49             tenant_id,
50             COMMON_CONFIG.neutron_nw_quota,
51             COMMON_CONFIG.neutron_subnet_quota,
52             COMMON_CONFIG.neutron_port_quota,
53             COMMON_CONFIG.neutron_router_quota)
54         test_utils.create_default_flavor()
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                 try:
77                     self.logger.info("Importing the testcase %s" % test_name)
78                     t = importlib.import_module(test_name, package=None)
79                     self.logger.info("Calling the testcase %s main method"
80                                      % test_name)
81                     result = t.main()
82                     self.logger.info("Execution is complete for the"
83                                      " testcase %s" % test_name)
84                 except Exception as ex:
85                     result = -1
86                     self.logger.info("Caught Exception in %s: %s Trace: %s"
87                                      % (test_name, ex,
88                                         traceback.format_exc()))
89                 if result < 0:
90                     status = "FAIL"
91                     overall_status = "FAIL"
92                     self.logger.info("Testcase %s failed" % test_name)
93                 else:
94                     status = result.get("status")
95                     self.details.update(
96                         {test_name: {'status': status,
97                                      'details': result.get("details")}})
98                     self.logger.info("Results of test case '%s - %s':\n%s\n"
99                                      % (test_name, test_descr, result))
100
101                     if status == "FAIL":
102                         overall_status = "FAIL"
103
104         self.logger.info("Resetting subnet/net/port quota")
105         test_utils.update_nw_subnet_port_quota(neutron_client,
106                                                tenant_id,
107                                                neutron_nw_quota,
108                                                neutron_subnet_quota,
109                                                neutron_port_quota,
110                                                neutron_router_quota)
111
112         self.logger.info("Resetting instances quota class")
113         test_utils.update_instance_quota_class(nova_client, instances_quota)
114
115         try:
116             installer_type = str(os.environ['INSTALLER_TYPE'].lower())
117             if installer_type in ["fuel", "apex"]:
118                 gather_logs('overall')
119             else:
120                 self.logger.info("Skipping log gathering because installer"
121                                  "type %s is neither fuel nor apex" %
122                                  installer_type)
123         except Exception as ex:
124             self.logger.error(('Something went wrong in the Log gathering.'
125                                'Ex: %s, Trace: %s')
126                               % (ex, traceback.format_exc()))
127
128         if overall_status == "PASS":
129             self.result = 100
130             return feature.Feature.EX_OK
131
132         return feature.Feature.EX_RUN_ERROR
133
134
135 if __name__ == '__main__':
136     logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s'
137                         '- %(levelname)s - %(message)s')
138     SDNVPN = SdnvpnFunctest()
139     sys.exit(SDNVPN.execute())