blob: 696e868e6772f42b3d4bf221380e3c31482b8a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"""
Description: This test is to run onos Teston VTN scripts
List of test cases:
CASE1 - Northbound NBI test network/subnet/ports
CASE2 - Ovsdb test&Default configuration&Vm go online
lanqinglong@huawei.com
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
"""
from adapters.client import client
if __name__=="__main__":
main = client()
main.getdefaultpara()
#scripts to run
runhandle = main.onosstart()
main.RunScript(runhandle, "FUNCvirNetNB")
# main.RunScript(runhandle, "FUNCovsdbtest")
main.RunScript(runhandle, "FUNCvirNetNBL3")
# main.RunScript(runhandle, "FUNCovsdbtestL3")
main.onosclean( runhandle )
main.push_results_to_db(main.GetResult())
|