本文整理汇总了Python中pybvc.controller.controller.Controller.get_schemas方法的典型用法代码示例。如果您正苦于以下问题:Python Controller.get_schemas方法的具体用法?Python Controller.get_schemas怎么用?Python Controller.get_schemas使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pybvc.controller.controller.Controller
的用法示例。
在下文中一共展示了Controller.get_schemas方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_ControllerGetSchemas
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
def test_ControllerGetSchemas(self, controller):
print ("--------------------------------------------------------- ")
print ("<< Test ControllerGetSchemas Start")
print ("--------------------------------------------------------- ")
print ("<< Creating Controller instance")
time.sleep(self.rundelay)
ctrl = Controller(self.ctrlIpAddr, self.ctrlPortNum, self.ctrlUname, self.ctrlPswd)
print ("<< 'Controller':")
print ctrl.to_json()
print ("\n<< Getting list of YANG models supported by the Controller ")
time.sleep(self.rundelay)
nodeName = "controller-config"
result = ctrl.get_schemas(nodeName)
status = result.get_status()
if status.eq(STATUS.OK):
slist = result.get_data()
print "\n<< YANG models list: %s" % slist
print "\n<< JSON dumps:"
print json.dumps(slist, default=lambda o: o.__dict__, sort_keys="True", indent=4)
else:
print ("\n")
print ("!!!Demo terminated, reason: %s" % status.brief())
# and verify the results
self.assertEquals(
str(slist),
"[{u'location': [u'NETCONF'], u'identifier': u'threadpool-impl', u'namespace': u'urn:opendaylight:params:xml:ns:yang:controller:threadpool:impl', u'version': u'2013-04-05', u'format': u'ietf-netconf-monitoring:yang'}]",
)
示例2: nc_demo_1
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
def nc_demo_1():
f = "cfg1.yml"
d = {}
if(load_dict_from_file(f, d) is False):
print("Config file '%s' read error: " % f)
exit()
try:
ctrlIpAddr = d['ctrlIpAddr']
ctrlPortNum = d['ctrlPortNum']
ctrlUname = d['ctrlUname']
ctrlPswd = d['ctrlPswd']
rundelay = d['rundelay']
except:
print ("Failed to get Controller device attributes")
exit(0)
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("<<< Demo Start")
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("\n")
print ("<<< Creating Controller instance")
time.sleep(rundelay)
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("'Controller':")
print ctrl.to_json()
print "\n"
print ("<<< Get list of YANG models supported by the Controller")
time.sleep(rundelay)
nodeName = "controller-config"
result = ctrl.get_schemas(nodeName)
status = result.get_status()
if(status.eq(STATUS.OK)):
print "YANG models list:"
slist = result.get_data()
print json.dumps(slist, default=lambda o: o.__dict__,
sort_keys=True, indent=4)
else:
print ("\n")
print ("!!!Demo terminated, reason: %s" % status.brief())
exit(0)
print ("\n")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
print (">>> Demo End")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
示例3: test_ControllerGetSchemas_404
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
def test_ControllerGetSchemas_404(self, controller):
print ("--------------------------------------------------------- ")
print ("<< Test ControllerGetSchemas_HTTP_Error Start")
print ("--------------------------------------------------------- ")
print ("<< Creating Controller instance")
time.sleep(self.rundelay)
ctrl = Controller(self.ctrlIpAddr, self.ctrlPortNum, self.ctrlUname, self.ctrlPswd)
print ("\n<< Getting list of YANG models supported by the Controller ")
time.sleep(self.rundelay)
nodeName = "controller-config"
result = ctrl.get_schemas(nodeName)
status = result.get_status()
print ("<< Request Status: %s" % status.brief())
# and verify the results: STATUS.HTTP_ERROR
self.assertEquals(10, status.status_code)
示例4: test_ControllerGetSchemas_no_content
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
def test_ControllerGetSchemas_no_content(self, controller):
print ("--------------------------------------------------------- ")
print ("<< Test ControllerGetSchemas_no_content Start")
print ("--------------------------------------------------------- ")
print ("<< Creating Controller instance")
time.sleep(self.rundelay)
ctrl = Controller(self.ctrlIpAddr, self.ctrlPortNum, self.ctrlUname, self.ctrlPswd)
print ("<< 'Controller':")
print ctrl.to_json()
print ("\n<< Getting list of YANG models supported by the Controller ")
time.sleep(self.rundelay)
nodeName = "controller-config"
result = ctrl.get_schemas(nodeName)
status = result.get_status()
print ("<< Verifying STATUS.DATA_NOT_FOUND ")
# and verify the results: STATUS.DATA_NOT_FOUND
self.assertEquals(2, status.status_code)
示例5: print
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
try:
ctrlIpAddr = d['ctrlIpAddr']
ctrlPortNum = d['ctrlPortNum']
ctrlUname = d['ctrlUname']
ctrlPswd = d['ctrlPswd']
nodeName = d['nodeName']
nodeIpAddr = d['nodeIpAddr']
nodePortNum = d['nodePortNum']
nodeUname = d['nodeUname']
nodePswd = d['nodePswd']
except:
print ("Failed to get Controller device attributes")
exit(0)
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
result = ctrl.get_schemas("controller-config")
status = result.get_status()
if(status.eq(STATUS.OK) == True):
print "YANG models list:"
slist = result.get_data()
print json.dumps(slist, default=lambda o: o.__dict__, sort_keys=True, indent=4)
else:
print ("\n")
print ("!!!Failed, reason: %s" % status.brief().lower())
print ("%s" % status.detailed())
sys.exit(0)
print "\n"
示例6: print
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_schemas [as 别名]
rundelay = 5
print ("\n")
print ("<<< Creating Controller instance")
time.sleep(rundelay)
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("'Controller':")
print ctrl.to_json()
print "\n"
print ("<<< Get list of YANG models supported by the Controller")
time.sleep(rundelay)
nodeName = "controller-config"
result = ctrl.get_schemas(nodeName)
status = result.get_status()
if(status.eq(STATUS.OK)):
print "YANG models list:"
slist = result.get_data()
print json.dumps(slist, default=lambda o: o.__dict__, sort_keys=True, indent=4)
else:
print ("\n")
print ("!!!Demo terminated, reason: %s" % status.brief())
exit(0)
print ("\n")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
print (">>> Demo End")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")