""" 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())