Commit 4e6b9388 authored by 冯艮霞's avatar 冯艮霞

品类聚合页面商品列表

parent 9c72d5d4
......@@ -52,7 +52,7 @@ class janus_request(BaseRequest):
return self.api_send(self.data["mine_guess_you_like"])
# 品类聚合页面商品列表
def tag_service(self,size,tag_ids,offset,tag_id,version,device_id):
def tag_service(self, size, tag_ids, offset, tag_id, version, device_id):
print("fgx")
self.params['size'] = size
self.params['tag_ids'] = tag_ids
......
......@@ -37,18 +37,18 @@ mine_guess_you_like:
isLogin: 1
#品类聚合页面商品列表的
tag_service:
method: GET
url: /api/janus/product/tag_service
params:
size: 10
tag_ids: []
offset: 0
tag_id:
version: 7.43.0
device_id: 869378034450718
data: { }
json: { }
tag_service:
method: GET
url: /api/janus/product/tag_service
params:
size: ${size}
tag_ids: ${tag_ids}
offset: ${offset}
tag_id: ${tag_id}
version: ${version}
device_id: ${device_id}
data: { }
json: { }
......
......@@ -129,7 +129,7 @@ UNREAD = os.path.join(BASE_DIR, "backend_auto/test_backend_data/notification_dat
#品类聚合页面商品列表
TAG_SERVICE_CONFIG = os.path.join(BASE_DIR, "backend_auto/all_backend_api", "janus_request.yaml")
TAG_SERVICE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_data", "tag_service.yaml")
TAG_SERVICE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/janus_data", "tag_service.yaml")
if __name__ == '__main__':
print("==========",LIVEYAML_CONFIG)
......@@ -13,7 +13,7 @@ class TestTagService:
@pytest.mark.parametrize("param", tagservice_data, ids=tagservice_case)
def test_tag_service(self, param):
r = janus_request().tag_service(param["size"], param["tag_ids"], param["offset"], param["tag_id"], param["version"], param["device_id"])
print('feng=', r)
#print('feng=', r)
if r["error"] == 0:
assert r["error"] == param["assert"]
......
......@@ -3,7 +3,12 @@ tag_service:
-
case: "品类聚合页面商品列表"
assert: 0
offset: 10
size: 10
tag_ids: []
offset: 0
tag_id:
version: 7.43.0
device_id: 869378034450718
......
Markdown is supported
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