本文整理汇总了Python中SettingsLibrary.getAddCarUrl方法的典型用法代码示例。如果您正苦于以下问题:Python SettingsLibrary.getAddCarUrl方法的具体用法?Python SettingsLibrary.getAddCarUrl怎么用?Python SettingsLibrary.getAddCarUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SettingsLibrary
的用法示例。
在下文中一共展示了SettingsLibrary.getAddCarUrl方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: addCar
# 需要导入模块: import SettingsLibrary [as 别名]
# 或者: from SettingsLibrary import getAddCarUrl [as 别名]
def addCar(hostname,port,numberOfCars):
for x in range(1, numberOfCars+1):
strId = str(x)
payload = SettingsLibrary.add_car_payload_template.substitute(id=strId,category="category"+strId,model="model"+strId,
manufacturer="manufacturer"+strId,
year=(2000+x%100))
print("payload formed after template substitution=")
print(payload)
# Send the POST request
resp = UtilLibrary.post(SettingsLibrary.getAddCarUrl(hostname,port),"admin", "admin",payload)
print("the response of the POST to add car=")
print(resp)
return resp
示例2: addCar
# 需要导入模块: import SettingsLibrary [as 别名]
# 或者: from SettingsLibrary import getAddCarUrl [as 别名]
def addCar(hostname, port, numberOfCars):
"""Creates the specified number of cars based on Cars yang model using RESTCONF"""
for x in range(1, numberOfCars+1):
strId = str(x)
payload = SettingsLibrary.add_car_payload_template.substitute(
id=strId, category="category" + strId, model="model" + strId,
manufacturer="manufacturer" + strId,
year=(2000 + x % 100))
print("payload formed after template substitution=")
print(payload)
# Send the POST request
resp = UtilLibrary.post(SettingsLibrary.getAddCarUrl(hostname, port), "admin", "admin", payload)
print("the response of the POST to add car=")
print(resp)
time.sleep(5) # Let the add finish
return resp
示例3: addCar
# 需要导入模块: import SettingsLibrary [as 别名]
# 或者: from SettingsLibrary import getAddCarUrl [as 别名]
def addCar(hostname, port, numberOfCars, *expected):
"""Creates the specified number of cars based on Cars yang model using RESTCONF"""
for x in range(1, numberOfCars + 1):
strId = str(x)
payload = SettingsLibrary.add_car_payload_template.substitute(
id=strId, category="category" + strId, model="model" + strId,
manufacturer="manufacturer" + strId,
year=(2000 + x % 100))
print("payload formed after template substitution=")
print(payload)
# Send the POST request
resp = UtilLibrary.post(SettingsLibrary.getAddCarUrl(hostname, port), "admin", "admin", payload)
print("the response of the POST to add car=")
print(resp)
if expected and str(resp.status_code) not in expected:
raise RuntimeError('Add car failed for {}:{} with status {}'.
format(hostname, port, resp.status_code))
return resp