本文整理汇总了Python中vtn_vbr.create_vbr函数的典型用法代码示例。如果您正苦于以下问题:Python create_vbr函数的具体用法?Python create_vbr怎么用?Python create_vbr使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了create_vbr函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_vbr_flowfilter_pass
def test_vbr_flowfilter_pass():
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
print "action type create pass"
print "TEST 5 : VBR->FLOWFILTER TEST"
# Delay for AUDIT
retval=controller.wait_until_state('ControllerFirst', "up")
if retval != 0:
print "Controller state check Failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrOne','VbrIfOne')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrTwo','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrTwo','VbrIfTwo')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrOne','VbrIfOne','ControllerFirst')
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrTwo','ControllerFirst', presence = 'yes', position = 1)
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrTwo','VbrIfTwo','ControllerFirst', presence = 'yes', position = 0)
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=flowlistentry.create_flowlist('FlowlistOne')
if retval != 0:
print "FlowList Create Failed"
exit(1)
retval=flowlistentry.create_flowlistentry('FlowlistOne', 'FlowlistentryOne','ControllerFirst')
if retval != 0:
print "FlowlistEntry Create Failed"
exit(1)
retval=flowfilter.create_flowfilter('VtnOne|VbrOne', 'FlowfilterOnePass')
if retval != 0:
print "VBRFlowFilter Create Failed"
exit(1)
retval=flowfilter.create_flowfilter_entry('VtnOne|VbrOne', 'FlowfilterOnePass')
if retval != 0:
print "VBRFlowFilterEntry Create Failed"
exit(1)
retval=flowfilter.validate_flowfilter_at_controller('VtnOne|VbrOne', 'ControllerFirst', 'FlowfilterOnePass', presence='yes', position=0)
if retval != 0:
print "FlowFilter validation at Controller Failed"
exit(1)
retval=flowfilter.delete_flowfilter_entry('VtnOne|VbrOne', 'FlowfilterOnePass')
if retval != 0:
print "VBRFlowFilterEntry deletete Failed"
exit(1)
retval=flowfilter.delete_flowfilter('VtnOne|VbrOne', 'FlowfilterOnePass')
if retval != 0:
print "VBRFlowFilter deletete Failed"
exit(1)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vbr_flowfilter.py
示例2: test_vtn_vbr_vlanmap_lg_id
def test_vtn_vbr_vlanmap_lg_id():
print "CREATE Controller"
retval = controller.add_controller_ex("ControllerFirst")
if retval != 0:
print "TEST 5 :Controller Create Failed"
exit(1)
print "TEST 5 : VTenant with one VBridge one VLANMAP no_vlan_id and logicalport_id"
# Delay for AUDIT
time.sleep(15)
retval = vtn_vbr.create_vtn("VtnOne")
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.create_vbr("VtnOne", "VbrOne", "ControllerFirst")
if retval != 0:
print "VBR Create Failed"
exit(1)
retval = create_vlanmap("VtnOne", "VbrOne", "VlanmapOne", no_vlan=4)
if retval != 0:
print "VLANMAP Create Failed"
exit(1)
retval = validate_vlanmap_at_controller("VtnOne", "VbrOne", "VlanmapOne", "ControllerFirst", no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP Validate Failed"
exit(1)
retval = update_vlanmap("VtnOne", "VbrOne", "VlanmapOne", update_id=1)
if retval != 0:
print "VLANMAP upadte Failed"
exit(1)
retval = validate_vlanmap_update("VtnOne", "VbrOne", "VlanmapOne", "ControllerFirst", no_vlan_id=1)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller("VtnOne", "VbrOne", "ControllerFirst")
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller("VtnOne", "ControllerFirst")
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = delete_vlanmap("VtnOne", "VbrOne", "VlanmapOne", no_vlan=1)
if retval != 0:
print "VLANMAP Delete Failed"
exit(1)
retval = validate_vlanmap_at_controller(
"VtnOne", "VbrOne", "VlanmapOne", "ControllerFirst", presence="no", position=0, no_vlan_id=1
)
if retval != 0:
print "After Delete VLANMAP Validate Failed"
exit(1)
retval = vtn_vbr.delete_vbr("VtnOne", "VbrOne")
if retval != 0:
print "VBR/VTN Delete Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller("VtnOne", "VbrOne", "ControllerFirst", presence="no")
if retval != 0:
print "After Delete VBR Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller("VtnOne", "ControllerFirst", presence="no")
if retval != 0:
print "VTN Validate Failed after VBR Deleted"
exit(1)
retval = vtn_vbr.delete_vtn("VtnOne")
if retval != 0:
print "VTN Delete Failed in coordinator"
exit(1)
print "DELETE CONTROLLER"
retval = controller.delete_controller_ex("ControllerFirst")
if retval != 0:
print "CONTROLLER delete failed"
exit(1)
print "VTN->VBR->VLANMAP with no_vlan_id and logicalport_id TEST SUCCESS"
开发者ID:Ei5enheim,项目名称:vtn,代码行数:89,代码来源:vtn_vbr_vlanmap.py
示例3: test_vtn_vbr_vlanmap_no_vlanid
def test_vtn_vbr_vlanmap_no_vlanid():
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "TEST 6 :Controller Create Failed"
exit(1)
print "TEST 6 : VTenant with one VBridge one VLANMAP with vlan_id and logicalport_id"
print "then update vlan_id to no_vlan_id"
# Delay for AUDIT
time.sleep(15)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Create Failed"
exit(1)
retval=create_vlanmap('VtnOne','VbrOne','VlanmapOne',no_vlan=1)
if retval != 0:
print "VLANMAP Create Failed"
exit(1)
retval=validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapOne','ControllerFirst',no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP Validate Failed"
exit(1)
retval=update_vlanmap('VtnOne','VbrOne','VlanmapOne',update_id=2)
if retval != 0:
print "VLANMAP upadte Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = delete_vlanmap('VtnOne','VbrOne','VlanmapOne',no_vlan=1)
if retval != 0:
print "VLANMAP Delete Failed"
exit(1)
retval=validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapOne','ControllerFirst',presence="no",position=0,no_vlan_id=1)
if retval != 0:
print "After Delete VLANMAP Validate Failed"
exit(1)
retval = vtn_vbr.delete_vbr('VtnOne','VbrOne')
if retval != 0:
print "VBR/VTN Delete Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst',presence="no")
if retval != 0:
print "After Delete VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst',presence="no")
if retval != 0:
print "VTN Validate Failed after VBR Deleted"
exit(1)
retval = vtn_vbr.delete_vtn('VtnOne')
if retval != 0:
print "VTN Delete Failed in coordinator"
exit(1)
print "DELETE CONTROLLER"
retval=controller.delete_controller_ex('ControllerFirst')
if retval != 0:
print "CONTROLLER delete failed"
exit(1)
print "VTN->VBR->VLANMAP with vlan_id->no_vlan_id TEST SUCCESS"
开发者ID:opendaylight,项目名称:vtn,代码行数:83,代码来源:vtn_vbr_vlanmap.py
示例4: test_vbr_flowfilter_audit_1
def test_vbr_flowfilter_audit_1():
print "****CREATE Controller with valid IP****"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
print """TEST 1 : create VTN and VBR FLOWFILTER when controller is down
change the controller status to up trigger Audit and validate"""
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
print "****Create VTN****"
retval = vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
print "****Create VBR****"
retval = vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrOne','VbrIfOne')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrTwo','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrTwo','VbrIfTwo')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrOne','VbrIfOne','ControllerFirst')
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrTwo','ControllerFirst', presence = 'yes', position = 1)
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrTwo','VbrIfTwo','ControllerFirst', presence = 'yes', position = 0)
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=flowlistentry.create_flowlist('FlowlistOne')
if retval != 0:
print "FlowList Create Failed"
exit(1)
retval=flowlistentry.create_flowlistentry('FlowlistOne', 'FlowlistentryOne','ControllerFirst')
if retval != 0:
print "FlowlistEntry Create Failed"
exit(1)
print "****UPDATE Controller IP to invalid****"
test_invalid_ipaddr= vtn_testconfig.ReadValues(CONTROLLERDATA,'ControllerFirst')['invalid_ipaddr']
retval = controller.update_controller_ex('ControllerFirst',ipaddr=test_invalid_ipaddr)
if retval != 0:
print "controller invalid_ip update failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"down")
if retval != 0:
print "controller state change failed"
exit(1)
retval=flowfilter.create_flowfilter('VtnOne|VbrOne', 'FlowfilterOne')
if retval != 0:
print "VBRFlowFilter Create Failed"
exit(1)
retval=flowfilter.create_flowfilter_entry('VtnOne|VbrOne', 'FlowfilterOne')
if retval != 0:
print "VBRFlowFilterEntry Create Failed"
exit(1)
print "****UPDATE Controller IP to Valid****"
#.........这里部分代码省略.........
开发者ID:SeungWookJang,项目名称:vtn-coordinator,代码行数:101,代码来源:vbr_flowfilter_audit.py
示例5: test_vtn_flowfilter
def test_vtn_flowfilter():
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
print "TEST 1 : VTN->FLOWFILTER TEST"
# Delay for AUDIT
retval=controller.wait_until_state('ControllerFirst', "up")
if retval != 0:
print "Controller state check Failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=flowlistentry.create_flowlist('FlowlistOne')
if retval != 0:
print "FlowList Create Failed"
exit(1)
retval=flowlistentry.create_flowlistentry('FlowlistOne', 'FlowlistentryOne','ControllerFirst')
if retval != 0:
print "FlowlistEntry Create Failed"
exit(1)
retval=flowfilter.create_flowfilter('VtnOne', 'VTNFlowfilterOne')
if retval != 0:
print "VTNFlowFilter Create Failed"
exit(1)
retval=flowfilter.create_flowfilter_entry('VtnOne', 'VTNFlowfilterOne')
if retval != 0:
print "VTNFlowFilterEntry Create Failed"
exit(1)
retval=flowfilter.validate_flowfilter_entry('VtnOne', 'VTNFlowfilterOne', presence='yes', position=0)
if retval != 0:
print "VTNFlowFilterEntry Validate Failed at Co-ordinator"
exit(1)
retval=flowfilter.validate_flowfilter_at_controller('VtnOne', 'ControllerFirst', 'VTNFlowfilterOne', presence='yes', position=0)
if retval != 0:
print "FlowFilter validation Failed"
exit(1)
retval=flowfilter.delete_flowfilter_entry('VtnOne', 'VTNFlowfilterOne')
if retval != 0:
print "VTNFlowFilterEntry deletete Failed"
exit(1)
retval=flowfilter.delete_flowfilter('VtnOne', 'VTNFlowfilterOne')
if retval != 0:
print "VTNFlowFilter deletete Failed"
exit(1)
retval=flowlistentry.delete_flowlistentry('FlowlistOne', 'FlowlistentryOne')
if retval != 0:
print "FlowilistEntry deletete Failed"
exit(1)
retval=flowlistentry.delete_flowlist('FlowlistOne')
if retval != 0:
print "Flowilist deletete Failed"
exit(1)
retval=flowfilter.validate_flowfilter_at_controller('VtnOne', 'ControllerFirst', 'VTNFlowfilterOne', presence='no', position=0)
if retval != 0:
print "FlowFilter validation Failed after deleting"
exit(1)
retval=vtn_vbr.delete_vtn('VtnOne')
if retval != 0:
print "DELETE VTN Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst', presence='no')
if retval != 0:
print "VTN Validate Failed"
exit(1)
print "DELETE CONTROLLER"
#.........这里部分代码省略.........
开发者ID:SeungWookJang,项目名称:vtn-coordinator,代码行数:101,代码来源:vtn_flowfilter.py
示例6: test_multi_ctr_mininet_ping
def test_multi_ctr_mininet_ping():
child = create_multicontroller_mininet_topology('MININETONE')
if child.isalive() == True :
print "Topology creation Success!!!"
else:
print "Topology creation Failed"
mininet_test.mininet_test.close_topology(child)
exit(1)
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "TEST 3 :Controller Create Failed"
mininet_test.close_topology(child)
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
retval = controller.add_controller_ex('ControllerSecond')
if retval != 0:
print "TEST 3 :Controller Create Failed"
mininet_test.close_topology(child)
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerSecond',"up")
if retval != 0:
print "controller state change failed"
exit(1)
retval = create_boundary('BOUNDARY', 'ControllerFirst', 'ControllerSecond')
if retval != 0:
print "Boundary Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = validate_boundary('BOUNDARY', presence="yes", position=0)
if retval != 0:
print "Boundary Validate Failed after create"
mininet_test.close_topology(child)
exit(1)
retval = vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vtn_vbr.create_vbr('VtnOne', 'VbrOne', 'ControllerFirst')
if retval != 0:
print "VBR Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vtn_vbr.create_vbr('VtnOne', 'VbrTwo', 'ControllerSecond')
if retval != 0:
print "VBRTWO Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.create_vbrif('VtnOne', 'VbrOne', 'MultiCtrVbrIfOne')
if retval != 0:
print "VBRIFONE Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.validate_vbrif_at_controller('VtnOne', 'VbrOne', 'MultiCtrVbrIfOne', 'ControllerFirst', position=0)
if retval != 0:
print "VBRIFONE Validate Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.create_vbrif('VtnOne', 'VbrOne', 'VbrIfTwo')
if retval != 0:
print "VBRIFONE Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.validate_vbrif_at_controller('VtnOne', 'VbrOne', 'VbrIfTwo', 'ControllerFirst', position=1)
if retval != 0:
print "VBRIFTWO Validate Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.create_portmap('VtnOne', 'VbrOne', 'MultiCtrVbrIfOne', vlan_tagged=0);
if retval != 0:
print "VBRIF1 Portmap Create Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.validate_vbrif_portmap_at_controller('VtnOne', 'VbrOne', 'MultiCtrVbrIfOne', 'ControllerFirst', presence="yes");
if retval != 0:
print "VBRIF1 Portmap Validate Failed"
mininet_test.close_topology(child)
exit(1)
retval = vbrif_portmap.create_vbrif('VtnOne', 'VbrTwo', 'MultiCtrVbrIfThree')
if retval != 0:
print "VBRIFTHREE Create Failed"
mininet_test.close_topology(child)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:multi_ctr_mininet.py
示例7: test_vtn_vbr_vlanmap_no_vlanid_multi_controller
def test_vtn_vbr_vlanmap_no_vlanid_multi_controller():
print "TEST 6 : VTenant with one VBridge one VLANMAP with vlan_id and logicalport_id"
print "then update vlan_id to no_vlan_id with multi-controller"
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "TEST 6 :Controller1 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval = controller.add_controller_ex('ControllerSecond')
if retval != 0:
print "TEST 6 :Controller2 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerSecond',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR1 Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrThree','ControllerSecond')
if retval != 0:
print "VBR3 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrOne','VlanmapOne',no_vlan=1)
if retval != 0:
print "VLANMAP1 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrThree','VlanmapTwo',no_vlan=1)
if retval != 0:
print "VLANMAP2 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapOne','ControllerFirst',no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP1 Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrThree','VlanmapTwo','ControllerSecond',no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP2 Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrOne','VlanmapOne',update_id=2)
if retval != 0:
print "VLANMAP1 upadte Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrThree','VlanmapTwo',update_id=2)
if retval != 0:
print "VLANMAP2 upadte Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrOne','VlanmapOne','ControllerFirst',no_vlan_id=1)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrThree','VlanmapTwo','ControllerSecond',no_vlan_id=1)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrThree','ControllerSecond')
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed at controller1"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerSecond')
if retval != 0:
print "VTN Validate Failed at controller2"
exit(1)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vtn_vbr_vlanmap_multi_controller.py
示例8: test_multi_vtn_with_vbr_multi_controller_audit_test
def test_multi_vtn_with_vbr_multi_controller_audit_test():
print "TEST 3 : 2 Tenants with one VBridge each in multi-controller and test AUDIT"
print "CONTROLLER1->VTNONE->VBRONE"
print "CONTROLLER1->VTNTWO->VBRONE"
print "CONTROLLER2->VTNTHREE->VBRONE"
print "CONTROLLER2->VTNFOUR->VBRONE"
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller1 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval = controller.add_controller_ex('ControllerSecond')
if retval != 0:
print "Controller2 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerSecond',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval = vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN1 Create Failed"
exit(1)
retval = vtn_vbr.create_vtn('VtnTwo')
if retval != 0:
print "VTN2 Create Failed"
exit(1)
retval = vtn_vbr.create_vtn('VtnThree')
if retval != 0:
print "VTN3 Create Failed"
exit(1)
retval = vtn_vbr.create_vtn('VtnFour')
if retval != 0:
print "VTN4 Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR1/VTN1 Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnTwo','VbrOne','ControllerFirst')
if retval != 0:
print "VBR1/VTN2 Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnThree','VbrThree','ControllerSecond')
if retval != 0:
print "VBR3/VTN3 Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnFour','VbrThree','ControllerSecond')
if retval != 0:
print "VBR3/VTN4 Create Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst',position=0)
if retval != 0:
print "VTN1 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnTwo','ControllerFirst',position=1)
if retval != 0:
print "VTN2 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnThree','ControllerSecond',position=1)
if retval != 0:
print "VTN3 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnFour','ControllerSecond',position=0)
if retval != 0:
print "VTN4 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR1/VTN1 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnTwo','VbrOne','ControllerFirst')
if retval != 0:
print "VBR1/VTN2 Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnThree','VbrThree','ControllerSecond')
if retval != 0:
print "VBR3/VTN3 Validate Failed"
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vtn_vbr_audit_multi_controller.py
示例9: test_vtn_vbr_vlanmap_multi_controller
def test_vtn_vbr_vlanmap_multi_controller():
print "TEST 1 : VTenant with one VBridge one VLANMAP without vlan_id and logicalport_id with multi-controller"
print "CREATE Controller1"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "TEST 1 :Controller Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
print "CREATE Controller2"
retval = controller.add_controller_ex('ControllerSecond')
if retval != 0:
print "TEST 1 :Controller Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerSecond',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrThree','ControllerSecond')
if retval != 0:
print "VBR Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrOne','VlanmapOne',no_vlan=0)
if retval != 0:
print "VLANMAP Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrThree','VlanmapTwo',no_vlan=0)
if retval != 0:
print "VLANMAP Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapOne','ControllerFirst',no_vlan_id=0)
if retval != 0:
print "After Create VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrThree','VlanmapTwo','ControllerSecond',no_vlan_id=0)
if retval != 0:
print "After Create VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrOne','VlanmapOne',update_id=0)
if retval != 0:
print "VLANMAP update Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrThree','VlanmapTwo',update_id=0)
if retval != 0:
print "VLANMAP update Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrOne','VlanmapOne','ControllerFirst',no_vlan_id=0)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrThree','VlanmapTwo','ControllerSecond',no_vlan_id=0)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrThree','ControllerSecond')
if retval != 0:
print "After Create VBR Validate Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerSecond')
if retval != 0:
print "VTN Validate Failed"
exit(1)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vtn_vbr_vlanmap_multi_controller.py
示例10: test_vtn_vbr_multi_vlanmap_multi_controller
def test_vtn_vbr_multi_vlanmap_multi_controller():
print "TEST 3 : VTenant with one VBridge two VLANMAP with multi-controller"
print "CREATE Controller1"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "TEST 3 :Controller1 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
print "CREATE Controller2"
retval = controller.add_controller_ex('ControllerSecond')
if retval != 0:
print "TEST 3 :Controller2 Create Failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerSecond',"up")
if retval != 0:
print "Controller state check failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBROne Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrThree','ControllerSecond')
if retval != 0:
print "VBRTwo Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrOne','VlanmapOne',no_vlan=0)
if retval != 0:
print "VLANMAP1 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrThree','VlanmapThree',no_vlan=0)
if retval != 0:
print "VLANMAP3 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapOne','ControllerFirst',position=0,no_vlan_id=0)
if retval != 0:
print "After Create VLANMAP1 Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrThree','VlanmapThree','ControllerSecond',position=0,no_vlan_id=0)
if retval != 0:
print "After Create VLANMAP3 Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrOne','VlanmapOne',update_id=0)
if retval != 0:
print "VLANMAP1 update Failed"
exit(1)
retval=vtn_vbr_vlanmap.update_vlanmap('VtnOne','VbrThree','VlanmapThree',update_id=0)
if retval != 0:
print "VLANMAP3 update Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrOne','VlanmapOne','ControllerFirst',position=0,no_vlan_id=0)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_update('VtnOne','VbrThree','VlanmapThree','ControllerSecond',position=0,no_vlan_id=0)
if retval != 0:
print "After update VLANMAP Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrOne','VlanmapTwo',no_vlan=1)
if retval != 0:
print "VLANMAP2 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.create_vlanmap('VtnOne','VbrThree','VlanmapFour',no_vlan=1)
if retval != 0:
print "VLANMAP2 Create Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrOne','VlanmapTwo','ControllerFirst',position=1,no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP2 Validate Failed"
exit(1)
retval=vtn_vbr_vlanmap.validate_vlanmap_at_controller('VtnOne','VbrThree','VlanmapFour','ControllerSecond',position=1,no_vlan_id=1)
if retval != 0:
print "After Create VLANMAP2 Validate Failed"
exit(1)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vtn_vbr_vlanmap_multi_controller.py
示例11: test_multi_vtn_with_vbr_audit_test
def test_multi_vtn_with_vbr_audit_test():
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
print "TEST 6 : 2 Tenants with one VBridge each and test AUDIT"
print "VTNONE->VBRONE"
print "VTNTWO->VBRONE"
retval = vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.create_vtn('VtnTwo')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.create_vbr('VtnTwo','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst',position=0)
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnTwo','ControllerFirst',position=1)
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnTwo','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
print "****UPDATE Controller IP to invalid****"
test_invalid_ipaddr= vtn_testconfig.ReadValues(CONTROLLERDATA,'ControllerFirst')['invalid_ipaddr']
retval = controller.update_controller_ex('ControllerFirst',ipaddr=test_invalid_ipaddr)
if retval != 0:
print "controller invalid_ip update failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"down")
if retval != 0:
print "controller state change failed"
exit(1)
retval = vtn_vbr.delete_vbr('VtnOne','VbrOne')
if retval != 0:
print "VBR/VTN Delete Failed"
exit(1)
retval = vtn_vbr.delete_vbr('VtnTwo','VbrOne')
if retval != 0:
print "VBR/VTN Delete Failed"
exit(1)
print "****UPDATE Controller IP to Valid****"
test_controller_ipaddr= vtn_testconfig.ReadValues(CONTROLLERDATA,'ControllerFirst')['ipaddr']
retval = controller.update_controller_ex('ControllerFirst',ipaddr=test_controller_ipaddr)
if retval != 0:
print "controller valid_ip update failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst',presence="no")
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst',presence="no")
if retval != 0:
print "VTN Validate Failed"
exit(1)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vtn_vbr_audit.py
示例12: test_vtn_vbr_audit_1
def test_vtn_vbr_audit_1():
print "****CREATE Controller with valid IP****"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
print """TEST 1 : create VTN and VBR when controller is up
change the controller status to down delete VTN and VBR
trigger Audit"""
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
print "****Create VTN****"
retval = vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
print "****Create VBR****"
retval = vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
print "****UPDATE Controller IP to invalid****"
test_invalid_ipaddr= vtn_testconfig.ReadValues(CONTROLLERDATA,'ControllerFirst')['invalid_ipaddr']
retval = controller.update_controller_ex('ControllerFirst',ipaddr=test_invalid_ipaddr)
if retval != 0:
print "controller invalid_ip update failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"down")
if retval != 0:
print "controller state change failed"
exit(1)
print "****Delete VBR****"
retval = vtn_vbr.delete_vbr('VtnOne','VbrOne')
if retval != 0:
print "VBR/VTN Delete Failed"
exit(1)
print "****Delete VTN****"
retval = vtn_vbr.delete_vtn('VtnOne')
if retval != 0:
print "VTN Delete Failed in coordinator"
exit(1)
print "****UPDATE Controller IP to Valid****"
test_controller_ipaddr= vtn_testconfig.ReadValues(CONTROLLERDATA,'ControllerFirst')['ipaddr']
retval = controller.update_controller_ex('ControllerFirst',ipaddr=test_controller_ipaddr)
if retval != 0:
print "controller valid_ip update failed"
exit(1)
# Delay for AUDIT
retval = controller.wait_until_state('ControllerFirst',"up")
if retval != 0:
print "controller state change failed"
exit(1)
retval = vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst',presence="no")
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval = vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst',presence="no")
if retval != 0:
print "VTN Validate Failed"
exit(1)
print "DELETE CONTROLLER"
retval = controller.delete_controller_ex('ControllerFirst')
if retval != 0:
print "CONTROLLER delete failed"
exit(1)
print "VTN->VBR AUDIT TEST SUCCESS"
开发者ID:OnStack,项目名称:cloudexchange,代码行数:93,代码来源:vtn_vbr_audit.py
示例13: negative_vbrif_flowfilter_out
def negative_vbrif_flowfilter_out():
print "CREATE Controller"
retval = controller.add_controller_ex('ControllerFirst')
if retval != 0:
print "Controller Create Failed"
exit(1)
print "TEST 1 : VBRIF->Negative test scenario FLOWFILTER TEST"
# Delay for AUDIT
retval=controller.wait_until_state('ControllerFirst', "up")
if retval != 0:
print "Controller state check Failed"
exit(1)
retval=vtn_vbr.create_vtn('VtnOne')
if retval != 0:
print "VTN Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrOne','VbrIfOne')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval=vtn_vbr.create_vbr('VtnOne','VbrTwo','ControllerFirst')
if retval != 0:
print "VBR Create Failed"
exit(1)
retval=vbrif_portmap.create_vbrif('VtnOne','VbrTwo','VbrIfTwo')
if retval != 0:
print "VBRIF Create Failed"
exit(1)
retval=vtn_vbr.validate_vtn_at_controller('VtnOne','ControllerFirst')
if retval != 0:
print "VTN Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrOne','ControllerFirst')
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrOne','VbrIfOne','ControllerFirst')
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=vtn_vbr.validate_vbr_at_controller('VtnOne','VbrTwo','ControllerFirst', presence = 'yes', position = 1)
if retval != 0:
print "VBR Validate Failed"
exit(1)
retval=vbrif_portmap.validate_vbrif_at_controller('VtnOne','VbrTwo','VbrIfTwo','ControllerFirst', presence = 'yes', position = 0)
if retval != 0:
print "After Create VBRIF Validate Failed"
exit(1)
retval=vbrif_portmap.create_portmap('VtnOne','VbrOne','VbrIfOne');
if retval != 0:
print "Portmap Create Failed"
exit(1)
retval=vbrif_portmap.create_portmap('VtnOne','VbrTwo','VbrIfTwo');
if retval != 0:
print "Portmap Create Failed"
exit(1)
retval=flowlistentry.create_flowlist('FlowlistOne')
if retval != 0:
print "FlowList Create Failed"
exit(1)
retval=flowlistentry.create_flowlistentry('FlowlistOne', 'FlowlistentryOne','ControllerFirst')
if retval != 0:
print "FlowlistEntry Create Failed"
exit(1)
retval=flowfilter.create_flowfilter('VtnOne|VbrOne|VbrIfOne', 'FlowfilterOneOut')
if retval != 0:
print "VBRFlowFilter Create Failed"
exit(1)
retval=flowfilter.create_flowfilter_entry('VtnOne|VbrOne|VbrIfOne', 'FlowfilterOneOut')
if retval != 0:
print "VBRFlowFilterEntry Create Failed"
exit(1)
retval=flowfilter.validate_flowfilter_entry('VtnOne|VbrOne|VbrIfOne', 'FlowfilterOneOut', presence='yes', position=0)
if retval != 0:
print "VBRFlowFilterEntry Validation at Co-ordinator Failed "
exit(1)
retval=flowfilter.validate_flowfilter_at_controller('VtnOne|VbrOne|VbrIfOne', 'ControllerFirst', 'FlowfilterOneOut', presence='yes', position=0)
#.........这里部分代码省略.........
开发者ID:OnStack,项目名称:cloudexchange,代码行数:101,代码来源:vbrif_flowfilter.py
示例14: test_multi_vtn_with_vbr_multi_controller
-
Python入门教程 Python 是一种解释型、面向对象、动态数据类型的高级程序设计语言。 P
阅读:13952|2022-01-22
-
Python wikiutil.getFrontPage函数代码示例
阅读:10293|2022-05-24
-
Python 简介 Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本
阅读:4185|2022-01-22
-
Python tests.group函数代码示例
阅读:4067|2022-05-27
-
Python util.check_if_user_has_permission函数代码示例
阅读:3892|2022-05-27
-
Python 练习实例98 Python 100例题目:从键盘输入一个字符串,将小写字母全部转换成大
阅读:3541|2022-01-22
-
Python 环境搭建 本章节我们将向大家介绍如何在本地搭建 Python 开发环境。 Py
阅读:3072|2022-01-22
-
Python 基础语法 Python 语言与 Perl,C 和 Java 等语言有许多相似之处。但是,也
阅读:2737|2022-01-22
-
Python output.darkgreen函数代码示例
阅读:2683|2022-05-25
-
Python 中文编码前面章节中我们已经学会了如何用 Python 输出 Hello, World!,英文没
阅读:2352|2022-01-22
|
请发表评论