AlterPersonInfoAsync.robot 856 B

1234567891011121314151617181920212223
  1. *** Settings ***
  2. Library CustomLibrary
  3. Resource ../../../Utils/HttpClient.robot
  4. Library String
  5. Resource ../../../CommonConfig/Config.robot
  6. *** Variables ***
  7. ${alterPersonInfoAsyncUrl} IUserService
  8. *** Keywords ***
  9. AlterPersonInfoAsyncPost
  10. [Arguments] ${token} ${nickName} ${headImageUrl}
  11. ${param} Create Dictionary
  12. Set To Dictionary ${param} Token ${token}
  13. Set To Dictionary ${param} NickName ${nickName}
  14. Set To Dictionary ${param} HeadImageUrl ${headImageUrl}
  15. ${body} Generate Params AlterPersonInfoAsync ${param}
  16. Log ${body}
  17. Log ---开始断言验证---
  18. ${response} PostRequest ${host} ${alterPersonInfoAsyncUrl} ${body}
  19. ${res} Response Analysis ${response}
  20. Log ${res}
  21. [Return] ${res}