blob: f61c305f44910d4f88dcb474caa4b3489aa60387 [file] [log] [blame]
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07001"""
2Copyright 2015 Open Networking Foundation (ONF)
3
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20"""
suibin zhangfd266fd2015-10-27 17:06:33 -070021
suibin zhangc7635702015-11-03 21:30:20 -080022# This is a basic platform test suite.
23# Additional platform test cases can be added on this test suite where appropriate.
suibin zhangfd266fd2015-10-27 17:06:33 -070024
25class PLATdockertest:
26 """
27 This testsuite performs the following tests:
28 1) checkout onos docker image;
29 2) test image start up in single and clustered mode;
30 3) test onos app activation and deactivation;
31
32 Prerequisites:
33 1) docker-engine installed on test station (localhost);
34 2) python docker client (docker-py) installed on test station
35 """
36
37 def __init__( self ):
38 self.default = ''
39 global DOCKERREPO, DOCKERTAG
40 global IPlist
41 global CTIDlist
42 global NODElist
43
44 DOCKERREPO = "onosproject/onos"
45 DOCKERTAG = "latest"
46
Pratik Parabcc406452017-02-28 15:15:25 -080047 def CASE0( self, main ):
48 """
49 Pull all docker images and get a list of image tags
50 """
51 main.case( "Pull all docker images and get a list of image tags" )
Pratik Parabcc406452017-02-28 15:15:25 -080052 import os
53 DOCKERREPO = main.params[ 'DOCKER' ][ 'repo' ]
54 os.system( "docker pull -a " + DOCKERREPO )
55 imageTagList = list()
56 imageTagCounter = 0
Pratik Parab50d53d42017-03-24 14:28:22 -070057 duplicateTagDetected = 0
58 imageTagList, duplicateTagDetected = main.ONOSbenchDocker.getListOfImages( DOCKERREPO )
59 stepResult = main.FALSE
60 main.step( "Check for duplicate Tags for a given image" )
61 if not duplicateTagDetected:
62 stepResult = main.TRUE
63 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
64 onpass = "no duplicate image tags",
65 onfail = "duplicate image tags detected!!" )
Pratik Parabcc406452017-02-28 15:15:25 -080066 main.step( "Get a list of image tags" )
67 stepResult = main.FALSE
Pratik Parabcc406452017-02-28 15:15:25 -080068 if imageTagList is not []:
69 main.log.info( "The Image tag list is: " + str(imageTagList) )
70 stepResult = main.TRUE
71 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
72 onpass = "image tag list pulled successfully",
73 onfail = "image tag list not pulled" )
74
suibin zhangfd266fd2015-10-27 17:06:33 -070075 def CASE1( self, main ):
76 """
77 1) set up test params;
78 """
79 import re
suibin zhang3b067ea2015-11-05 13:55:21 -080080 import time
81 import subprocess
suibin zhangfd266fd2015-10-27 17:06:33 -070082
Pratik Parabcc406452017-02-28 15:15:25 -080083 if imageTagCounter < len( imageTagList ):
84 DOCKERTAG = imageTagList[imageTagCounter]
85 imageTagCounter += 1
86
87 main.case("Set case test params for onos image {}".format( DOCKERTAG ))
suibin zhangfd266fd2015-10-27 17:06:33 -070088 main.step("Initialize test params")
89 NODElist = main.params["SCALE"]["nodelist"].split(',')
90 main.log.info("onos container names are: " + ",".join(NODElist) )
91 IPlist = list()
92 main.testOnDirectory = re.sub( "(/tests)$", "", main.testDir )
suibin zhangfd266fd2015-10-27 17:06:33 -070093 CTIDlist = list()
suibin zhang3b067ea2015-11-05 13:55:21 -080094
95 main.log.info("Check docker status, it not running, try restart it")
96 iter = 0
97 stepResult = main.TRUE
98 while subprocess.call("sudo service docker status", shell=True) and iter <= 3:
99 subprocess.call("sudo service docker restart", shell=True)
100 time.sleep(5)
101 iter += 1
102 if iter == 3: stepResult = main.FALSE
103
104 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
105 onpass = "docker is running",
106 onfail = "docker is not running")
107 if stepResult == main.FALSE:
108 main.log.warn("docker is not running - exiting test")
109 main.exit()
110 main.cleanup()
Pratik Parabcc406452017-02-28 15:15:25 -0800111 if imageTagCounter > len( imageTagList ):
Pratik Parab50d53d42017-03-24 14:28:22 -0700112 main.log.info("All images have been tested")
Pratik Parabcc406452017-02-28 15:15:25 -0800113 main.exit()
114 main.cleanup()
suibin zhangfd266fd2015-10-27 17:06:33 -0700115
116 def CASE5(self, main):
117 """
Pratik Parabcc406452017-02-28 15:15:25 -0800118 Pull the specified image
suibin zhangfd266fd2015-10-27 17:06:33 -0700119 """
120
Pratik Parabcc406452017-02-28 15:15:25 -0800121 main.case( "Pull onos docker image {} from {} - \
122 it may take sometime if this is a first time pulling.".format( DOCKERTAG, DOCKERREPO ) )
suibin zhangfd266fd2015-10-27 17:06:33 -0700123 stepResult = main.FALSE
Pratik Parabcc406452017-02-28 15:15:25 -0800124 main.step( "pull image {} from {}".format( DOCKERTAG, DOCKERREPO ) )
suibin zhangfd266fd2015-10-27 17:06:33 -0700125 stepResult = main.ONOSbenchDocker.dockerPull( onosRepo = DOCKERREPO, onosTag = DOCKERTAG )
126 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
127 onpass = "Succeeded in pulling " + DOCKERREPO + ":" + DOCKERTAG,
128 onfail = "Failed to pull " + DOCKERREPO + ":" + DOCKERTAG )
suibin zhang3b067ea2015-11-05 13:55:21 -0800129 if stepResult == main.FALSE: main.skipCase()
suibin zhangfd266fd2015-10-27 17:06:33 -0700130
131 def CASE10( self, main ):
132 """
133 Start docker containers for list of onos nodes, only if not already existed
134 """
135 import re
suibin zhang3b067ea2015-11-05 13:55:21 -0800136 createResult = main.TRUE
137 startResult = main.TRUE
Pratik Parabcc406452017-02-28 15:15:25 -0800138 main.case( "Start onos container(s) for onos image {}".format( DOCKERTAG ))
suibin zhangfd266fd2015-10-27 17:06:33 -0700139 image = DOCKERREPO + ":" + DOCKERTAG
140
Pratik Parabcc406452017-02-28 15:15:25 -0800141 main.step( "Create and (re)start docker container(s) for onos image {} if not already exist".format( DOCKERTAG ))
suibin zhangfd266fd2015-10-27 17:06:33 -0700142 #stepResult = main.FALSE
143
144 for ct in xrange(0, len(NODElist)):
145 if not main.ONOSbenchDocker.dockerCheckCTName( ctName = NODElist[ct] ):
146 main.log.info( "Create new container for onos" + str(ct + 1) )
147 createResult, ctid = main.ONOSbenchDocker.dockerCreateCT( onosImage = image, onosNode = NODElist[ct])
148 CTIDlist.append(ctid)
149 startResult = main.ONOSbenchDocker.dockerStartCT( ctID = ctid )
150 else:
Pratik Parabcc406452017-02-28 15:15:25 -0800151 main.log.info("Container exists for node onos" + str(ct + 1) + "; restart container with {} image".format( DOCKERTAG ) )
suibin zhangfd266fd2015-10-27 17:06:33 -0700152 startResult = main.ONOSbenchDocker.dockerRestartCT( ctName = NODElist[ct ] )
153
154 utilities.assert_equals( expect = main.TRUE, actual = createResult and startResult,
155 onpass = "Container successfully created",
156 onfail = "Failed to create the container" )
157
158 main.step( "Get IP address on onos containers" )
159 stepResult = main.FALSE
160
161 for ct in xrange(0,len(NODElist)):
162 IPlist.append(main.ONOSbenchDocker.dockerIP( ctName = NODElist[ct] ))
163 main.log.info("Container IPs are: " + ', '.join( IPlist ))
164
165 if IPlist is not []:stepResult = main.TRUE
166 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
167 onpass = "Container successfully started",
168 onfail = "Failed to start the container" )
169
170 def CASE110(self,main):
171 """
172 Steps:
173 1) check default startup standalone onos applications status;
174 2) form onos cluster with all nodes;
175 3) check onos applications status;
176 4) activate apps per params and check app status;
177 5) deactivate apps and check app status
178
179 """
180 import time
181 import json
182
Pratik Parabcc406452017-02-28 15:15:25 -0800183 main.case( "Form onos cluster and check status of onos apps for onos image {}".format( DOCKERTAG ) )
184
suibin zhangfd266fd2015-10-27 17:06:33 -0700185 startupSleep = int(main.params["SLEEP"]["startup"])
186
187 appToAct = main.params["CASE110"]["apps"]
188 stepResult = main.FALSE
189
190 main.log.info( "Wait for startup, sleep (sec): " + str(startupSleep))
191 time.sleep(startupSleep)
192
Pratik Parabcc406452017-02-28 15:15:25 -0800193 main.step( "Check initial app states from onos1 for onos image {}".format( DOCKERTAG ))
suibin zhangfd266fd2015-10-27 17:06:33 -0700194 stepResult = main.TRUE
195 response = main.ONOSbenchRest.apps( ip=IPlist[0], port = 8181 )
196 main.log.debug("Rest call response is: " + response)
197 if response is not main.FALSE:
198 for item in json.loads(response):
199 if item["state"] not in ["ACTIVE", "INSTALLED"]:
200 main.log.info("Some bundles are not in correct state. ")
201 main.log.info("App states are: " + response)
202 stepResult = main.FALSE
203 break;
204 if (item["description"] == "Builtin device drivers") and (item["state"] != "ACTIVE"):
205 main.log.info("Driver app is not in 'ACTIVE' state, but in: " + item["state"])
206 stepResult = main.FALSE
207 break;
208 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
209 onpass = "ONOS successfully started",
210 onfail = "Failed to start ONOS correctly" )
suibin zhang3b067ea2015-11-05 13:55:21 -0800211 if stepResult is main.FALSE: main.skipCase()
suibin zhangfd266fd2015-10-27 17:06:33 -0700212
Jon Hall53c5e662016-04-13 16:06:56 -0700213 main.step( "Form onos cluster using 'dependencies/onos-form-cluster' util")
suibin zhangfd266fd2015-10-27 17:06:33 -0700214 stepResult = main.FALSE
215 clcmdpath = main.params["CASE110"]["clustercmdpath"]
216 main.log.info("onos-form-cluster cmd path is: " + clcmdpath)
217 dkruser = main.params["DOCKER"]["user"]
218 dkrpasswd = main.params["DOCKER"]["password"]
219 main.ONOSbenchDocker.onosFormCluster(cmdPath = clcmdpath, onosIPs=IPlist, user=dkruser, passwd = dkrpasswd)
220 main.log.info("Wait for cluster to form with sleep time of " + str(startupSleep))
221 time.sleep(startupSleep)
suibin zhang1ab833b2016-05-12 12:10:11 -0700222 status, response = main.ONOSbenchRest.send(ip=IPlist[0], port=8181, url="/cluster")
suibin zhangfd266fd2015-10-27 17:06:33 -0700223 main.log.debug("Rest call response: " + str(status) + " - " + response)
224 if status == 200:
225 jrsp = json.loads(response)
Pratik Parabcc406452017-02-28 15:15:25 -0800226 if DOCKERTAG == "1.2" or DOCKERTAG == "1.3" or DOCKERTAG == "1.4" or DOCKERTAG == "1.5":
227 clusterIP = [item["ip"]for item in jrsp["nodes"] if item["status"]== "ACTIVE"]
228 else:
229 clusterIP = [item["ip"]for item in jrsp["nodes"] if item["status"]== "READY"]
suibin zhang3b067ea2015-11-05 13:55:21 -0800230 main.log.debug(" IPlist is:" + ",".join(IPlist))
Pratik Parabcc406452017-02-28 15:15:25 -0800231 main.log.debug(" cluster IP is" + ",".join(clusterIP))
suibin zhangfd266fd2015-10-27 17:06:33 -0700232 if set(IPlist) == set(clusterIP): stepResult = main.TRUE
233
234 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
235 onpass = "ONOS successfully started",
236 onfail = "Failed to start ONOS correctly" )
suibin zhang3b067ea2015-11-05 13:55:21 -0800237 if stepResult is main.FALSE: main.skipCase()
suibin zhangfd266fd2015-10-27 17:06:33 -0700238
239 main.step( "Check cluster app status")
240 stepResult = main.TRUE
241 response = main.ONOSbenchRest.apps( ip=IPlist[0], port = 8181 )
242 if response is not main.FALSE:
243 for item in json.loads(response):
244 if item["state"] not in ["ACTIVE", "INSTALLED"]:
245 main.log.info("Some bundles are not in correct state. ")
246 main.log.info("App states are: " + response)
247 stepResult = main.FALSE
suibin zhang3b067ea2015-11-05 13:55:21 -0800248 break
suibin zhangfd266fd2015-10-27 17:06:33 -0700249 if (item["description"] == "Builtin device drivers") and (item["state"] != "ACTIVE"):
250 main.log.info("Driver app is not in 'ACTIVE' state, but in: " + item["state"])
251 stepResult = main.FALSE
suibin zhang3b067ea2015-11-05 13:55:21 -0800252 break
suibin zhangfd266fd2015-10-27 17:06:33 -0700253 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
254 onpass = "ONOS successfully started",
255 onfail = "Failed to start ONOS correctly" )
suibin zhang3b067ea2015-11-05 13:55:21 -0800256 if stepResult is main.FALSE: main.skipCase()
suibin zhangfd266fd2015-10-27 17:06:33 -0700257
258 main.step(" Activate an APP from REST and check APP status")
259 appResults = list()
260 stepResult = main.TRUE
261 applist = main.params["CASE110"]["apps"].split(",")
262 main.log.info("List of apps to activate: " + str(applist) )
263 for app in applist:
suibin zhangfd266fd2015-10-27 17:06:33 -0700264 appRslt = main.ONOSbenchRest.activateApp(appName=app, ip=IPlist[0], port=8181, check=True)
suibin zhang5ae25332015-11-04 13:56:28 -0800265 time.sleep(5)
suibin zhangfd266fd2015-10-27 17:06:33 -0700266 appResults.append(appRslt)
267 stepResult = stepResult and appRslt
Pratik Parabcc406452017-02-28 15:15:25 -0800268 main.log.debug("Apps activation result for " + ",".join(applist) + ": " + str(appResults) )
suibin zhangfd266fd2015-10-27 17:06:33 -0700269 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
suibin zhang1a291692015-11-04 12:14:31 -0800270 onpass = "Successfully activated apps",
271 onfail = "Failed to activated apps correctly" )
suibin zhang3b067ea2015-11-05 13:55:21 -0800272 if stepResult is main.FALSE: main.skipCase()
suibin zhangfd266fd2015-10-27 17:06:33 -0700273
274 main.step(" Deactivate an APP from REST and check APP status")
275 appResults = list()
276 stepResult = main.TRUE
277 applist = main.params["CASE110"]["apps"].split(",")
suibin zhang5ae25332015-11-04 13:56:28 -0800278 main.log.info("Apps to deactivate: " + str(applist) )
suibin zhangfd266fd2015-10-27 17:06:33 -0700279 for app in applist:
280 time.sleep(5)
281 appRslt = main.ONOSbenchRest.deactivateApp(appName=app, ip=IPlist[0], port=8181, check=True)
282 appResults.append(appRslt)
283 stepResult = stepResult and appRslt
284 main.log.debug("Apps deactivation result for " + ",".join(applist) + ": " + str(appResults) )
285 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
suibin zhang1a291692015-11-04 12:14:31 -0800286 onpass = "Successfully deactivated apps",
287 onfail = "Failed to deactivated apps correctly" )
suibin zhang3b067ea2015-11-05 13:55:21 -0800288 if stepResult is main.FALSE: main.skipCase()
289
290 def CASE900(self,main):
291 """
292 Check onos logs for exceptions after tests
293 """
294 import pexpect
295 import time
296 import re
297
298 logResult = main.TRUE
299
300 user = main.params["DOCKER"]["user"]
301 pwd = main.params["DOCKER"]["password"]
302
Pratik Parabcc406452017-02-28 15:15:25 -0800303 main.case("onos Exceptions check with onos image {}".format( DOCKERTAG ))
suibin zhang3b067ea2015-11-05 13:55:21 -0800304 main.step("check onos for any exceptions")
305
306 for ip in IPlist:
suibin zhang559218e2015-12-08 14:57:12 -0800307 spawncmd = "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 " + user + "@" + ip
suibin zhang3b067ea2015-11-05 13:55:21 -0800308 main.log.info("log on node using cmd: " + spawncmd)
309 try:
310 handle = pexpect.spawn(spawncmd)
suibin zhang559218e2015-12-08 14:57:12 -0800311 #handle.expect("yes/no")
312 #handle.sendline("yes")
313 #print("yes is sent")
suibin zhang126282c2015-11-30 14:21:35 -0800314 #this extra statement is sent to get around some
315 #pexpect issue of not seeing the next expected string
suibin zhang3b067ea2015-11-05 13:55:21 -0800316 handle.expect("Password:")
317 handle.sendline(pwd)
318 time.sleep(5)
319 handle.expect("onos>")
320 handle.sendline("log:exception-display")
321 handle.expect("onos>")
322 result = handle.before
323 if re.search("Exception", result):
324 main.log.info("onos: " + ip + " Exceptions:" + result)
325 logResult = logResult and main.FALSE
326 else:
327 main.log.info("onos: " + ip + " Exceptions: None")
328 logResult = logResult and main.TRUE
329 except Exception:
330 main.log.exception("Uncaught exception when getting log from onos:" + ip)
331 logResult = logResult and main.FALSE
332
333 utilities.assert_equals( expect = main.TRUE, actual = logResult,
334 onpass = "onos exception check passed",
335 onfail = "onos exeption check failed" )
suibin zhangfd266fd2015-10-27 17:06:33 -0700336
337 def CASE1000( self, main ):
338
339 """
Pratik Parabcc406452017-02-28 15:15:25 -0800340 Cleanup after tests - stop and delete the containers created; delete the image
suibin zhangfd266fd2015-10-27 17:06:33 -0700341 """
342 import time
343
suibin zhang3b067ea2015-11-05 13:55:21 -0800344 main.case("Clean up images (ex. none:none tagged) and containers")
suibin zhangfd266fd2015-10-27 17:06:33 -0700345 main.step("Stop onos containers")
346 stepResult = main.TRUE
347 for ctname in NODElist:
Pratik Parabcc406452017-02-28 15:15:25 -0800348 if main.ONOSbenchDocker.dockerCheckCTName( ctName="/" + ctname ):
349 main.log.info( "stopping docker container: /" + ctname )
350 stopResult = main.ONOSbenchDocker.dockerStopCT( ctName="/" + ctname )
suibin zhangfd266fd2015-10-27 17:06:33 -0700351 time.sleep(10)
Pratik Parabcc406452017-02-28 15:15:25 -0800352 rmResult = main.ONOSbenchDocker.dockerRemoveCT( ctName="/" + ctname )
suibin zhangfd266fd2015-10-27 17:06:33 -0700353 stepResult = stepResult and stopResult and rmResult
354 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
355 onpass = "Container successfully stopped",
356 onfail = "Failed to stopped the container" )
357
358 #main.step( "remove exiting onosproject/onos images")
359 #stepResult = main.ONOSbenchDocker.dockerRemoveImage( image = DOCKERREPO + ":" + DOCKERTAG )
suibin zhang3b067ea2015-11-05 13:55:21 -0800360 main.step( "remove dangling 'none:none' images")
Pratik Parabcc406452017-02-28 15:15:25 -0800361 stepResult = main.ONOSbenchDocker.dockerRemoveImage()
suibin zhangfd266fd2015-10-27 17:06:33 -0700362 utilities.assert_equals( expect = main.TRUE, actual = stepResult,
suibin zhang3b067ea2015-11-05 13:55:21 -0800363 onpass = "Succeeded in cleaning up images",
364 onfail = "Failed in cleaning up images" )
suibin zhangfd266fd2015-10-27 17:06:33 -0700365
Pratik Parab8d884d12017-03-16 12:14:32 -0700366 def CASE1001( self, main ):
367
368 """
369 Create a file for publishing results on wiki in tabular form
370 """
371
372 main.case( "Create a file for publishing on wiki in tabular form" )
373 import re
374 imageTagCounter = 0
375 testCaseCounter = 0
376 resultCounter = 0
377 resultDictionary = {}
378 testCaseList = []
379 totalNumOfTestCases = 6
380 try:
381 main.tableFileName = main.logdir + "/" + main.TEST + "TableWiki.txt"
382 main.wikiTableFile = open(main.tableFileName, "a+")
383 main.wikiFileHandle = open(main.WikiFileName, "r")
384 for imageTag in imageTagList:
385 resultDictionary[ imageTag ] = []
386 for line in main.wikiFileHandle:
387 matchObj = re.search("(?!.*Case 0).*<h3>(.+?)<\/h3>", line)
388 if testCaseCounter < totalNumOfTestCases:
389 if matchObj:
390 wordsToRemove = re.compile("latest|- PASS|- FAIL|- No Result")
391 testCaseName = wordsToRemove.sub("", matchObj.group(1))
392 testCaseList.append(testCaseName)
393 testCaseCounter += 1
394 if matchObj:
395 if "- PASS" in line:
396 resultDictionary[ imageTagList[ imageTagCounter ] ].append("PASS")
397 if "- FAIL" in line:
398 resultDictionary[ imageTagList[ imageTagCounter ] ].append("FAIL")
399 if "- No Result" in line:
400 resultDictionary[ imageTagList[ imageTagCounter ] ].append("No Result")
401 resultCounter += 1
402 if resultCounter == totalNumOfTestCases:
403 imageTagCounter += 1
404 resultCounter = 0
405 main.wikiTableFile.write( "<table style=\"width:100%\">\n" )
406 main.wikiTableFile.write( "<tr>\n" )
407 main.wikiTableFile.write( "<th>ONOS Version</th>\n" )
408 for testCaseName in testCaseList:
409 main.wikiTableFile.write( "<th>" + testCaseName + "</th>\n" )
410 main.wikiTableFile.write( "</tr>\n" )
411 for imageTag in imageTagList:
412 main.wikiTableFile.write( "<tr>\n" )
413 main.wikiTableFile.write( "<td>" + imageTag + "</td>\n" )
414 for resultValue in resultDictionary[ imageTag ]:
415 if resultValue == "PASS":
416 emoticonValue = "\"tick\""
417 if resultValue == "FAIL":
418 emoticonValue = "\"cross\""
419 if resultValue == "No Result":
420 emoticonValue = "\"warning\""
421 main.wikiTableFile.write( "<td>" + resultValue + " <ac:emoticon ac:name=" + emoticonValue + " /></td>\n" )
422 main.wikiTableFile.write( "</tr>\n" )
423 main.wikiTableFile.write( "</table>\n" )
424 main.wikiTableFile.close()
425 main.wikiFileHandle.close()
426 logResult = main.TRUE
427 except Exception:
428 main.log.exception( "Exception while writing to the table file" )
429 logResult = main.FALSE
430 utilities.assert_equals( expect = main.TRUE, actual = logResult,
431 onpass = "onos exception check passed",
432 onfail = "onos exception check failed" )