Commit a1eebed4 authored by liguangyu06's avatar liguangyu06
Browse files

新增套包相关接口用例

parent 5960fef2
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc套包商品列表查询条件验证,2264,2264-1,sit,bs
主数据平台:运营后台管理系统套包商品列表查询接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_fresenius_group"
# 第一步登录后台运营平台获取cmdc_access_token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username1")
password = commonFuc().get_business_data(module, "password1")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步进行套包商品列表获取
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
request_body = commonFuc().get_business_data(module, "payload2")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 获取商品信息productCode、productName、materialCode、specifications、productLineName
product_code = result["data"]["list"][0]["productCode"]
product_name = result["data"]["list"][0]["productName"]
material_code = result["data"]["list"][0]["materialCode"]
specifications = result["data"]["list"][0]["optionStr"]
product_line_name = result["data"]["list"][0]["productLineName"]
# 第三步进行套包商品列表查询条件验证
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url6")
request_body = commonFuc().get_business_data(module, "payload6", product_code, product_name, material_code,
specifications, product_line_name)
"""
场景:套包商品列表获取
用例名称:获取套包商品列表
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
result = {"productCode": result["data"]["list"][0]["productCode"]}
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict6", product_code)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -21,7 +21,7 @@ password = commonFuc().get_business_data(module, "password1")
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步进行套包列表获取
# 第二步进行套包商品列表获取
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
request_body = commonFuc().get_business_data(module, "payload2")
"""
......
......@@ -51,7 +51,11 @@ checkDict4: {"optionStr":"%s"}
checkDict5: {"success":true,"code":"200","message":"OK"}
#测试场景六:套包商品列表查询条件验证
"url6": "/product/public/productGroupList"
"payload6": {"productCode":"%s","productName":"%s","materialCode":"%s","specifications":"%s","productLineName":"%s","userNo":"","companyCode":"00111","pageSize":10,"pageNum":1}
#预期结果
checkDict6: {"productCode":"%s"}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment