Merge "Fix instance boot when metadata exists"
[sdnvpn.git] / sdnvpn / test / functest / testcase_9.py
1 #!/usr/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 # Tests performed:
11 # - Peering OpenDaylight with Quagga:
12 #   - Set up a Quagga instance in the functest container
13 #   - Start a BGP router with OpenDaylight
14 #   - Add the functest Quagga as a neighbor
15 #   - Verify that the OpenDaylight and gateway Quagga peer
16 import logging
17 import sys
18
19 from sdnvpn.lib import config as sdnvpn_config
20 from sdnvpn.lib import utils as test_utils
21 from sdnvpn.lib.results import Results
22
23 COMMON_CONFIG = sdnvpn_config.CommonConfig()
24 TESTCASE_CONFIG = sdnvpn_config.TestcaseConfig(
25     "sdnvpn.test.functest.testcase_9")
26
27 logger = logging.getLogger('__name__')
28
29
30 def main():
31     results = Results(COMMON_CONFIG.line_length)
32     results.add_to_summary(0, "=")
33     results.add_to_summary(2, "STATUS", "SUBTEST")
34     results.add_to_summary(0, "=")
35
36     openstack_nodes = test_utils.get_nodes()
37
38     # node.is_odl() doesn't work in Apex
39     # https://jira.opnfv.org/browse/RELENG-192
40     controllers = [node for node in openstack_nodes
41                    if "running" in
42                    node.run_cmd("sudo systemctl status opendaylight")]
43
44     msg = ("Verify that all OpenStack nodes OVS br-int have "
45            "fail_mode set to secure")
46     results.record_action(msg)
47     results.add_to_summary(0, "-")
48     if not controllers:
49         msg = ("Controller (ODL) list is empty. Skipping rest of tests.")
50         logger.info(msg)
51         results.add_failure(msg)
52         return results.compile_summary()
53     else:
54         msg = ("Controller (ODL) list is ready")
55         logger.info(msg)
56         results.add_success(msg)
57     # Get fail_mode status on all nodes
58     fail_mode_statuses = test_utils.is_fail_mode_secure()
59     for node_name, status in fail_mode_statuses.iteritems():
60         msg = 'Node {} br-int is fail_mode secure'.format(node_name)
61         if status:
62             results.add_success(msg)
63         else:
64             results.add_failure(msg)
65
66     return results.compile_summary()
67
68
69 if __name__ == '__main__':
70     logging.basicConfig(level=logging.INFO)
71     sys.exit(main())