auto_test_dev/YiMao/data/WuShangSceneTestData.py

77 lines
2.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# !/usr/bin/python
# -*- coding: utf-8 -*-
# @Author:: Arthur Wu
# @Date:: 2024/11/15-14:46
# @Description::
''' 武商场景测试数据集
adsAreaId-1: 登录页广告
adsAreaId-2: 登录后弹窗广告
adsAreaId-3: 购物车主页广告
adsAreaId-4: 待机广告
adsAreaId-5: 扫码广告
adsAreaId-6: 支付后广告
adsAreaId-7: 小票广告
'''
'''1-武商会员账号'''
VIPPhoneNumber = "17786408673"
''' -商超、门店信息
梦时代storeId: 69, marketId: 50
百圣storeId: 29, marketId: 50
'''
MarketAndStoreDetails = {"putMarketId": 50, "putStoreId": ["69"]}
''' -购物袋 '''
GoodsBagInputcode_mid = '6971648922990'
GoodsBagInputcode_max = '6971648922983'
''' -普通商品-2件 '''
NormalGoodsInputcode01 = "6924743915848" # 乐事薯片
NormalGoodsInputcode02 = "6925303796426" # 统一番茄牛肉面
''' -会员商品 '''
VipGoodsInputcode = "6925303796426" # 统一番茄牛肉面
VipGoodsInputcode02 = "6924743915848" # 乐事薯片
''' -折扣商品 '''
SaleGoodsInputCode = "6924743915848" # 乐事薯片
''' -促销商品白名单 '''
PromotionalWhitelistGoods = {"GoodsInputcode": "6925303796426", "GoodsName": "统一茄皇蕃茄牛肉面"}
''' -重量放通白名单 '''
WeightToWhitelistGoods = {"GoodsInputcode": "6924743915848", "GoodsName": "乐事无限翡翠黄瓜味薯片"}
''' 0-广告数据 '''
WuShangADDetail = [
{
"adsAreaId": 1, "mediaType": 1,
"mediaUrl": "ads/content/534ae9d7-3f65-48da-bc2e-3d5e66fe56d8.jpg",
"showOrder": 1, "showTime": 5,
},
{
"adsAreaId": 2, "mediaType": 1,
"mediaUrl": "ads/content/93e34d0e-9f4c-499b-ad8b-5741e55528b5.jpg",
},
{
"adsAreaId": 3, "mediaType": 1,
"mediaUrl": "ads/content/581ec30a-4d90-43f3-b0e9-b5c8fe0006b4.jpg",
"showOrder": 1, "showTime": 5,
},
{
"adsAreaId": 4, "mediaType": 1,
"mediaUrl": "ads/content/8c8f6de0-6eb7-4b66-98cd-2c85eb057ed5.png",
"showOrder": 1, "showTime": 5,
},
{
"adsAreaId": 5, "mediaType": 1,
"mediaUrl": "ads/content/9d5555e3-fec1-4e1a-94e7-b517f4e88aba.jpg",
},
{
"adsAreaId": 6, "mediaType": 1,
"mediaUrl": "ads/content/e2e2e892-1a81-4b0f-9af2-cb46f04a5dc4.jpg",
},
{
"adsAreaId": 7, "mediaType": 1,
"mediaUrl": "ads/content/6d9c14ca-3fd1-4fe7-b04a-84cf18937e60.jpg",
}
]