change for get joid onos ip
[functest.git] / testcases / Controllers / ONOS / Teston / CI / onosfunctest.py
1 """
2 Description: This test is to run onos Teston VTN scripts
3
4 List of test cases:
5 CASE1 - Northbound NBI test network/subnet/ports
6 CASE2 - Ovsdb test&Default configuration&Vm go online
7
8 lanqinglong@huawei.com
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are made available under the terms of the Apache License, Version 2.0
12 # which accompanies this distribution, and is available at
13 # http://www.apache.org/licenses/LICENSE-2.0
14 #
15 """
16
17 import os
18 import time
19 import sys
20 import logging
21 import yaml
22 import datetime
23 import re
24 import argparse
25
26 parser = argparse.ArgumentParser()
27 parser.add_argument("-i", "--installer", help="Installer type")
28 args = parser.parse_args()
29 """ logging configuration """
30
31 logger = logging.getLogger('onos')
32 logger.setLevel(logging.DEBUG)
33
34 ch = logging.StreamHandler()
35
36
37 formatter = logging.Formatter('%(asctime)s - %(name)s'
38                               '- %(levelname)s - %(message)s')
39
40 ch.setFormatter(formatter)
41 logger.addHandler(ch)
42
43 with open("/home/opnfv/functest/conf/config_functest.yaml") as f:
44     functest_yaml = yaml.safe_load(f)
45 f.close()
46
47 # onos parameters
48 TEST_DB = functest_yaml.get("results").get("test_db_url")
49 ONOS_REPO_PATH = functest_yaml.get("general").get("directories").get("dir_repos")
50 ONOS_CONF_DIR = functest_yaml.get("general").get("directories").get("dir_functest_conf")
51 REPO_PATH = ONOS_REPO_PATH + '/functest/'
52 if not os.path.exists(REPO_PATH):
53     logger.error("Functest repository directory not found '%s'" % REPO_PATH)
54     exit(-1)
55 sys.path.append(REPO_PATH + "testcases/")
56 import functest_utils
57
58 ONOSCI_PATH= REPO_PATH+'testcases/Controllers/ONOS/Teston/CI/'
59 starttime = datetime.datetime.now()
60
61 HOME = os.environ['HOME'] + "/"
62
63 def RunScript(testname):
64     """
65     Run ONOS Test Script
66     Parameters:
67     testname: ONOS Testcase Name
68     """
69     runtest = ONOSCI_PATH + "OnosSystemTest/TestON/bin/cli.py run " + testname
70     logger.debug( "Run script " + testname )
71     os.system(runtest)
72
73 def DownloadCodes(url="https://github.com/sunyulin/OnosSystemTest.git"):
74     """
75     Download Onos Teston codes
76     Parameters:
77     url: github url
78     """
79     downloadcode = "git clone " + url + " " + ONOSCI_PATH + "OnosSystemTest"
80     logger.debug( "Download Onos Teston codes " + url)
81     os.system(downloadcode)
82
83 def GetResult():
84     LOGPATH = ONOSCI_PATH + "OnosSystemTest/TestON/logs"
85     cmd = "grep -rnh " + "Fail" + " " + LOGPATH
86     Resultbuffer = os.popen(cmd).read()
87     duration = datetime.datetime.now() - starttime
88     time.sleep(2)
89
90     if re.search("\s+[1-9]+\s+", Resultbuffer):
91         logger.debug("Testcase Fails\n" + Resultbuffer)
92         Result = "Failed"
93     else:
94         logger.debug("Testcases Success")
95         Result = "Success"
96     payload={'timestart': str(starttime),
97               'duration': str(duration),
98                 'status': Result}
99     return payload
100
101 def SetOnosIp():
102     cmd = "keystone catalog --service network | grep publicURL"
103     cmd_output = os.popen(cmd).read()
104     OC1=re.search(r"\d+\.\d+\.\d+\.\d+",cmd_output).group()
105     os.environ['OC1'] = OC1
106     time.sleep(2)
107     logger.debug( "ONOS IP is " + OC1)
108
109 def SetOnosIpForJoid():
110     cmd = "env | grep SDN_CONTROLLER"
111     cmd_output = os.popen(cmd).read()
112     OC1=re.search(r"\d+\.\d+\.\d+\.\d+",cmd_output).group()
113     os.environ['OC1'] = OC1
114     time.sleep(2)
115     logger.debug( "ONOS IP is " + OC1)
116
117 def CleanOnosTest():
118     TESTONPATH = ONOSCI_PATH + "OnosSystemTest/"
119     cmd = "rm -rf " + TESTONPATH
120     os.system(cmd)
121     time.sleep(2)
122     logger.debug( "Clean ONOS Teston" )
123
124 def main():
125
126     DownloadCodes()
127     if args.installer == "joid":
128         logger.debug( "Installer is Joid")
129         SetOnosIpForJoid()
130     else:
131         SetOnosIp()
132     RunScript("FUNCvirNetNB")
133     RunScript("FUNCvirNetNBL3")
134
135     try:
136         logger.debug("Push result into DB")
137         # TODO check path result for the file
138         git_version = functest_utils.get_git_branch(REPO_PATH)
139         pod_name = functest_utils.get_pod_name(logger)
140         result = GetResult()
141         functest_utils.push_results_to_db(TEST_DB,
142                                           "ONOS",
143                                           logger, pod_name, git_version,
144                                           payload=result)
145     except:
146         logger.error("Error pushing results into Database")
147
148     CleanOnosTest()
149
150
151 if __name__ == '__main__':
152     main()