test_Integral.py 2.08 KB
#!/usr/bin/python
# coding=utf-8

'''
Author: jipeigong 2017年7月19日17:53:38
'''

from atdd.PcApiTest import PcApiTest
import os


class Integral(PcApiTest):

    #登录
    def setUp(self):
        self.do_login(self.host, self.mobile, self.psw, self.domain)


    # 上传等级icon接口
    def test_UploadAtta(self):
        interfaceUrl = "/Public/Apicp/Attachment/UploadAtta"
        data = {
            "atMediatype": 1,
            "_identifier": "dengta"
        }
        file_path =  os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) + '/Integral/data/image/icon.jpg'

        files = {'file': ('icon.jpg', open(file_path, 'rb'), 'image/jpg')}

        result = self.PcApiTest(interfaceUrl, data,files=files)
        print(result)
        return result


    #积分查询>积分详情>基本信息接口
    def test_searchIntegralDetail(self):
        interfaceUrl = "/Integral/Apicp/Integral/Detail"
        data = {
            'memUid': 'C9E10E4A7F0000017B20C6105BF54EB5',
            'miType': 'mi_type1'
        }
        print(type(data))
        result = self.PcApiTest(interfaceUrl, data)
        print(result)
        return result


    #用户积分列表接口
    def test_IntegralMemberList(self):
        interfaceUrl = "/Integral/Apicp/Integral/MemberList"
        data = {
            'memUsername': '小红红',
            'dpId': 'BA1C76447F0000012B9DFD35B75ED2F7',
            'miType':'mi_type0',
            'page': None,
            'limit': None
        }
        result = self.PcApiTest(interfaceUrl, data)
        print(result)
        return result


    # 修改企业积分等级升级类型接口
    def test_Modify_allpeoplecurrent(self):
        interfaceUrl = "/Integral/Apicp/Level/UpdateUpgradeType"
        data = {
            'eilId': '318E60357F000001778E92F3BFD993C7',
            'upgradeType': '2'
        }
        result = self.PcApiTest(interfaceUrl, data)
        print(result)
        print(self.host + "/" + self.domain + interfaceUrl)
        # self.assertEqual("ok", result["errmsg"], msg=result["errmsg"])
        return result