Commit ca01bf0d authored by johnny.zhu's avatar johnny.zhu

20190829

parent adc47149
...@@ -25,7 +25,7 @@ class TestmanagerRegister(unittest.TestCase): ...@@ -25,7 +25,7 @@ class TestmanagerRegister(unittest.TestCase):
self.caseid = '%s-3' % (self.lab) self.caseid = '%s-3' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
(self.smstoken,self.token) = csendvc.sendVerificationCode("13501976019","REGISTER") (self.smstoken) = csendvc.sendVerificationCode("18021047680","REGISTER")
# 测试API地址 # 测试API地址
self.url = '%s/api/v1/manager/managerRegister' % (self.ip) self.url = '%s/api/v1/manager/managerRegister' % (self.ip)
...@@ -39,8 +39,8 @@ class TestmanagerRegister(unittest.TestCase): ...@@ -39,8 +39,8 @@ class TestmanagerRegister(unittest.TestCase):
# 测试API请求头设置 # 测试API请求头设置
self.payloadHeader = { self.payloadHeader = {
'Content-Type': "application/json", 'Content-Type': "application/json"
'Authorization': self.token # 'Authorization': self.token
} }
# 打印requests # 打印requests
self.data = json.dumps(self.payloadData) self.data = json.dumps(self.payloadData)
......
...@@ -12,14 +12,14 @@ ...@@ -12,14 +12,14 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
import case.login as clogin # import case.login as clogin
import config.config import config.config
def sendVerificationCode(phone,templateType): def sendVerificationCode(phone,templateType):
ip = gl.get_value('apiip') ip = gl.get_value('apiip')
token = clogin.testuserlogin() # token = clogin.testuserlogin()
#测试API地址 #测试API地址
...@@ -32,7 +32,7 @@ def sendVerificationCode(phone,templateType): ...@@ -32,7 +32,7 @@ def sendVerificationCode(phone,templateType):
#测试API请求头设置 #测试API请求头设置
payloadHeader = { payloadHeader = {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
'Authorization': token # 'Authorization': token
} }
# print(payloadHeader) # print(payloadHeader)
...@@ -44,14 +44,15 @@ def sendVerificationCode(phone,templateType): ...@@ -44,14 +44,15 @@ def sendVerificationCode(phone,templateType):
rd = r['data'] rd = r['data']
smsToken = rd['smsToken'] smsToken = rd['smsToken']
# print(smsToken) # print(smsToken)
return smsToken,token return smsToken
# (smstoken,token) = sendVerificationCode("FORGET_PASSWORD") # (smstoken) = sendVerificationCode("18021047680","REGISTER")
# print(smstoken) # print(smstoken)
# print(token) # print(token)
def checkVerificationCode(phone,templateType): def checkVerificationCode(phone,templateType):
ip = gl.get_value('apiip') ip = gl.get_value('apiip')
# token = clogin.testuserlogin() # token = clogin.testuserlogin()
(smsToken,token) = sendVerificationCode(phone, templateType) (smsToken) = sendVerificationCode(phone, templateType)
#测试API地址 #测试API地址
url = '%s/api/v1/manager/checkVerificationCode' % (ip) url = '%s/api/v1/manager/checkVerificationCode' % (ip)
...@@ -60,12 +61,9 @@ def checkVerificationCode(phone,templateType): ...@@ -60,12 +61,9 @@ def checkVerificationCode(phone,templateType):
payloadData = { "templateType": templateType,"smsToken":smsToken,"verifyCode":"888888"} payloadData = { "templateType": templateType,"smsToken":smsToken,"verifyCode":"888888"}
# print(payloadData) # print(payloadData)
# print(payloadData)
#测试API请求头设置 #测试API请求头设置
payloadHeader = { payloadHeader = {
'Content-Type': 'application/json', 'Content-Type': 'application/json'
'Authorization': token
} }
# print(payloadHeader) # print(payloadHeader)
...@@ -74,8 +72,8 @@ def checkVerificationCode(phone,templateType): ...@@ -74,8 +72,8 @@ def checkVerificationCode(phone,templateType):
headers = payloadHeader headers = payloadHeader
r = gp.Runmain().send_post(url=url,data=data,headers=headers,verify=False) r = gp.Runmain().send_post(url=url,data=data,headers=headers,verify=False)
# print(r) # print(r)
return smsToken,token return smsToken
# (smsToken,token) = checkVerificationCode("18021047680","FORGET_PASSWORD") # (smsToken) = checkVerificationCode("18021047680","FORGET_PASSWORD")
# print(smsToken) # print(smsToken)
# print(token)
...@@ -24,7 +24,7 @@ class TestcheckVerificationCode(unittest.TestCase): ...@@ -24,7 +24,7 @@ class TestcheckVerificationCode(unittest.TestCase):
self.lab = gl.get_value('lab') self.lab = gl.get_value('lab')
self.caseid = '%s-2' % (self.lab) self.caseid = '%s-2' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","FORGET_PASSWORD") (self.smstoken) = csendvc.sendVerificationCode("18021047680","FORGET_PASSWORD")
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
self.url = '%s/api/v1/manager/checkVerificationCode' % (self.ip) self.url = '%s/api/v1/manager/checkVerificationCode' % (self.ip)
......
...@@ -25,7 +25,7 @@ class TestresetPassword(unittest.TestCase): ...@@ -25,7 +25,7 @@ class TestresetPassword(unittest.TestCase):
self.caseid = '%s-9' % (self.lab) self.caseid = '%s-9' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.checkVerificationCode("18021047680","FORGET_PASSWORD") (self.smstoken) = csendvc.checkVerificationCode("18021047680","FORGET_PASSWORD")
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
...@@ -43,8 +43,7 @@ class TestresetPassword(unittest.TestCase): ...@@ -43,8 +43,7 @@ class TestresetPassword(unittest.TestCase):
# 测试API请求头设置 # 测试API请求头设置
self.payloadHeader = { self.payloadHeader = {
'Content-Type': "application/json", 'Content-Type': "application/json"
'Authorization': self.token
} }
......
...@@ -11,6 +11,7 @@ import util.test_get_post as gp ...@@ -11,6 +11,7 @@ import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import case.login as clogin
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
import config.config import config.config
...@@ -25,7 +26,8 @@ class TestresetPassword(unittest.TestCase): ...@@ -25,7 +26,8 @@ class TestresetPassword(unittest.TestCase):
self.caseid = '%s-15' % (self.lab) self.caseid = '%s-15' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.checkVerificationCode("18021047680","CHANGE_PASSWORD") self.token = clogin.testuserlogin()
(self.smstoken) = csendvc.checkVerificationCode("18021047680","CHANGE_PASSWORD")
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestsmsCodeLogin(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestsmsCodeLogin(unittest.TestCase):
self.caseid = '%s-17' % (self.lab) self.caseid = '%s-17' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestupdateNickName(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestupdateNickName(unittest.TestCase):
self.caseid = '%s-18' % (self.lab) self.caseid = '%s-18' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetProductList(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetProductList(unittest.TestCase):
self.caseid = '%s-22' % (self.lab) self.caseid = '%s-22' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetCustomerInfo(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetCustomerInfo(unittest.TestCase):
self.caseid = '%s-23' % (self.lab) self.caseid = '%s-23' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TesteditCustomerRemark(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TesteditCustomerRemark(unittest.TestCase):
self.caseid = '%s-24' % (self.lab) self.caseid = '%s-24' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetCustomerOrders(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetCustomerOrders(unittest.TestCase):
self.caseid = '%s-26' % (self.lab) self.caseid = '%s-26' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetCustomers(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetCustomers(unittest.TestCase):
self.caseid = '%s-27' % (self.lab) self.caseid = '%s-27' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetAssets(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetAssets(unittest.TestCase):
self.caseid = '%s-28' % (self.lab) self.caseid = '%s-28' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
import util.test_get_post as gp import util.test_get_post as gp
import json import json
import util.globalv as gl import util.globalv as gl
# import case.login as clogin import case.login as clogin
import case.sendVerificationCode as csendvc import case.sendVerificationCode as csendvc
import unittest import unittest
import util.reporyresult as cr import util.reporyresult as cr
...@@ -26,8 +26,8 @@ class TestgetCashFlows(unittest.TestCase): ...@@ -26,8 +26,8 @@ class TestgetCashFlows(unittest.TestCase):
self.caseid = '%s-28' % (self.lab) self.caseid = '%s-28' % (self.lab)
self.testplanid = gl.get_value('test_plan_id') self.testplanid = gl.get_value('test_plan_id')
(self.smstoken,self.token) = csendvc.sendVerificationCode("18021047680","LOGIN") (self.smstoken) = csendvc.sendVerificationCode("18021047680","LOGIN")
# self.token = clogin.testuserlogin() self.token = clogin.testuserlogin()
self.ip = gl.get_value('apiip') self.ip = gl.get_value('apiip')
# 测试API地址 # 测试API地址
......
...@@ -21,6 +21,7 @@ gl.set_value('test_plan_id','2042') #//正式 ...@@ -21,6 +21,7 @@ gl.set_value('test_plan_id','2042') #//正式
#设置APIIP地址 #设置APIIP地址
gl.set_value('apiip','http://csptest.thiztech.com:7001') gl.set_value('apiip','http://csptest.thiztech.com:7001')
# gl.set_value('apiip','http://192.168.68.205:8092')
#设置环境lab #设置环境lab
gl.set_value('lab','jfaaa') #正式 gl.set_value('lab','jfaaa') #正式
......
2019-08-29 17:51:19,918 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:48] - INFO: jfaaa-3 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 17:51:20,018 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsid': '326990762652864512', 'mobile': '13501976019', 'realName': None, 'idCardNum': None, 'isRealName': False, 'inviteCode': 'LG6F7U', 'inviteUrl': 'LG6F7U', 'avatarUrl': None, 'isHaveLowerLevel': False, 'isShare': False, 'certificationStatus': 'UNCERTIFIED', 'financialPlannerInviteCode': None, 'financialPlannerRank': '1', 'financialPlannerRankName': '注册理财师'}}
2019-08-29 17:51:20,151 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:61] - INFO: p
2019-08-29 17:51:20,153 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:62] - INFO: jfaaa-3 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 17:58:47,908 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:48] - INFO: jfaaa-3 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 17:58:47,968 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsid': '326992641667502080', 'mobile': '18021047680', 'realName': None, 'idCardNum': None, 'isRealName': False, 'inviteCode': 'LD2VR0', 'inviteUrl': 'LD2VR0', 'avatarUrl': None, 'isHaveLowerLevel': False, 'isShare': False, 'certificationStatus': 'UNCERTIFIED', 'financialPlannerInviteCode': None, 'financialPlannerRank': '1', 'financialPlannerRankName': '注册理财师'}}
2019-08-29 17:58:48,101 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:61] - INFO: p
2019-08-29 17:58:48,101 - E:\JFApro\jfaappapi\case\TTtest_jfa_tc03.py[line:62] - INFO: jfaaa-3 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:05,214 - E:/JFApro/jfaappapi/run_all_case.py[line:30] - INFO: test is opening!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:06,093 - E:/JFApro/jfaappapi/run_all_case.py[line:19] - INFO: <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc01.TestsendVerificationCode testMethod=testsendVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc02.TestcheckVerificationCode testMethod=testcheckVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc04.TestgetManagerInfo testMethod=testgetManagerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc05.Testauthentication testMethod=testauthentication>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc06.TestchangeBankCardInfo testMethod=testchangeBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc07.TestcheckBankPassword testMethod=testcheckBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc08.TestcheckIdCard testMethod=testcheckIdCard>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc09.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc10.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc11.TestgetManagerStatisticInfo testMethod=testgetManagerStatisticInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc12.Testlogin testMethod=testlogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc13.TestrefreshToken testMethod=testrefreshToken>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc14.TestresetBankPassword testMethod=testresetBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc15.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc16.TestsetBankCardInfo testMethod=testsetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc17.TestsmsCodeLogin testMethod=testsmsCodeLogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc18.TestupdateNickName testMethod=testupdateNickName>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc19.TestgetFundInfo testMethod=testgetFundInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc20.TestgetFundInfoNavHisList testMethod=testgetFundInfoNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc21.TestgetFundNavHisList testMethod=testgetFundNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc22.TestgetProductList testMethod=testgetProductList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc23.TestgetCustomerInfo testMethod=testgetCustomerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc24.TesteditCustomerRemark testMethod=testeditCustomerRemark>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc26.TestgetCustomerOrders testMethod=testgetCustomerOrders>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc27.TestgetCustomers testMethod=testgetCustomers>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc28.TestgetAssets testMethod=testgetAssets>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc29.TestgetCashFlows testMethod=testgetCashFlows>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc33.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc35.TestgetMessages testMethod=testgetMessages>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc37.TestsetAllMessagesIsRead testMethod=testsetAllMessagesIsRead>]>]>]>
2019-08-29 18:00:06,097 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:43] - INFO: jfaaa-1 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:06,154 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:48] - INFO: {'errCode': 3001, 'errMsg': '用户已存在', 'timestamp': '2019-08-29T10:00:09.451Z', 'success': False}
2019-08-29 18:00:06,266 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:56] - INFO: p
2019-08-29 18:00:06,266 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:57] - INFO: jfaaa-1 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:06,492 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:42] - INFO: jfaaa-4 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:06,733 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:48] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:00:06,762 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:56] - INFO: p
2019-08-29 18:00:06,762 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:57] - INFO: jfaaa-4 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:06,919 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:48] - INFO: jfaaa-5 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:07,508 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiLmnLHlh4wiLCJleHAiOjE1NjcwNzMxMTB9.YQTZiL5U86bJe04ulePHl1W9syIzP_U4gY77CLSNhaaVQ6QH05t4GZTW5-IgmTRY'}}
2019-08-29 18:00:07,560 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:61] - INFO: p
2019-08-29 18:00:07,560 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:62] - INFO: jfaaa-5 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:07,966 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:57] - INFO: jfaaa-6 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:08,276 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:62] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:00:08,314 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:70] - INFO: p
2019-08-29 18:00:08,314 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:71] - INFO: jfaaa-6 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:08,498 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:51] - INFO: jfaaa-7 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:08,776 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY3MDczMTEyfQ.dbDOqMb-r2goNpeTLkvEq09NvgEOhAVbXEOfAOQuxnTbtqI8sRPnneofffhNYXhDF4Z_PM7ioeBHvDeER2yo2w'}}
2019-08-29 18:00:08,825 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:64] - INFO: p
2019-08-29 18:00:08,826 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:65] - INFO: jfaaa-7 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:08,938 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:49] - INFO: jfaaa-8 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:09,131 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIzMTAxMTUxOTg0MDcxMDE5NTQiLCJleHAiOjE1NjcwNzMxMTJ9._vob0CSGBlP9gkH0EJw3W32xOamPbAiADwunOPsdKwrR5jXLBn_40m1tVbAl3j3G'}}
2019-08-29 18:00:09,166 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:62] - INFO: p
2019-08-29 18:00:09,166 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:63] - INFO: jfaaa-8 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:09,437 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:41] - INFO: jfaaa-10 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:09,669 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankCardNum': '8887', 'bankName': '中国建设银行'}}
2019-08-29 18:00:09,742 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:54] - INFO: p
2019-08-29 18:00:09,742 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:55] - INFO: jfaaa-10 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:10,255 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:41] - INFO: jfaaa-11 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:10,454 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'customersNum': 6, 'notOrderedCustomerNum': 0, 'nonOpenCustomersNum': 3, 'orderCount': 15, 'totalAmount': 212581.41}}
2019-08-29 18:00:10,497 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:54] - INFO: p
2019-08-29 18:00:10,497 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:55] - INFO: jfaaa-11 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:10,498 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:49] - INFO: jfaaa-12 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:10,674 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:00:10,708 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:62] - INFO: p
2019-08-29 18:00:10,709 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:63] - INFO: jfaaa-12 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:10,855 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:49] - INFO: jfaaa-13 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:11,020 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'token': 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzMTcxNjc0OTc0MDMwNDM4NDAsMTU2NzA3MjgxNDI4NiIsImV4cCI6MTU2OTY2NDgxNH0.oNTT8oizMNPY_LBTDSJr8vxg4ZVcxoUdKJ7Op2oI-No'}}
2019-08-29 18:00:11,066 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:62] - INFO: p
2019-08-29 18:00:11,067 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:63] - INFO: jfaaa-13 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:11,445 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:54] - INFO: jfaaa-14 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:11,682 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:00:11,727 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:67] - INFO: p
2019-08-29 18:00:11,727 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:68] - INFO: jfaaa-14 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:12,286 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:59] - INFO: jfaaa-16 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:12,560 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:64] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:00:12,614 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:72] - INFO: p
2019-08-29 18:00:12,614 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:73] - INFO: jfaaa-16 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:13,041 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:41] - INFO: jfaaa-19 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:13,453 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'fundId': '298708666109005821', 'isinCode': 'LU0055631609', 'cnFullName': '贝莱德全球基金 - 世界黄金基金 A2 累积', 'enFullName': 'BlackRock Global Funds - World Gold Fund (USD) A2', 'riskLevel': '高', 'fundType': '股票型', 'fundManager': 'Evy Hambro', 'currencyType': 'USD', 'fundCompany': {'fundCompanyId': '317155668673040384', 'fundCompanyName': '贝莱德', 'fundCompanyLogo': '', 'fundCompanyUrl': ''}, 'fundFiles': [{'fundFileName': '基金简报', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/factsheetHKBRL005.pdf'}, {'fundFileName': '产品资料概要', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/kfsHKBRL005.pdf'}, {'fundFileName': '基金说明书', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/prospectusHKBRL005.pdf'}, {'fundFileName': '半年度/年度报告', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/reportsHKBRL005.pdf'}], 'fundAchievements': {'navDate': '2019-08-27T16:00:00Z', 'netLatestUnit': '34.89', 'dayChg': 0.61, 'nearlyOneMonth': 8.32, 'sinceYear': 39.67, 'nearlyOneYear': 46.35, 'nearlyThreeYear': -5.32, 'nearlyFiveYear': 7.35, 'yearOne': -17.58, 'yearTwo': 2.68, 'yearThree': 50.92, 'yearFour': -21.88, 'yearFive': -5.19}, 'multiMediaFile': None, 'highestRate': 1.0, 'commissionCategoryId': '317159353314578432'}}
2019-08-29 18:00:13,499 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:54] - INFO: p
2019-08-29 18:00:13,499 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:55] - INFO: jfaaa-19 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:13,640 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:41] - INFO: jfaaa-20 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:13,801 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'navDate': '2019-08-27T16:00:00Z', 'netValueUnit': '34.8900'}, {'navDate': '2019-08-26T16:00:00Z', 'netValueUnit': '34.6800'}, {'navDate': '2019-08-25T16:00:00Z', 'netValueUnit': '34.4900'}, {'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}]}
2019-08-29 18:00:13,839 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:54] - INFO: p
2019-08-29 18:00:13,839 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:55] - INFO: jfaaa-20 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:13,999 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:41] - INFO: jfaaa-21 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:14,159 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 303, 'totalCount': 6043, 'data': [{'navDate': '2019-08-27T16:00:00Z', 'netValueUnit': '34.8900'}, {'navDate': '2019-08-26T16:00:00Z', 'netValueUnit': '34.6800'}, {'navDate': '2019-08-25T16:00:00Z', 'netValueUnit': '34.4900'}, {'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}]}
2019-08-29 18:00:14,206 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:54] - INFO: p
2019-08-29 18:00:14,207 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:55] - INFO: jfaaa-21 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:15,188 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:41] - INFO: jfaaa-33 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:15,465 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'advertId': '317169917545811968', 'advertTitle': '特朗普', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318187816989364224', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/320806474303541248'}, {'advertId': '318199175500140544', 'advertTitle': '测试', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318199173793058816', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/318916048978055168'}]}
2019-08-29 18:00:15,509 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:54] - INFO: p
2019-08-29 18:00:15,510 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:55] - INFO: jfaaa-33 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:15,665 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:41] - INFO: jfaaa-35 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:15,915 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140758249472', 'msgText': '您已成功从订单号为318586140540145664的订单中结算佣金$34.83,如有疑问,请咨询客服。', 'msgTime': 1565068465227, 'customerId': None, 'cashFlowId': '318586140540145665'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140133298176', 'msgText': '您已成功从订单号为318586139294437376的订单中结算佣金$99.00,如有疑问,请咨询客服。', 'msgTime': 1565068465078, 'customerId': None, 'cashFlowId': '318586139361546240'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318281699400224768', 'msgText': '您的提现金额为$1818.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564995880751, 'customerId': None, 'cashFlowId': '318267838651568128'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318274014818734080', 'msgText': '您已成功从订单号为318274014340583424的订单中结算佣金$79.36,如有疑问,请咨询客服。', 'msgTime': 1564994048604, 'customerId': None, 'cashFlowId': '318274014399303680'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318256610344570880', 'msgText': '您的提现金额为$300.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564989899054, 'customerId': None, 'cashFlowId': '318256425153466368'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318251651939045376', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564988716878, 'customerId': None, 'cashFlowId': '318251498666594304'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318232371772133376', 'msgText': '您已成功从订单号为318232371436589056的订单中结算佣金$158.72,如有疑问,请咨询客服。', 'msgTime': 1564984120128, 'customerId': None, 'cashFlowId': '318232371440783360'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226506050572288', 'msgText': '您已成功从订单号为318226505824079872的订单中结算佣金$49.60,如有疑问,请咨询客服。', 'msgTime': 1564982721631, 'customerId': None, 'cashFlowId': '318226505824079873'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226505463369728', 'msgText': '您已成功从订单号为318226505249460224的订单中结算佣金$198.40,如有疑问,请咨询客服。', 'msgTime': 1564982721491, 'customerId': None, 'cashFlowId': '318226505253654528'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223731237457920', 'msgText': '您已成功从订单号为318223730142744576的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564982060064, 'customerId': None, 'cashFlowId': '318223730142744577'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729752674304', 'msgText': '您已成功从订单号为318223729530376192的订单中结算佣金$99.20,如有疑问,请咨询客服。', 'msgTime': 1564982059710, 'customerId': None, 'cashFlowId': '318223729530376193'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729173860352', 'msgText': '您已成功从订单号为318223728964145152的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564982059572, 'customerId': None, 'cashFlowId': '318223728968339456'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223728595046400', 'msgText': '您已成功从订单号为318223728381136896的订单中结算佣金$992.00,如有疑问,请咨询客服。', 'msgTime': 1564982059434, 'customerId': None, 'cashFlowId': '318223728385331200'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727974289408', 'msgText': '您已成功从订单号为318223727764574208的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564982059286, 'customerId': None, 'cashFlowId': '318223727768768512'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727403864064', 'msgText': '您已成功从订单号为318223727173177344的订单中结算佣金$59.52,如有疑问,请咨询客服。', 'msgTime': 1564982059149, 'customerId': None, 'cashFlowId': '318223727177371648'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223726757941248', 'msgText': '您已成功从订单号为318223726292373504的订单中结算佣金$352.80,如有疑问,请咨询客服。', 'msgTime': 1564982058996, 'customerId': None, 'cashFlowId': '318223726296567808'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223725797445632', 'msgText': '您已成功从订单号为318223725386403840的订单中结算佣金$97.00,如有疑问,请咨询客服。', 'msgTime': 1564982058767, 'customerId': None, 'cashFlowId': '318223725428346880'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187904553848833', 'msgText': '您的提现金额为$280.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973518317, 'customerId': None, 'cashFlowId': '318187797632651264'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187684310945792', 'msgText': '您的提现金额为$100.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973465807, 'customerId': None, 'cashFlowId': '318185642695725056'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318186843734675456', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564973265398, 'customerId': None, 'cashFlowId': '318186696388775936'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317234223746519040', 'msgText': '您已成功从订单号为317234223666827264的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564746143094, 'customerId': None, 'cashFlowId': '317234223666827265'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317220476906770432', 'msgText': '您已成功从订单号为317220476764164096的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564742865592, 'customerId': None, 'cashFlowId': '317220476764164097'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317215380542197760', 'msgText': '您已成功从订单号为317215380370231296的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564741650524, 'customerId': None, 'cashFlowId': '317215380378619904'}]}
2019-08-29 18:00:15,950 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:54] - INFO: p
2019-08-29 18:00:15,950 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:55] - INFO: jfaaa-35 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:16,137 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:45] - INFO: jfaaa-37 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:16,318 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:50] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:00:16,355 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:58] - INFO: p
2019-08-29 18:00:16,356 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:59] - INFO: jfaaa-37 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:00:23,829 - E:\JFApro\jfaappapi\util\send_mail.py[line:47] - INFO: send email successful
2019-08-29 18:00:23,830 - E:/JFApro/jfaappapi/run_all_case.py[line:40] - INFO: test is over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:07:52,186 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:54] - INFO: jfaaa-15 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:07:52,812 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:59] - INFO: {'timestamp': '2019-08-29T10:07:56.103+0000', 'status': 403, 'error': 'Forbidden', 'message': 'Access Denied', 'path': '/api/v1/manager/resetPassword'}
2019-08-29 18:08:18,114 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:53] - INFO: jfaaa-9 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:08:18,215 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:08:18,316 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:66] - INFO: p
2019-08-29 18:08:18,317 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:67] - INFO: jfaaa-9 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:08:28,347 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:47] - INFO: jfaaa-2 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:08:28,465 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:52] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:08:28,642 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:60] - INFO: p
2019-08-29 18:08:28,643 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:61] - INFO: jfaaa-2 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:11:59,251 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:56] - INFO: jfaaa-15 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:11:59,508 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:61] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:11:59,630 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:69] - INFO: p
2019-08-29 18:11:59,631 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:70] - INFO: jfaaa-15 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:12:42,843 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:54] - INFO: jfaaa-17 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:12:43,040 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:12:43,146 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:67] - INFO: p
2019-08-29 18:12:43,146 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:68] - INFO: jfaaa-17 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:13:09,045 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:51] - INFO: jfaaa-18 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:13:09,221 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:13:09,358 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:64] - INFO: p
2019-08-29 18:13:09,359 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:65] - INFO: jfaaa-18 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:11,291 - E:/JFApro/jfaappapi/run_all_case.py[line:30] - INFO: test is opening!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,004 - E:/JFApro/jfaappapi/run_all_case.py[line:19] - INFO: <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc01.TestsendVerificationCode testMethod=testsendVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc02.TestcheckVerificationCode testMethod=testcheckVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc04.TestgetManagerInfo testMethod=testgetManagerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc05.Testauthentication testMethod=testauthentication>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc06.TestchangeBankCardInfo testMethod=testchangeBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc07.TestcheckBankPassword testMethod=testcheckBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc08.TestcheckIdCard testMethod=testcheckIdCard>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc09.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc10.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc11.TestgetManagerStatisticInfo testMethod=testgetManagerStatisticInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc12.Testlogin testMethod=testlogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc13.TestrefreshToken testMethod=testrefreshToken>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc14.TestresetBankPassword testMethod=testresetBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc15.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc16.TestsetBankCardInfo testMethod=testsetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc17.TestsmsCodeLogin testMethod=testsmsCodeLogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc18.TestupdateNickName testMethod=testupdateNickName>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc19.TestgetFundInfo testMethod=testgetFundInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc20.TestgetFundInfoNavHisList testMethod=testgetFundInfoNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc21.TestgetFundNavHisList testMethod=testgetFundNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc22.TestgetProductList testMethod=testgetProductList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc23.TestgetCustomerInfo testMethod=testgetCustomerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc24.TesteditCustomerRemark testMethod=testeditCustomerRemark>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc26.TestgetCustomerOrders testMethod=testgetCustomerOrders>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc27.TestgetCustomers testMethod=testgetCustomers>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc28.TestgetAssets testMethod=testgetAssets>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc29.TestgetCashFlows testMethod=testgetCashFlows>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc33.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc35.TestgetMessages testMethod=testgetMessages>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc37.TestsetAllMessagesIsRead testMethod=testsetAllMessagesIsRead>]>]>]>
2019-08-29 18:16:12,007 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:43] - INFO: jfaaa-1 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,070 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:48] - INFO: {'errCode': 3001, 'errMsg': '用户已存在', 'timestamp': '2019-08-29T10:16:15.357Z', 'success': False}
2019-08-29 18:16:12,170 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:56] - INFO: p
2019-08-29 18:16:12,170 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:57] - INFO: jfaaa-1 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,222 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:47] - INFO: jfaaa-2 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,237 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:52] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:12,273 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:60] - INFO: p
2019-08-29 18:16:12,273 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:61] - INFO: jfaaa-2 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,365 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:42] - INFO: jfaaa-4 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,502 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:48] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:16:12,539 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:56] - INFO: p
2019-08-29 18:16:12,539 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:57] - INFO: jfaaa-4 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:12,668 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:48] - INFO: jfaaa-5 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:13,093 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiLmnLHlh4wiLCJleHAiOjE1NjcwNzQwNzZ9.0_v4w77p61xYnFUTSFCZum1lwaADgvvswyUrpILzgZyC21ZmOm5I_7N6UNya9JEV'}}
2019-08-29 18:16:13,130 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:61] - INFO: p
2019-08-29 18:16:13,131 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:62] - INFO: jfaaa-5 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:13,480 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:57] - INFO: jfaaa-6 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:13,673 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:62] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:13,723 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:70] - INFO: p
2019-08-29 18:16:13,723 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:71] - INFO: jfaaa-6 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:13,852 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:51] - INFO: jfaaa-7 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,025 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY3MDc0MDc3fQ.EV4XaY3-TuQ41_nluhJlZcel-PMl2Mm26yn-kC9S2Z7OYD4Y5oss7Tot855v2r7Rv5xz_-LKEkpanXmfcvrAhg'}}
2019-08-29 18:16:14,083 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:64] - INFO: p
2019-08-29 18:16:14,083 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:65] - INFO: jfaaa-7 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,234 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:49] - INFO: jfaaa-8 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,529 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIzMTAxMTUxOTg0MDcxMDE5NTQiLCJleHAiOjE1NjcwNzQwNzd9.VMA3WcAKnaKN6UcbnxE6Yp5y14jvu5mWZ_z-n0wqj9CLUN18TRkCe185z5ljzeF3'}}
2019-08-29 18:16:14,566 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:62] - INFO: p
2019-08-29 18:16:14,567 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:63] - INFO: jfaaa-8 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,633 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:53] - INFO: jfaaa-9 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,733 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:14,782 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:66] - INFO: p
2019-08-29 18:16:14,782 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:67] - INFO: jfaaa-9 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:14,991 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:41] - INFO: jfaaa-10 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,190 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankCardNum': '8887', 'bankName': '中国建设银行'}}
2019-08-29 18:16:15,220 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:54] - INFO: p
2019-08-29 18:16:15,220 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:55] - INFO: jfaaa-10 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,358 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:41] - INFO: jfaaa-11 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,525 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'customersNum': 6, 'notOrderedCustomerNum': 0, 'nonOpenCustomersNum': 3, 'orderCount': 15, 'totalAmount': 212581.41}}
2019-08-29 18:16:15,575 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:54] - INFO: p
2019-08-29 18:16:15,575 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:55] - INFO: jfaaa-11 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,576 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:49] - INFO: jfaaa-12 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,703 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:16:15,743 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:62] - INFO: p
2019-08-29 18:16:15,744 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:63] - INFO: jfaaa-12 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:15,872 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:49] - INFO: jfaaa-13 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:16,056 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'token': 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzMTcxNjc0OTc0MDMwNDM4NDAsMTU2NzA3Mzc3OTMxMiIsImV4cCI6MTU2OTY2NTc3OX0.cLw8enrJaEVLBWQ8EbZ8LgL5Q30rozpeQDKH5RPjpOY'}}
2019-08-29 18:16:16,090 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:62] - INFO: p
2019-08-29 18:16:16,090 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:63] - INFO: jfaaa-13 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:16,411 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:54] - INFO: jfaaa-14 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:16,652 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:16,694 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:67] - INFO: p
2019-08-29 18:16:16,695 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:68] - INFO: jfaaa-14 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:16,915 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:56] - INFO: jfaaa-15 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:17,108 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:61] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:17,170 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:69] - INFO: p
2019-08-29 18:16:17,170 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:70] - INFO: jfaaa-15 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:17,602 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:59] - INFO: jfaaa-16 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:17,826 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:64] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:17,859 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:72] - INFO: p
2019-08-29 18:16:17,860 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:73] - INFO: jfaaa-16 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:18,088 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:54] - INFO: jfaaa-17 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:18,217 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-29 18:16:18,269 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:67] - INFO: p
2019-08-29 18:16:18,270 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:68] - INFO: jfaaa-17 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:18,477 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:51] - INFO: jfaaa-18 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:18,689 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:18,724 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:64] - INFO: p
2019-08-29 18:16:18,724 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:65] - INFO: jfaaa-18 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:18,852 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:41] - INFO: jfaaa-19 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:19,100 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'fundId': '298708666109005821', 'isinCode': 'LU0055631609', 'cnFullName': '贝莱德全球基金 - 世界黄金基金 A2 累积', 'enFullName': 'BlackRock Global Funds - World Gold Fund (USD) A2', 'riskLevel': '高', 'fundType': '股票型', 'fundManager': 'Evy Hambro', 'currencyType': 'USD', 'fundCompany': {'fundCompanyId': '317155668673040384', 'fundCompanyName': '贝莱德', 'fundCompanyLogo': '', 'fundCompanyUrl': ''}, 'fundFiles': [{'fundFileName': '基金简报', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/factsheetHKBRL005.pdf'}, {'fundFileName': '产品资料概要', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/kfsHKBRL005.pdf'}, {'fundFileName': '基金说明书', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/prospectusHKBRL005.pdf'}, {'fundFileName': '半年度/年度报告', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/reportsHKBRL005.pdf'}], 'fundAchievements': {'navDate': '2019-08-27T16:00:00Z', 'netLatestUnit': '34.89', 'dayChg': 0.61, 'nearlyOneMonth': 8.32, 'sinceYear': 39.67, 'nearlyOneYear': 46.35, 'nearlyThreeYear': -5.32, 'nearlyFiveYear': 7.35, 'yearOne': -17.58, 'yearTwo': 2.68, 'yearThree': 50.92, 'yearFour': -21.88, 'yearFive': -5.19}, 'multiMediaFile': None, 'highestRate': 1.0, 'commissionCategoryId': '317159353314578432'}}
2019-08-29 18:16:19,141 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:54] - INFO: p
2019-08-29 18:16:19,141 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:55] - INFO: jfaaa-19 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:19,268 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:41] - INFO: jfaaa-20 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:19,491 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'navDate': '2019-08-27T16:00:00Z', 'netValueUnit': '34.8900'}, {'navDate': '2019-08-26T16:00:00Z', 'netValueUnit': '34.6800'}, {'navDate': '2019-08-25T16:00:00Z', 'netValueUnit': '34.4900'}, {'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}]}
2019-08-29 18:16:19,536 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:54] - INFO: p
2019-08-29 18:16:19,537 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:55] - INFO: jfaaa-20 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:19,684 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:41] - INFO: jfaaa-21 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:19,917 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 303, 'totalCount': 6043, 'data': [{'navDate': '2019-08-27T16:00:00Z', 'netValueUnit': '34.8900'}, {'navDate': '2019-08-26T16:00:00Z', 'netValueUnit': '34.6800'}, {'navDate': '2019-08-25T16:00:00Z', 'netValueUnit': '34.4900'}, {'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}]}
2019-08-29 18:16:19,964 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:54] - INFO: p
2019-08-29 18:16:19,964 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:55] - INFO: jfaaa-21 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:20,207 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:54] - INFO: jfaaa-22 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:20,489 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 0, 'pageSize': 20, 'totalPages': 1, 'totalCount': 4, 'data': [{'fundId': '298708666109005847', 'cnFundName': '富兰克林入息基金 A 月派息', 'enFundName': 'Franklin Income Fund (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '13.27', 'recommendText': '444', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005845', 'cnFundName': '富兰克林美国机会基金 A 累积', 'enFundName': 'Franklin U.S. Opportunities Fund (USD) A (Acc)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '52.20', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005865', 'cnFundName': 'PIMCO 收益基金 E 月派息', 'enFundName': 'PIMCO Income Fund (USD) E MDis', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '13.24', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179609305157632', 'highestRate': 1.5}, {'fundId': '298708666109005851', 'cnFundName': '富兰克林浮动息率基金 A 月派息', 'enFundName': 'Franklin Floating Rate Fund plc (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '4.85', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}]}
2019-08-29 18:16:20,524 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:67] - INFO: p
2019-08-29 18:16:20,524 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:68] - INFO: jfaaa-22 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:20,704 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:53] - INFO: jfaaa-23 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:20,883 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'extId': '318597686657945600', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '319733770133573632', 'isOpened': False, 'userRealName': '朱凌', 'userPhone': '8618500000088', 'remark': '1112', 'orderCount': 0, 'sum': 0.0, 'commission': 0.0, 'registerTime': 1565071217984}}
2019-08-29 18:16:20,922 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:66] - INFO: p
2019-08-29 18:16:20,922 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:67] - INFO: jfaaa-23 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:21,101 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:54] - INFO: jfaaa-24 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:21,276 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:21,323 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:67] - INFO: p
2019-08-29 18:16:21,323 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:68] - INFO: jfaaa-24 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:21,504 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:53] - INFO: jfaaa-26 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:21,642 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': []}
2019-08-29 18:16:21,675 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:66] - INFO: p
2019-08-29 18:16:21,675 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:67] - INFO: jfaaa-26 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:21,851 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:53] - INFO: jfaaa-27 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:22,126 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'extId': '308469649551527936', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215354583650304', 'isOpened': True, 'userRealName': '朱凌871', 'userPhone': '8618700000001', 'remark': None, 'orderCount': 4, 'sum': 38981.41, 'commission': 583.6282, 'registerTime': 1562656505770}, {'extId': '314634038268792832', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358056534016', 'isOpened': True, 'userRealName': '朱凌2', 'userPhone': '8618500000002', 'remark': None, 'orderCount': 5, 'sum': 124992.0, 'commission': 2043.52, 'registerTime': 1564311600000}, {'extId': '314641212374126592', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358966697984', 'isOpened': True, 'userRealName': '朱凌8', 'userPhone': '8618500000008', 'remark': None, 'orderCount': 6, 'sum': 48608.0, 'commission': 882.88, 'registerTime': 1564311600000}]}
2019-08-29 18:16:22,159 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:66] - INFO: p
2019-08-29 18:16:22,160 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:67] - INFO: jfaaa-27 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:22,365 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:51] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:22,644 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'withdrawalInProcess': 2000.0, 'commissionThisMonth': 3222.34, 'commissionCanWithdraw': 1010.02, 'commissionAmount': 3510.02, 'threeMonthCommissionAmount': 3381.06}}
2019-08-29 18:16:22,703 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:64] - INFO: p
2019-08-29 18:16:22,703 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:65] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:22,925 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:54] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:23,112 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 0, 'totalCount': 15, 'data': [{'cashFlowId': '321467174575280128', 'cashFlowCode': '10321467173782556673', 'cashFlowModifyTime': 1565755357216, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565755357216, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '319286923468345344', 'cashFlowCode': '10319286922272968705', 'cashFlowModifyTime': 1565235544845, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565235544845, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '318586140540145665', 'cashFlowCode': '318586140540145664', 'cashFlowModifyTime': 1565068465175, 'cashFlowChange': 34.8282, 'cashFlowCreateTime': 1565068465175, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318586139361546240', 'cashFlowCode': '318586139294437376', 'cashFlowModifyTime': 1565068464894, 'cashFlowChange': 99.0, 'cashFlowCreateTime': 1565068464894, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318267838651568128', 'cashFlowCode': '10318267838349578241', 'cashFlowModifyTime': 1564995880709, 'cashFlowChange': 1818.0, 'cashFlowCreateTime': 1564992576091, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'FAIL'}, {'cashFlowId': '318226505253654528', 'cashFlowCode': '318226505249460224', 'cashFlowModifyTime': 1564982721441, 'cashFlowChange': 198.4, 'cashFlowCreateTime': 1564982721441, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223730142744577', 'cashFlowCode': '318223730142744576', 'cashFlowModifyTime': 1564982059803, 'cashFlowChange': 396.8, 'cashFlowCreateTime': 1564982059803, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223729530376193', 'cashFlowCode': '318223729530376192', 'cashFlowModifyTime': 1564982059657, 'cashFlowChange': 99.2, 'cashFlowCreateTime': 1564982059657, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728968339456', 'cashFlowCode': '318223728964145152', 'cashFlowModifyTime': 1564982059523, 'cashFlowChange': 297.6, 'cashFlowCreateTime': 1564982059523, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728385331200', 'cashFlowCode': '318223728381136896', 'cashFlowModifyTime': 1564982059384, 'cashFlowChange': 992.0, 'cashFlowCreateTime': 1564982059384, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727768768512', 'cashFlowCode': '318223727764574208', 'cashFlowModifyTime': 1564982059237, 'cashFlowChange': 595.2, 'cashFlowCreateTime': 1564982059237, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727177371648', 'cashFlowCode': '318223727173177344', 'cashFlowModifyTime': 1564982059096, 'cashFlowChange': 59.52, 'cashFlowCreateTime': 1564982059096, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223726296567808', 'cashFlowCode': '318223726292373504', 'cashFlowModifyTime': 1564982058886, 'cashFlowChange': 352.8, 'cashFlowCreateTime': 1564982058886, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223725428346880', 'cashFlowCode': '318223725386403840', 'cashFlowModifyTime': 1564982058679, 'cashFlowChange': 97.0, 'cashFlowCreateTime': 1564982058679, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318232371440783360', 'cashFlowCode': '318232371436589056', 'cashFlowModifyTime': 1564984120049, 'cashFlowChange': 158.72, 'cashFlowCreateTime': 1562312307000, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}]}
2019-08-29 18:16:23,145 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:67] - INFO: p
2019-08-29 18:16:23,146 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:68] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:23,259 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:41] - INFO: jfaaa-33 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:23,465 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'advertId': '317169917545811968', 'advertTitle': '特朗普', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318187816989364224', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/320806474303541248'}, {'advertId': '318199175500140544', 'advertTitle': '测试', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318199173793058816', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/318916048978055168'}]}
2019-08-29 18:16:23,504 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:54] - INFO: p
2019-08-29 18:16:23,505 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:55] - INFO: jfaaa-33 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:23,613 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:41] - INFO: jfaaa-35 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:23,871 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140758249472', 'msgText': '您已成功从订单号为318586140540145664的订单中结算佣金$34.83,如有疑问,请咨询客服。', 'msgTime': 1565068465227, 'customerId': None, 'cashFlowId': '318586140540145665'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140133298176', 'msgText': '您已成功从订单号为318586139294437376的订单中结算佣金$99.00,如有疑问,请咨询客服。', 'msgTime': 1565068465078, 'customerId': None, 'cashFlowId': '318586139361546240'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318281699400224768', 'msgText': '您的提现金额为$1818.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564995880751, 'customerId': None, 'cashFlowId': '318267838651568128'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318274014818734080', 'msgText': '您已成功从订单号为318274014340583424的订单中结算佣金$79.36,如有疑问,请咨询客服。', 'msgTime': 1564994048604, 'customerId': None, 'cashFlowId': '318274014399303680'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318256610344570880', 'msgText': '您的提现金额为$300.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564989899054, 'customerId': None, 'cashFlowId': '318256425153466368'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318251651939045376', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564988716878, 'customerId': None, 'cashFlowId': '318251498666594304'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318232371772133376', 'msgText': '您已成功从订单号为318232371436589056的订单中结算佣金$158.72,如有疑问,请咨询客服。', 'msgTime': 1564984120128, 'customerId': None, 'cashFlowId': '318232371440783360'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226506050572288', 'msgText': '您已成功从订单号为318226505824079872的订单中结算佣金$49.60,如有疑问,请咨询客服。', 'msgTime': 1564982721631, 'customerId': None, 'cashFlowId': '318226505824079873'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226505463369728', 'msgText': '您已成功从订单号为318226505249460224的订单中结算佣金$198.40,如有疑问,请咨询客服。', 'msgTime': 1564982721491, 'customerId': None, 'cashFlowId': '318226505253654528'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223731237457920', 'msgText': '您已成功从订单号为318223730142744576的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564982060064, 'customerId': None, 'cashFlowId': '318223730142744577'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729752674304', 'msgText': '您已成功从订单号为318223729530376192的订单中结算佣金$99.20,如有疑问,请咨询客服。', 'msgTime': 1564982059710, 'customerId': None, 'cashFlowId': '318223729530376193'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729173860352', 'msgText': '您已成功从订单号为318223728964145152的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564982059572, 'customerId': None, 'cashFlowId': '318223728968339456'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223728595046400', 'msgText': '您已成功从订单号为318223728381136896的订单中结算佣金$992.00,如有疑问,请咨询客服。', 'msgTime': 1564982059434, 'customerId': None, 'cashFlowId': '318223728385331200'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727974289408', 'msgText': '您已成功从订单号为318223727764574208的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564982059286, 'customerId': None, 'cashFlowId': '318223727768768512'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727403864064', 'msgText': '您已成功从订单号为318223727173177344的订单中结算佣金$59.52,如有疑问,请咨询客服。', 'msgTime': 1564982059149, 'customerId': None, 'cashFlowId': '318223727177371648'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223726757941248', 'msgText': '您已成功从订单号为318223726292373504的订单中结算佣金$352.80,如有疑问,请咨询客服。', 'msgTime': 1564982058996, 'customerId': None, 'cashFlowId': '318223726296567808'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223725797445632', 'msgText': '您已成功从订单号为318223725386403840的订单中结算佣金$97.00,如有疑问,请咨询客服。', 'msgTime': 1564982058767, 'customerId': None, 'cashFlowId': '318223725428346880'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187904553848833', 'msgText': '您的提现金额为$280.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973518317, 'customerId': None, 'cashFlowId': '318187797632651264'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187684310945792', 'msgText': '您的提现金额为$100.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973465807, 'customerId': None, 'cashFlowId': '318185642695725056'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318186843734675456', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564973265398, 'customerId': None, 'cashFlowId': '318186696388775936'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317234223746519040', 'msgText': '您已成功从订单号为317234223666827264的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564746143094, 'customerId': None, 'cashFlowId': '317234223666827265'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317220476906770432', 'msgText': '您已成功从订单号为317220476764164096的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564742865592, 'customerId': None, 'cashFlowId': '317220476764164097'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317215380542197760', 'msgText': '您已成功从订单号为317215380370231296的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564741650524, 'customerId': None, 'cashFlowId': '317215380378619904'}]}
2019-08-29 18:16:23,916 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:54] - INFO: p
2019-08-29 18:16:23,916 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:55] - INFO: jfaaa-35 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:24,022 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:45] - INFO: jfaaa-37 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:24,153 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:50] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-29 18:16:24,183 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:58] - INFO: p
2019-08-29 18:16:24,183 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:59] - INFO: jfaaa-37 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-29 18:16:28,438 - E:\JFApro\jfaappapi\util\send_mail.py[line:47] - INFO: send email successful
2019-08-29 18:16:28,438 - E:/JFApro/jfaappapi/run_all_case.py[line:40] - INFO: test is over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:13,159 - E:/JFApro/jfaappapi/run_all_case.py[line:30] - INFO: test is opening!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:36,500 - E:/JFApro/jfaappapi/run_all_case.py[line:19] - INFO: <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc01.TestsendVerificationCode testMethod=testsendVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc02.TestcheckVerificationCode testMethod=testcheckVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc04.TestgetManagerInfo testMethod=testgetManagerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc05.Testauthentication testMethod=testauthentication>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc06.TestchangeBankCardInfo testMethod=testchangeBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc07.TestcheckBankPassword testMethod=testcheckBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc08.TestcheckIdCard testMethod=testcheckIdCard>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc09.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc10.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc11.TestgetManagerStatisticInfo testMethod=testgetManagerStatisticInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc12.Testlogin testMethod=testlogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc13.TestrefreshToken testMethod=testrefreshToken>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc14.TestresetBankPassword testMethod=testresetBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc15.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc16.TestsetBankCardInfo testMethod=testsetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc17.TestsmsCodeLogin testMethod=testsmsCodeLogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc18.TestupdateNickName testMethod=testupdateNickName>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc19.TestgetFundInfo testMethod=testgetFundInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc20.TestgetFundInfoNavHisList testMethod=testgetFundInfoNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc21.TestgetFundNavHisList testMethod=testgetFundNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc22.TestgetProductList testMethod=testgetProductList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc23.TestgetCustomerInfo testMethod=testgetCustomerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc24.TesteditCustomerRemark testMethod=testeditCustomerRemark>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc26.TestgetCustomerOrders testMethod=testgetCustomerOrders>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc27.TestgetCustomers testMethod=testgetCustomers>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc28.TestgetAssets testMethod=testgetAssets>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc29.TestgetCashFlows testMethod=testgetCashFlows>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc33.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc35.TestgetMessages testMethod=testgetMessages>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc37.TestsetAllMessagesIsRead testMethod=testsetAllMessagesIsRead>]>]>]>
2019-08-22 13:05:36,503 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:43] - INFO: jfaaa-1 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:37,594 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:48] - INFO: {'errCode': 3001, 'errMsg': '用户已存在', 'timestamp': '2019-08-22T05:05:42.005Z', 'success': False}
2019-08-22 13:05:37,864 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:56] - INFO: p
2019-08-22 13:05:37,864 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:57] - INFO: jfaaa-1 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:39,773 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:47] - INFO: jfaaa-2 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:48,294 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:52] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:05:48,330 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:60] - INFO: p
2019-08-22 13:05:48,331 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:61] - INFO: jfaaa-2 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:49,287 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:42] - INFO: jfaaa-4 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:49,625 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:48] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-22 13:05:49,656 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:56] - INFO: p
2019-08-22 13:05:49,657 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:57] - INFO: jfaaa-4 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:50,971 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:48] - INFO: jfaaa-5 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:54,747 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiLmnLHlh4wiLCJleHAiOjE1NjY0NTA2NTl9.IDhAjJ8ABHrz3VHXuz9OFF6s_VnwHGksEKGg20rDJ3zp7MASZGJ4YqwVXzOFXcIa'}}
2019-08-22 13:05:54,780 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:61] - INFO: p
2019-08-22 13:05:54,780 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:62] - INFO: jfaaa-5 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:57,323 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:57] - INFO: jfaaa-6 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:05:59,596 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:62] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:05:59,631 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:70] - INFO: p
2019-08-22 13:05:59,631 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:71] - INFO: jfaaa-6 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:00,816 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:51] - INFO: jfaaa-7 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:01,712 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY2NDUwNjY2fQ.bQpEn_XhI1Yd6QJ1DKaS8nL5M3Jvn8R_1hphJ3dT0JuPtCdh8ODBhKxgC4WYPDXQFe8v3CC_HNh4hhcFDqLdfg'}}
2019-08-22 13:06:01,744 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:64] - INFO: p
2019-08-22 13:06:01,745 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:65] - INFO: jfaaa-7 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:02,408 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:49] - INFO: jfaaa-8 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:02,727 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIzMTAxMTUxOTg0MDcxMDE5NTQiLCJleHAiOjE1NjY0NTA2Njd9.V4QMRc7a1E_W92yLl7BZlVcq37loJh0eIaydBbB00SSnPlZFqHk9kejLd4h5Dfpz'}}
2019-08-22 13:06:02,762 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:62] - INFO: p
2019-08-22 13:06:02,763 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:63] - INFO: jfaaa-8 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:04,119 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:54] - INFO: jfaaa-9 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:04,781 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:04,811 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:67] - INFO: p
2019-08-22 13:06:04,811 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:68] - INFO: jfaaa-9 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:05,054 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:41] - INFO: jfaaa-10 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:05,384 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankCardNum': '8887', 'bankName': '中国建设银行'}}
2019-08-22 13:06:05,410 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:54] - INFO: p
2019-08-22 13:06:05,410 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:55] - INFO: jfaaa-10 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:05,569 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:41] - INFO: jfaaa-11 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:05,865 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'customersNum': 6, 'notOrderedCustomerNum': 0, 'nonOpenCustomersNum': 3, 'orderCount': 15, 'totalAmount': 212581.41}}
2019-08-22 13:06:05,894 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:54] - INFO: p
2019-08-22 13:06:05,895 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:55] - INFO: jfaaa-11 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:05,895 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:49] - INFO: jfaaa-12 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:08,132 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-22 13:06:08,163 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:62] - INFO: p
2019-08-22 13:06:08,163 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:63] - INFO: jfaaa-12 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:08,667 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:49] - INFO: jfaaa-13 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:08,960 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'token': 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzMTcxNjc0OTc0MDMwNDM4NDAsMTU2NjQ1MDM3MzY5NSIsImV4cCI6MTU2OTA0MjM3M30.9EmKz4n9uvMieiKB4HJpoh_elGRyuTe6s5nTzcr2Y3E'}}
2019-08-22 13:06:08,992 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:62] - INFO: p
2019-08-22 13:06:08,992 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:63] - INFO: jfaaa-13 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:09,330 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:54] - INFO: jfaaa-14 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:09,589 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:09,618 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:67] - INFO: p
2019-08-22 13:06:09,618 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:68] - INFO: jfaaa-14 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:10,026 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:54] - INFO: jfaaa-15 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:10,254 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:10,286 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:67] - INFO: p
2019-08-22 13:06:10,286 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:68] - INFO: jfaaa-15 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:10,751 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:59] - INFO: jfaaa-16 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:10,996 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:64] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:11,023 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:72] - INFO: p
2019-08-22 13:06:11,024 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:73] - INFO: jfaaa-16 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:11,307 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:54] - INFO: jfaaa-17 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:11,540 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-22 13:06:11,574 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:67] - INFO: p
2019-08-22 13:06:11,574 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:68] - INFO: jfaaa-17 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:11,840 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:51] - INFO: jfaaa-18 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:13,152 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:13,184 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:64] - INFO: p
2019-08-22 13:06:13,184 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:65] - INFO: jfaaa-18 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:13,303 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:41] - INFO: jfaaa-19 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:14,618 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'fundId': '298708666109005821', 'isinCode': 'LU0055631609', 'cnFullName': '贝莱德全球基金 - 世界黄金基金 A2 累积', 'enFullName': 'BlackRock Global Funds - World Gold Fund (USD) A2', 'riskLevel': '高', 'fundType': '股票型', 'fundManager': 'Evy Hambro', 'currencyType': 'USD', 'fundCompany': {'fundCompanyId': '317155668673040384', 'fundCompanyName': '贝莱德', 'fundCompanyLogo': '', 'fundCompanyUrl': ''}, 'fundFiles': [{'fundFileName': '基金简报', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/factsheetHKBRL005.pdf'}, {'fundFileName': '产品资料概要', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/kfsHKBRL005.pdf'}, {'fundFileName': '基金说明书', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/prospectusHKBRL005.pdf'}, {'fundFileName': '半年度/年度报告', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/reportsHKBRL005.pdf'}], 'fundAchievements': {'navDate': '2019-08-19T16:00:00Z', 'netLatestUnit': '33.02', 'dayChg': 1.16, 'nearlyOneMonth': -0.06, 'sinceYear': 32.19, 'nearlyOneYear': 43.38, 'nearlyThreeYear': -17.82, 'nearlyFiveYear': 0.24, 'yearOne': -17.58, 'yearTwo': 2.68, 'yearThree': 50.92, 'yearFour': -21.88, 'yearFive': -5.19}, 'multiMediaFile': None, 'highestRate': 1.0, 'commissionCategoryId': '317159353314578432'}}
2019-08-22 13:06:14,648 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:54] - INFO: p
2019-08-22 13:06:14,648 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:55] - INFO: jfaaa-19 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:14,764 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:41] - INFO: jfaaa-20 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:15,193 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}, {'navDate': '2019-07-28T16:00:00Z', 'netValueUnit': '32.2100'}, {'navDate': '2019-07-25T16:00:00Z', 'netValueUnit': '32.2100'}, {'navDate': '2019-07-24T16:00:00Z', 'netValueUnit': '32.4700'}, {'navDate': '2019-07-23T16:00:00Z', 'netValueUnit': '32.9400'}, {'navDate': '2019-07-22T16:00:00Z', 'netValueUnit': '32.9500'}]}
2019-08-22 13:06:15,230 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:54] - INFO: p
2019-08-22 13:06:15,230 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:55] - INFO: jfaaa-20 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:15,344 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:41] - INFO: jfaaa-21 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:15,759 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 302, 'totalCount': 6038, 'data': [{'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}, {'navDate': '2019-07-28T16:00:00Z', 'netValueUnit': '32.2100'}, {'navDate': '2019-07-25T16:00:00Z', 'netValueUnit': '32.2100'}, {'navDate': '2019-07-24T16:00:00Z', 'netValueUnit': '32.4700'}, {'navDate': '2019-07-23T16:00:00Z', 'netValueUnit': '32.9400'}]}
2019-08-22 13:06:15,790 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:54] - INFO: p
2019-08-22 13:06:15,791 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:55] - INFO: jfaaa-21 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:16,915 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:54] - INFO: jfaaa-22 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:17,464 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 0, 'pageSize': 20, 'totalPages': 1, 'totalCount': 4, 'data': [{'fundId': '298708666109005847', 'cnFundName': '富兰克林入息基金 A 月派息', 'enFundName': 'Franklin Income Fund (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '12.56', 'recommendText': '444', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005845', 'cnFundName': '富兰克林美国机会基金 A 累积', 'enFundName': 'Franklin U.S. Opportunities Fund (USD) A (Acc)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '52.61', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005865', 'cnFundName': 'PIMCO 收益基金 E 月派息', 'enFundName': 'PIMCO Income Fund (USD) E MDis', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '13.34', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179609305157632', 'highestRate': 1.5}, {'fundId': '298708666109005851', 'cnFundName': '富兰克林浮动息率基金 A 月派息', 'enFundName': 'Franklin Floating Rate Fund plc (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '5.35', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}]}
2019-08-22 13:06:17,496 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:67] - INFO: p
2019-08-22 13:06:17,497 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:68] - INFO: jfaaa-22 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:17,863 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:53] - INFO: jfaaa-23 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:18,370 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'extId': '318597686657945600', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '319733770133573632', 'isOpened': False, 'userRealName': '朱凌', 'userPhone': '8618500000088', 'remark': '1112', 'orderCount': 0, 'sum': 0.0, 'commission': 0.0, 'registerTime': 1565071217984}}
2019-08-22 13:06:18,401 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:66] - INFO: p
2019-08-22 13:06:18,402 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:67] - INFO: jfaaa-23 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:18,700 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:54] - INFO: jfaaa-24 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:18,911 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:18,938 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:67] - INFO: p
2019-08-22 13:06:18,938 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:68] - INFO: jfaaa-24 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:19,196 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:53] - INFO: jfaaa-26 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:19,628 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': []}
2019-08-22 13:06:19,681 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:66] - INFO: p
2019-08-22 13:06:19,682 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:67] - INFO: jfaaa-26 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:20,027 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:53] - INFO: jfaaa-27 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:20,332 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'extId': '308469649551527936', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215354583650304', 'isOpened': True, 'userRealName': '朱凌871', 'userPhone': '8618700000001', 'remark': None, 'orderCount': 4, 'sum': 38981.41, 'commission': 583.6282, 'registerTime': 1562656505770}, {'extId': '314634038268792832', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358056534016', 'isOpened': True, 'userRealName': '朱凌2', 'userPhone': '8618500000002', 'remark': None, 'orderCount': 5, 'sum': 124992.0, 'commission': 2043.52, 'registerTime': 1564311600000}, {'extId': '314641212374126592', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358966697984', 'isOpened': True, 'userRealName': '朱凌8', 'userPhone': '8618500000008', 'remark': None, 'orderCount': 6, 'sum': 48608.0, 'commission': 882.88, 'registerTime': 1564311600000}]}
2019-08-22 13:06:20,456 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:66] - INFO: p
2019-08-22 13:06:20,457 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:67] - INFO: jfaaa-27 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:20,711 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:51] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:21,591 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'withdrawalInProcess': 2000.0, 'commissionThisMonth': 3222.34, 'commissionCanWithdraw': 1010.02, 'commissionAmount': 3510.02, 'threeMonthCommissionAmount': 3381.06}}
2019-08-22 13:06:21,623 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:64] - INFO: p
2019-08-22 13:06:21,623 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:65] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:21,936 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:54] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:22,241 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 0, 'totalCount': 15, 'data': [{'cashFlowId': '321467174575280128', 'cashFlowCode': '10321467173782556673', 'cashFlowModifyTime': 1565755357216, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565755357216, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '319286923468345344', 'cashFlowCode': '10319286922272968705', 'cashFlowModifyTime': 1565235544845, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565235544845, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '318586140540145665', 'cashFlowCode': '318586140540145664', 'cashFlowModifyTime': 1565068465175, 'cashFlowChange': 34.8282, 'cashFlowCreateTime': 1565068465175, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318586139361546240', 'cashFlowCode': '318586139294437376', 'cashFlowModifyTime': 1565068464894, 'cashFlowChange': 99.0, 'cashFlowCreateTime': 1565068464894, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318267838651568128', 'cashFlowCode': '10318267838349578241', 'cashFlowModifyTime': 1564995880709, 'cashFlowChange': 1818.0, 'cashFlowCreateTime': 1564992576091, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'FAIL'}, {'cashFlowId': '318226505253654528', 'cashFlowCode': '318226505249460224', 'cashFlowModifyTime': 1564982721441, 'cashFlowChange': 198.4, 'cashFlowCreateTime': 1564982721441, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223730142744577', 'cashFlowCode': '318223730142744576', 'cashFlowModifyTime': 1564982059803, 'cashFlowChange': 396.8, 'cashFlowCreateTime': 1564982059803, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223729530376193', 'cashFlowCode': '318223729530376192', 'cashFlowModifyTime': 1564982059657, 'cashFlowChange': 99.2, 'cashFlowCreateTime': 1564982059657, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728968339456', 'cashFlowCode': '318223728964145152', 'cashFlowModifyTime': 1564982059523, 'cashFlowChange': 297.6, 'cashFlowCreateTime': 1564982059523, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728385331200', 'cashFlowCode': '318223728381136896', 'cashFlowModifyTime': 1564982059384, 'cashFlowChange': 992.0, 'cashFlowCreateTime': 1564982059384, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727768768512', 'cashFlowCode': '318223727764574208', 'cashFlowModifyTime': 1564982059237, 'cashFlowChange': 595.2, 'cashFlowCreateTime': 1564982059237, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727177371648', 'cashFlowCode': '318223727173177344', 'cashFlowModifyTime': 1564982059096, 'cashFlowChange': 59.52, 'cashFlowCreateTime': 1564982059096, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223726296567808', 'cashFlowCode': '318223726292373504', 'cashFlowModifyTime': 1564982058886, 'cashFlowChange': 352.8, 'cashFlowCreateTime': 1564982058886, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223725428346880', 'cashFlowCode': '318223725386403840', 'cashFlowModifyTime': 1564982058679, 'cashFlowChange': 97.0, 'cashFlowCreateTime': 1564982058679, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318232371440783360', 'cashFlowCode': '318232371436589056', 'cashFlowModifyTime': 1564984120049, 'cashFlowChange': 158.72, 'cashFlowCreateTime': 1562312307000, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}]}
2019-08-22 13:06:22,276 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:67] - INFO: p
2019-08-22 13:06:22,277 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:68] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:22,409 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:41] - INFO: jfaaa-33 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:22,773 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'advertId': '317169917545811968', 'advertTitle': '特朗普', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318187816989364224', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/320806474303541248'}, {'advertId': '318199175500140544', 'advertTitle': '测试', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318199173793058816', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/318916048978055168'}]}
2019-08-22 13:06:22,809 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:54] - INFO: p
2019-08-22 13:06:22,809 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:55] - INFO: jfaaa-33 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:23,056 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:41] - INFO: jfaaa-35 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:23,689 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140758249472', 'msgText': '您已成功从订单号为318586140540145664的订单中结算佣金$34.83,如有疑问,请咨询客服。', 'msgTime': 1565068465227, 'customerId': None, 'cashFlowId': '318586140540145665'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140133298176', 'msgText': '您已成功从订单号为318586139294437376的订单中结算佣金$99.00,如有疑问,请咨询客服。', 'msgTime': 1565068465078, 'customerId': None, 'cashFlowId': '318586139361546240'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318281699400224768', 'msgText': '您的提现金额为$1818.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564995880751, 'customerId': None, 'cashFlowId': '318267838651568128'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318274014818734080', 'msgText': '您已成功从订单号为318274014340583424的订单中结算佣金$79.36,如有疑问,请咨询客服。', 'msgTime': 1564994048604, 'customerId': None, 'cashFlowId': '318274014399303680'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318256610344570880', 'msgText': '您的提现金额为$300.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564989899054, 'customerId': None, 'cashFlowId': '318256425153466368'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318251651939045376', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564988716878, 'customerId': None, 'cashFlowId': '318251498666594304'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318232371772133376', 'msgText': '您已成功从订单号为318232371436589056的订单中结算佣金$158.72,如有疑问,请咨询客服。', 'msgTime': 1564984120128, 'customerId': None, 'cashFlowId': '318232371440783360'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226506050572288', 'msgText': '您已成功从订单号为318226505824079872的订单中结算佣金$49.60,如有疑问,请咨询客服。', 'msgTime': 1564982721631, 'customerId': None, 'cashFlowId': '318226505824079873'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226505463369728', 'msgText': '您已成功从订单号为318226505249460224的订单中结算佣金$198.40,如有疑问,请咨询客服。', 'msgTime': 1564982721491, 'customerId': None, 'cashFlowId': '318226505253654528'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223731237457920', 'msgText': '您已成功从订单号为318223730142744576的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564982060064, 'customerId': None, 'cashFlowId': '318223730142744577'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729752674304', 'msgText': '您已成功从订单号为318223729530376192的订单中结算佣金$99.20,如有疑问,请咨询客服。', 'msgTime': 1564982059710, 'customerId': None, 'cashFlowId': '318223729530376193'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729173860352', 'msgText': '您已成功从订单号为318223728964145152的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564982059572, 'customerId': None, 'cashFlowId': '318223728968339456'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223728595046400', 'msgText': '您已成功从订单号为318223728381136896的订单中结算佣金$992.00,如有疑问,请咨询客服。', 'msgTime': 1564982059434, 'customerId': None, 'cashFlowId': '318223728385331200'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727974289408', 'msgText': '您已成功从订单号为318223727764574208的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564982059286, 'customerId': None, 'cashFlowId': '318223727768768512'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727403864064', 'msgText': '您已成功从订单号为318223727173177344的订单中结算佣金$59.52,如有疑问,请咨询客服。', 'msgTime': 1564982059149, 'customerId': None, 'cashFlowId': '318223727177371648'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223726757941248', 'msgText': '您已成功从订单号为318223726292373504的订单中结算佣金$352.80,如有疑问,请咨询客服。', 'msgTime': 1564982058996, 'customerId': None, 'cashFlowId': '318223726296567808'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223725797445632', 'msgText': '您已成功从订单号为318223725386403840的订单中结算佣金$97.00,如有疑问,请咨询客服。', 'msgTime': 1564982058767, 'customerId': None, 'cashFlowId': '318223725428346880'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187904553848833', 'msgText': '您的提现金额为$280.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973518317, 'customerId': None, 'cashFlowId': '318187797632651264'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187684310945792', 'msgText': '您的提现金额为$100.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973465807, 'customerId': None, 'cashFlowId': '318185642695725056'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318186843734675456', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564973265398, 'customerId': None, 'cashFlowId': '318186696388775936'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317234223746519040', 'msgText': '您已成功从订单号为317234223666827264的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564746143094, 'customerId': None, 'cashFlowId': '317234223666827265'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317220476906770432', 'msgText': '您已成功从订单号为317220476764164096的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564742865592, 'customerId': None, 'cashFlowId': '317220476764164097'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317215380542197760', 'msgText': '您已成功从订单号为317215380370231296的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564741650524, 'customerId': None, 'cashFlowId': '317215380378619904'}]}
2019-08-22 13:06:23,820 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:54] - INFO: p
2019-08-22 13:06:23,821 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:55] - INFO: jfaaa-35 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:23,931 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:45] - INFO: jfaaa-37 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:24,139 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:50] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-22 13:06:24,187 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:58] - INFO: p
2019-08-22 13:06:24,187 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:59] - INFO: jfaaa-37 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-22 13:06:28,586 - E:\JFApro\jfaappapi\util\send_mail.py[line:47] - INFO: send email successful
2019-08-22 13:06:28,586 - E:/JFApro/jfaappapi/run_all_case.py[line:40] - INFO: test is over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:45:56,610 - E:/JFApro/jfaappapi/run_all_case.py[line:30] - INFO: test is opening!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:08,550 - E:/JFApro/jfaappapi/run_all_case.py[line:19] - INFO: <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc01.TestsendVerificationCode testMethod=testsendVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc02.TestcheckVerificationCode testMethod=testcheckVerificationCode>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc04.TestgetManagerInfo testMethod=testgetManagerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc05.Testauthentication testMethod=testauthentication>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc06.TestchangeBankCardInfo testMethod=testchangeBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc07.TestcheckBankPassword testMethod=testcheckBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc08.TestcheckIdCard testMethod=testcheckIdCard>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc09.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc10.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc11.TestgetManagerStatisticInfo testMethod=testgetManagerStatisticInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc12.Testlogin testMethod=testlogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc13.TestrefreshToken testMethod=testrefreshToken>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc14.TestresetBankPassword testMethod=testresetBankPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc15.TestresetPassword testMethod=testresetPassword>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc16.TestsetBankCardInfo testMethod=testsetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc17.TestsmsCodeLogin testMethod=testsmsCodeLogin>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc18.TestupdateNickName testMethod=testupdateNickName>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc19.TestgetFundInfo testMethod=testgetFundInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc20.TestgetFundInfoNavHisList testMethod=testgetFundInfoNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc21.TestgetFundNavHisList testMethod=testgetFundNavHisList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc22.TestgetProductList testMethod=testgetProductList>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc23.TestgetCustomerInfo testMethod=testgetCustomerInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc24.TesteditCustomerRemark testMethod=testeditCustomerRemark>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc26.TestgetCustomerOrders testMethod=testgetCustomerOrders>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc27.TestgetCustomers testMethod=testgetCustomers>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc28.TestgetAssets testMethod=testgetAssets>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc29.TestgetCashFlows testMethod=testgetCashFlows>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc33.TestgetBankCardInfo testMethod=testgetBankCardInfo>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc35.TestgetMessages testMethod=testgetMessages>]>]>, <unittest.suite.TestSuite tests=[<unittest.suite.TestSuite tests=[<test_jfa_tc37.TestsetAllMessagesIsRead testMethod=testsetAllMessagesIsRead>]>]>]>
2019-08-26 17:46:08,553 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:43] - INFO: jfaaa-1 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:09,491 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:48] - INFO: {'errCode': 3001, 'errMsg': '用户已存在', 'timestamp': '2019-08-26T09:46:10.492Z', 'success': False}
2019-08-26 17:46:09,860 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:56] - INFO: p
2019-08-26 17:46:09,860 - E:\JFApro\jfaappapi\case\test_jfa_tc01.py[line:57] - INFO: jfaaa-1 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:10,869 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:47] - INFO: jfaaa-2 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:10,987 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:52] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:11,024 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:60] - INFO: p
2019-08-26 17:46:11,025 - E:\JFApro\jfaappapi\case\test_jfa_tc02.py[line:61] - INFO: jfaaa-2 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:11,964 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:42] - INFO: jfaaa-4 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:12,357 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:48] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-26 17:46:12,394 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:56] - INFO: p
2019-08-26 17:46:12,394 - E:\JFApro\jfaappapi\case\test_jfa_tc04.py[line:57] - INFO: jfaaa-4 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:13,165 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:48] - INFO: jfaaa-5 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:14,899 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:53] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiLmnLHlh4wiLCJleHAiOjE1NjY4MTMwNzV9.xWLFBF-p8pYMB-P1J5OvhJfIzYAvJvjF1amzYIHf73j1NvevN1pS_x1xh8yK7CXB'}}
2019-08-26 17:46:14,930 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:61] - INFO: p
2019-08-26 17:46:14,931 - E:\JFApro\jfaappapi\case\test_jfa_tc05.py[line:62] - INFO: jfaaa-5 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:15,757 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:57] - INFO: jfaaa-6 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:17,924 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:62] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:17,973 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:70] - INFO: p
2019-08-26 17:46:17,974 - E:\JFApro\jfaappapi\case\test_jfa_tc06.py[line:71] - INFO: jfaaa-6 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:18,535 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:51] - INFO: jfaaa-7 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:19,381 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY2ODEzMDgwfQ.Q_lFLwA0Ubxbr_QgaY1zh2y5_ecfs_Pm8iVW3-ThBVdKYUo06iMPgvZe6D1wnRNjxlG-nYXt7PaglfowjQOCCg'}}
2019-08-26 17:46:19,413 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:64] - INFO: p
2019-08-26 17:46:19,413 - E:\JFApro\jfaappapi\case\test_jfa_tc07.py[line:65] - INFO: jfaaa-7 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:20,070 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:49] - INFO: jfaaa-8 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:20,415 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiIzMTAxMTUxOTg0MDcxMDE5NTQiLCJleHAiOjE1NjY4MTMwODF9.rS-vsMvQz9WEnwMkph6dJpC39bnl8irbAgrP4_DfjEH56e0cKKpz3j1R0vKXOMJ5'}}
2019-08-26 17:46:20,484 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:62] - INFO: p
2019-08-26 17:46:20,484 - E:\JFApro\jfaappapi\case\test_jfa_tc08.py[line:63] - INFO: jfaaa-8 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:21,589 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:54] - INFO: jfaaa-9 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:22,489 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:22,535 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:67] - INFO: p
2019-08-26 17:46:22,535 - E:\JFApro\jfaappapi\case\test_jfa_tc09.py[line:68] - INFO: jfaaa-9 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:23,175 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:41] - INFO: jfaaa-10 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:23,504 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankCardNum': '8887', 'bankName': '中国建设银行'}}
2019-08-26 17:46:23,540 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:54] - INFO: p
2019-08-26 17:46:23,540 - E:\JFApro\jfaappapi\case\test_jfa_tc10.py[line:55] - INFO: jfaaa-10 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,085 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:41] - INFO: jfaaa-11 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,282 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'customersNum': 6, 'notOrderedCustomerNum': 0, 'nonOpenCustomersNum': 3, 'orderCount': 15, 'totalAmount': 212581.41}}
2019-08-26 17:46:24,321 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:54] - INFO: p
2019-08-26 17:46:24,322 - E:\JFApro\jfaappapi\case\test_jfa_tc11.py[line:55] - INFO: jfaaa-11 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,322 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:49] - INFO: jfaaa-12 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,478 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-26 17:46:24,515 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:62] - INFO: p
2019-08-26 17:46:24,516 - E:\JFApro\jfaappapi\case\test_jfa_tc12.py[line:63] - INFO: jfaaa-12 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,721 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:49] - INFO: jfaaa-13 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:24,862 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:54] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'token': 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIzMTcxNjc0OTc0MDMwNDM4NDAsMTU2NjgxMjc4NTg2OSIsImV4cCI6MTU2OTQwNDc4NX0.nKf6r_0Xl899tFup_Z4tvfnfg26ovxJY97jddPi7n74'}}
2019-08-26 17:46:24,898 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:62] - INFO: p
2019-08-26 17:46:24,899 - E:\JFApro\jfaappapi\case\test_jfa_tc13.py[line:63] - INFO: jfaaa-13 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:25,273 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:54] - INFO: jfaaa-14 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:25,502 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:25,538 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:67] - INFO: p
2019-08-26 17:46:25,538 - E:\JFApro\jfaappapi\case\test_jfa_tc14.py[line:68] - INFO: jfaaa-14 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:25,989 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:54] - INFO: jfaaa-15 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:26,248 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:26,295 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:67] - INFO: p
2019-08-26 17:46:26,296 - E:\JFApro\jfaappapi\case\test_jfa_tc15.py[line:68] - INFO: jfaaa-15 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:26,701 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:59] - INFO: jfaaa-16 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:26,927 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:64] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:26,966 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:72] - INFO: p
2019-08-26 17:46:26,967 - E:\JFApro\jfaappapi\case\test_jfa_tc16.py[line:73] - INFO: jfaaa-16 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:27,365 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:54] - INFO: jfaaa-17 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:27,556 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'lcsId': '317167497403043840', 'mobile': '18021047680', 'realName': '朱凌', 'nickName': '333', 'idCardNum': '310115198407101954', 'isRealName': True, 'inviteCode': 'L1JKTU', 'inviteUrl': 'L1JKTU'}}
2019-08-26 17:46:27,588 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:67] - INFO: p
2019-08-26 17:46:27,588 - E:\JFApro\jfaappapi\case\test_jfa_tc17.py[line:68] - INFO: jfaaa-17 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:27,878 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:51] - INFO: jfaaa-18 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:28,071 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:28,107 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:64] - INFO: p
2019-08-26 17:46:28,108 - E:\JFApro\jfaappapi\case\test_jfa_tc18.py[line:65] - INFO: jfaaa-18 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:28,243 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:41] - INFO: jfaaa-19 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:29,103 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'fundId': '298708666109005821', 'isinCode': 'LU0055631609', 'cnFullName': '贝莱德全球基金 - 世界黄金基金 A2 累积', 'enFullName': 'BlackRock Global Funds - World Gold Fund (USD) A2', 'riskLevel': '高', 'fundType': '股票型', 'fundManager': 'Evy Hambro', 'currencyType': 'USD', 'fundCompany': {'fundCompanyId': '317155668673040384', 'fundCompanyName': '贝莱德', 'fundCompanyLogo': '', 'fundCompanyUrl': ''}, 'fundFiles': [{'fundFileName': '基金简报', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/factsheetHKBRL005.pdf'}, {'fundFileName': '产品资料概要', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/kfsHKBRL005.pdf'}, {'fundFileName': '基金说明书', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/prospectusHKBRL005.pdf'}, {'fundFileName': '半年度/年度报告', 'fundFileUrl': 'https://fund-files.oss-cn-shanghai.aliyuncs.com/reportsHKBRL005.pdf'}], 'fundAchievements': {'navDate': '2019-08-22T16:00:00Z', 'netLatestUnit': '33.37', 'dayChg': -0.03, 'nearlyOneMonth': 1.27, 'sinceYear': 33.59, 'nearlyOneYear': 44.84, 'nearlyThreeYear': -14.46, 'nearlyFiveYear': 3.7, 'yearOne': -17.58, 'yearTwo': 2.68, 'yearThree': 50.92, 'yearFour': -21.88, 'yearFive': -5.19}, 'multiMediaFile': None, 'highestRate': 1.0, 'commissionCategoryId': '317159353314578432'}}
2019-08-26 17:46:29,134 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:54] - INFO: p
2019-08-26 17:46:29,134 - E:\JFApro\jfaappapi\case\test_jfa_tc19.py[line:55] - INFO: jfaaa-19 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:29,253 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:41] - INFO: jfaaa-20 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:29,601 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}, {'navDate': '2019-07-28T16:00:00Z', 'netValueUnit': '32.2100'}]}
2019-08-26 17:46:29,633 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:54] - INFO: p
2019-08-26 17:46:29,633 - E:\JFApro\jfaappapi\case\test_jfa_tc20.py[line:55] - INFO: jfaaa-20 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:29,768 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:41] - INFO: jfaaa-21 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:30,089 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 302, 'totalCount': 6040, 'data': [{'navDate': '2019-08-22T16:00:00Z', 'netValueUnit': '33.3700'}, {'navDate': '2019-08-21T16:00:00Z', 'netValueUnit': '33.3800'}, {'navDate': '2019-08-20T16:00:00Z', 'netValueUnit': '33.4100'}, {'navDate': '2019-08-19T16:00:00Z', 'netValueUnit': '33.0200'}, {'navDate': '2019-08-18T16:00:00Z', 'netValueUnit': '32.6400'}, {'navDate': '2019-08-15T16:00:00Z', 'netValueUnit': '33.6000'}, {'navDate': '2019-08-13T16:00:00Z', 'netValueUnit': '33.7000'}, {'navDate': '2019-08-12T16:00:00Z', 'netValueUnit': '33.2400'}, {'navDate': '2019-08-11T16:00:00Z', 'netValueUnit': '34.5200'}, {'navDate': '2019-08-08T16:00:00Z', 'netValueUnit': '34.4600'}, {'navDate': '2019-08-07T16:00:00Z', 'netValueUnit': '34.2100'}, {'navDate': '2019-08-06T16:00:00Z', 'netValueUnit': '34.7000'}, {'navDate': '2019-08-05T16:00:00Z', 'netValueUnit': '33.1600'}, {'navDate': '2019-08-04T16:00:00Z', 'netValueUnit': '32.7300'}, {'navDate': '2019-08-01T16:00:00Z', 'netValueUnit': '32.2900'}, {'navDate': '2019-07-31T16:00:00Z', 'netValueUnit': '30.8300'}, {'navDate': '2019-07-30T16:00:00Z', 'netValueUnit': '32.2800'}, {'navDate': '2019-07-29T16:00:00Z', 'netValueUnit': '32.6800'}, {'navDate': '2019-07-28T16:00:00Z', 'netValueUnit': '32.2100'}, {'navDate': '2019-07-25T16:00:00Z', 'netValueUnit': '32.2100'}]}
2019-08-26 17:46:30,125 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:54] - INFO: p
2019-08-26 17:46:30,126 - E:\JFApro\jfaappapi\case\test_jfa_tc21.py[line:55] - INFO: jfaaa-21 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:30,470 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:54] - INFO: jfaaa-22 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:30,831 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 0, 'pageSize': 20, 'totalPages': 1, 'totalCount': 4, 'data': [{'fundId': '298708666109005847', 'cnFundName': '富兰克林入息基金 A 月派息', 'enFundName': 'Franklin Income Fund (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '11.95', 'recommendText': '444', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005845', 'cnFundName': '富兰克林美国机会基金 A 累积', 'enFundName': 'Franklin U.S. Opportunities Fund (USD) A (Acc)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '49.38', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}, {'fundId': '298708666109005865', 'cnFundName': 'PIMCO 收益基金 E 月派息', 'enFundName': 'PIMCO Income Fund (USD) E MDis', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '13.55', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179609305157632', 'highestRate': 1.5}, {'fundId': '298708666109005851', 'cnFundName': '富兰克林浮动息率基金 A 月派息', 'enFundName': 'Franklin Floating Rate Fund plc (USD) A (Mdis)', 'bgImage': '', 'profitType': 'NEARLY_THREE_YEAR', 'profitRate': '5.23', 'recommendText': 'name1', 'companyLogo': 'http://csptest.thiztech.com/api/v1/resource/meta/322179912356204544', 'highestRate': 1.5}]}
2019-08-26 17:46:30,865 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:67] - INFO: p
2019-08-26 17:46:30,865 - E:\JFApro\jfaappapi\case\test_jfa_tc22.py[line:68] - INFO: jfaaa-22 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:31,440 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:53] - INFO: jfaaa-23 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:31,793 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'extId': '318597686657945600', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '319733770133573632', 'isOpened': False, 'userRealName': '朱凌', 'userPhone': '8618500000088', 'remark': '1112', 'orderCount': 0, 'sum': 0.0, 'commission': 0.0, 'registerTime': 1565071217984}}
2019-08-26 17:46:31,825 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:66] - INFO: p
2019-08-26 17:46:31,825 - E:\JFApro\jfaappapi\case\test_jfa_tc23.py[line:67] - INFO: jfaaa-23 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:32,123 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:54] - INFO: jfaaa-24 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:32,324 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:32,383 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:67] - INFO: p
2019-08-26 17:46:32,383 - E:\JFApro\jfaappapi\case\test_jfa_tc24.py[line:68] - INFO: jfaaa-24 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:32,686 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:53] - INFO: jfaaa-26 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:32,896 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': []}
2019-08-26 17:46:32,931 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:66] - INFO: p
2019-08-26 17:46:32,931 - E:\JFApro\jfaappapi\case\test_jfa_tc26.py[line:67] - INFO: jfaaa-26 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:33,223 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:53] - INFO: jfaaa-27 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:33,479 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:58] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'extId': '308469649551527936', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215354583650304', 'isOpened': True, 'userRealName': '朱凌871', 'userPhone': '8618700000001', 'remark': None, 'orderCount': 4, 'sum': 38981.41, 'commission': 583.6282, 'registerTime': 1562656505770}, {'extId': '314634038268792832', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358056534016', 'isOpened': True, 'userRealName': '朱凌2', 'userPhone': '8618500000002', 'remark': None, 'orderCount': 5, 'sum': 124992.0, 'commission': 2043.52, 'registerTime': 1564311600000}, {'extId': '314641212374126592', 'riskAppetite': 'VERYAGGRESSIVE', 'customerId': '317215358966697984', 'isOpened': True, 'userRealName': '朱凌8', 'userPhone': '8618500000008', 'remark': None, 'orderCount': 6, 'sum': 48608.0, 'commission': 882.88, 'registerTime': 1564311600000}]}
2019-08-26 17:46:33,525 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:66] - INFO: p
2019-08-26 17:46:33,525 - E:\JFApro\jfaappapi\case\test_jfa_tc27.py[line:67] - INFO: jfaaa-27 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:33,820 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:51] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:34,120 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:56] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': {'withdrawalInProcess': 2000.0, 'commissionThisMonth': 3222.34, 'commissionCanWithdraw': 1010.02, 'commissionAmount': 3510.02, 'threeMonthCommissionAmount': 3381.06}}
2019-08-26 17:46:34,153 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:64] - INFO: p
2019-08-26 17:46:34,154 - E:\JFApro\jfaappapi\case\test_jfa_tc28.py[line:65] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:34,458 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:54] - INFO: jfaaa-28 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:34,947 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:59] - INFO: {'errCode': 0, 'errMsg': 'OK', 'pageNumber': 1, 'pageSize': 20, 'totalPages': 0, 'totalCount': 15, 'data': [{'cashFlowId': '321467174575280128', 'cashFlowCode': '10321467173782556673', 'cashFlowModifyTime': 1565755357216, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565755357216, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '319286923468345344', 'cashFlowCode': '10319286922272968705', 'cashFlowModifyTime': 1565235544845, 'cashFlowChange': 1000.0, 'cashFlowCreateTime': 1565235544845, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'UNHANDLE'}, {'cashFlowId': '318586140540145665', 'cashFlowCode': '318586140540145664', 'cashFlowModifyTime': 1565068465175, 'cashFlowChange': 34.8282, 'cashFlowCreateTime': 1565068465175, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318586139361546240', 'cashFlowCode': '318586139294437376', 'cashFlowModifyTime': 1565068464894, 'cashFlowChange': 99.0, 'cashFlowCreateTime': 1565068464894, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318267838651568128', 'cashFlowCode': '10318267838349578241', 'cashFlowModifyTime': 1564995880709, 'cashFlowChange': 1818.0, 'cashFlowCreateTime': 1564992576091, 'cashFlowType': 'WITHDRAWAL', 'cashFlowStatus': 'FAIL'}, {'cashFlowId': '318226505253654528', 'cashFlowCode': '318226505249460224', 'cashFlowModifyTime': 1564982721441, 'cashFlowChange': 198.4, 'cashFlowCreateTime': 1564982721441, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223730142744577', 'cashFlowCode': '318223730142744576', 'cashFlowModifyTime': 1564982059803, 'cashFlowChange': 396.8, 'cashFlowCreateTime': 1564982059803, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223729530376193', 'cashFlowCode': '318223729530376192', 'cashFlowModifyTime': 1564982059657, 'cashFlowChange': 99.2, 'cashFlowCreateTime': 1564982059657, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728968339456', 'cashFlowCode': '318223728964145152', 'cashFlowModifyTime': 1564982059523, 'cashFlowChange': 297.6, 'cashFlowCreateTime': 1564982059523, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223728385331200', 'cashFlowCode': '318223728381136896', 'cashFlowModifyTime': 1564982059384, 'cashFlowChange': 992.0, 'cashFlowCreateTime': 1564982059384, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727768768512', 'cashFlowCode': '318223727764574208', 'cashFlowModifyTime': 1564982059237, 'cashFlowChange': 595.2, 'cashFlowCreateTime': 1564982059237, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223727177371648', 'cashFlowCode': '318223727173177344', 'cashFlowModifyTime': 1564982059096, 'cashFlowChange': 59.52, 'cashFlowCreateTime': 1564982059096, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223726296567808', 'cashFlowCode': '318223726292373504', 'cashFlowModifyTime': 1564982058886, 'cashFlowChange': 352.8, 'cashFlowCreateTime': 1564982058886, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318223725428346880', 'cashFlowCode': '318223725386403840', 'cashFlowModifyTime': 1564982058679, 'cashFlowChange': 97.0, 'cashFlowCreateTime': 1564982058679, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}, {'cashFlowId': '318232371440783360', 'cashFlowCode': '318232371436589056', 'cashFlowModifyTime': 1564984120049, 'cashFlowChange': 158.72, 'cashFlowCreateTime': 1562312307000, 'cashFlowType': 'COMMISSION', 'cashFlowStatus': 'SUCCESS'}]}
2019-08-26 17:46:34,987 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:67] - INFO: p
2019-08-26 17:46:34,987 - E:\JFApro\jfaappapi\case\test_jfa_tc29.py[line:68] - INFO: jfaaa-28 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:35,105 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:41] - INFO: jfaaa-33 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:35,351 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'advertId': '317169917545811968', 'advertTitle': '特朗普', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318187816989364224', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/320806474303541248'}, {'advertId': '318199175500140544', 'advertTitle': '测试', 'cover': 'http://csptest.thiztech.com/api/v1/resource/meta/318199173793058816', 'url': 'http://csptest.thiztech.com/api/v1/resource/meta/318916048978055168'}]}
2019-08-26 17:46:35,385 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:54] - INFO: p
2019-08-26 17:46:35,385 - E:\JFApro\jfaappapi\case\test_jfa_tc33.py[line:55] - INFO: jfaaa-33 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:35,536 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:41] - INFO: jfaaa-35 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:36,614 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:46] - INFO: {'errCode': 0, 'errMsg': 'OK', 'data': [{'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140758249472', 'msgText': '您已成功从订单号为318586140540145664的订单中结算佣金$34.83,如有疑问,请咨询客服。', 'msgTime': 1565068465227, 'customerId': None, 'cashFlowId': '318586140540145665'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318586140133298176', 'msgText': '您已成功从订单号为318586139294437376的订单中结算佣金$99.00,如有疑问,请咨询客服。', 'msgTime': 1565068465078, 'customerId': None, 'cashFlowId': '318586139361546240'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318281699400224768', 'msgText': '您的提现金额为$1818.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564995880751, 'customerId': None, 'cashFlowId': '318267838651568128'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318274014818734080', 'msgText': '您已成功从订单号为318274014340583424的订单中结算佣金$79.36,如有疑问,请咨询客服。', 'msgTime': 1564994048604, 'customerId': None, 'cashFlowId': '318274014399303680'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318256610344570880', 'msgText': '您的提现金额为$300.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564989899054, 'customerId': None, 'cashFlowId': '318256425153466368'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318251651939045376', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564988716878, 'customerId': None, 'cashFlowId': '318251498666594304'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318232371772133376', 'msgText': '您已成功从订单号为318232371436589056的订单中结算佣金$158.72,如有疑问,请咨询客服。', 'msgTime': 1564984120128, 'customerId': None, 'cashFlowId': '318232371440783360'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226506050572288', 'msgText': '您已成功从订单号为318226505824079872的订单中结算佣金$49.60,如有疑问,请咨询客服。', 'msgTime': 1564982721631, 'customerId': None, 'cashFlowId': '318226505824079873'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318226505463369728', 'msgText': '您已成功从订单号为318226505249460224的订单中结算佣金$198.40,如有疑问,请咨询客服。', 'msgTime': 1564982721491, 'customerId': None, 'cashFlowId': '318226505253654528'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223731237457920', 'msgText': '您已成功从订单号为318223730142744576的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564982060064, 'customerId': None, 'cashFlowId': '318223730142744577'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729752674304', 'msgText': '您已成功从订单号为318223729530376192的订单中结算佣金$99.20,如有疑问,请咨询客服。', 'msgTime': 1564982059710, 'customerId': None, 'cashFlowId': '318223729530376193'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223729173860352', 'msgText': '您已成功从订单号为318223728964145152的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564982059572, 'customerId': None, 'cashFlowId': '318223728968339456'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223728595046400', 'msgText': '您已成功从订单号为318223728381136896的订单中结算佣金$992.00,如有疑问,请咨询客服。', 'msgTime': 1564982059434, 'customerId': None, 'cashFlowId': '318223728385331200'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727974289408', 'msgText': '您已成功从订单号为318223727764574208的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564982059286, 'customerId': None, 'cashFlowId': '318223727768768512'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223727403864064', 'msgText': '您已成功从订单号为318223727173177344的订单中结算佣金$59.52,如有疑问,请咨询客服。', 'msgTime': 1564982059149, 'customerId': None, 'cashFlowId': '318223727177371648'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223726757941248', 'msgText': '您已成功从订单号为318223726292373504的订单中结算佣金$352.80,如有疑问,请咨询客服。', 'msgTime': 1564982058996, 'customerId': None, 'cashFlowId': '318223726296567808'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '318223725797445632', 'msgText': '您已成功从订单号为318223725386403840的订单中结算佣金$97.00,如有疑问,请咨询客服。', 'msgTime': 1564982058767, 'customerId': None, 'cashFlowId': '318223725428346880'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187904553848833', 'msgText': '您的提现金额为$280.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973518317, 'customerId': None, 'cashFlowId': '318187797632651264'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_FAIL', 'hasRead': True, 'msgTitle': '提现失败', 'msgId': '318187684310945792', 'msgText': '您的提现金额为$100.00000000的申请处理失败,点击查看具体原因。', 'msgTime': 1564973465807, 'customerId': None, 'cashFlowId': '318185642695725056'}, {'msgType': 'CAPITAL', 'msgMinType': 'CASH_OUT_SUCCESS', 'hasRead': True, 'msgTitle': '提现成功', 'msgId': '318186843734675456', 'msgText': '您的提现金额为$200.00的申请已受理成功。请注意您的提现银行卡查收情况,不同银行到账时间不同,请知悉。', 'msgTime': 1564973265398, 'customerId': None, 'cashFlowId': '318186696388775936'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317234223746519040', 'msgText': '您已成功从订单号为317234223666827264的订单中结算佣金$595.20,如有疑问,请咨询客服。', 'msgTime': 1564746143094, 'customerId': None, 'cashFlowId': '317234223666827265'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317220476906770432', 'msgText': '您已成功从订单号为317220476764164096的订单中结算佣金$297.60,如有疑问,请咨询客服。', 'msgTime': 1564742865592, 'customerId': None, 'cashFlowId': '317220476764164097'}, {'msgType': 'CAPITAL', 'msgMinType': 'COMMISSION_SUCCESS', 'hasRead': True, 'msgTitle': '结佣成功', 'msgId': '317215380542197760', 'msgText': '您已成功从订单号为317215380370231296的订单中结算佣金$396.80,如有疑问,请咨询客服。', 'msgTime': 1564741650524, 'customerId': None, 'cashFlowId': '317215380378619904'}]}
2019-08-26 17:46:36,761 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:54] - INFO: p
2019-08-26 17:46:36,761 - E:\JFApro\jfaappapi\case\test_jfa_tc35.py[line:55] - INFO: jfaaa-35 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:36,916 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:45] - INFO: jfaaa-37 is open!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:37,109 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:50] - INFO: {'errCode': 0, 'errMsg': 'OK'}
2019-08-26 17:46:37,199 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:58] - INFO: p
2019-08-26 17:46:37,200 - E:\JFApro\jfaappapi\case\test_jfa_tc37.py[line:59] - INFO: jfaaa-37 over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-08-26 17:46:42,043 - E:\JFApro\jfaappapi\util\send_mail.py[line:47] - INFO: send email successful
2019-08-26 17:46:42,044 - E:/JFApro/jfaappapi/run_all_case.py[line:40] - INFO: test is over!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...@@ -181,8 +181,8 @@ ...@@ -181,8 +181,8 @@
<div class='page-header'> <div class='page-header'>
<h1>自动化测试报告,测试结果如下:</h1> <h1>自动化测试报告,测试结果如下:</h1>
<p class='attribute'><strong>开始时间:</strong> 2019-08-15 10:06:18</p> <p class='attribute'><strong>开始时间:</strong> 2019-08-29 18:16:11</p>
<p class='attribute'><strong>运行时长:</strong> 0:00:32.875881</p> <p class='attribute'><strong>运行时长:</strong> 0:00:12.891737</p>
<p class='attribute'><strong>状态:</strong> 通过 30</p> <p class='attribute'><strong>状态:</strong> 通过 30</p>
</div> </div>
...@@ -286,7 +286,7 @@ ...@@ -286,7 +286,7 @@
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt5.1')" > <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt5.1')" >
通过</a> 通过</a>
<div id='div_pt5.1' class="popup_window"> <div id='div_pt5.1' class="popup_window">
<pre>pt5.1: {'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY1ODM1MDkzfQ.DPt8235MlXbqm0n4cuQUWDWYEwvTlHuTyO837dykdFhILcbcfWLDowf_6wpyHxwQSgsVnkdy1-YSzQlw4ZxuHg'}, 'errCode': 0} <pre>pt5.1: {'errCode': 0, 'errMsg': 'OK', 'data': {'bankToken': 'eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZDRjZjRhOTM2MDI0YWY3MjlkZGY3ZTBjYzUzNjYyMjE3OTk5MWNhIiwiZXhwIjoxNTY3MDc0MDc2fQ.M6n9iXrzsX7fZTrZEbJSKR-Wglmuawa-xemO23Axr3jdtXP2tKDHoi2xveYmdVBqR5-fOttgjQrTu7CGAkik8Q'}}
</pre> </pre>
</div> </div>
<!--css div popup end--> <!--css div popup end-->
......
...@@ -29,7 +29,7 @@ class Logger(object): ...@@ -29,7 +29,7 @@ class Logger(object):
self.logger.addHandler(sh) #把对象加到logger里 self.logger.addHandler(sh) #把对象加到logger里
self.logger.addHandler(th) self.logger.addHandler(th)
log = Logger('E:\\JFTpro\\jft_autotest\\log\\all.log',level='info') log = Logger('E:\\JFApro\\jfaappapi\\log\\all.log',level='info')
# log = Logger('./log/all.log',level='info') # log = Logger('./log/all.log',level='info')
# if __name__ == '__main__': # if __name__ == '__main__':
# log = Logger('all.log',level='debug') # log = Logger('all.log',level='debug')
......
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