blob: e8524430fa0d2e165c3efae31fc0cfa5fde39eb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"""
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
"""
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.onosclean( runhandle )
|