robot grpc support
Project description
环境要求
- python >= 2.7
- pip
- node >= 10
安装
npm i -g robot-grpc
pip install RobotGrpc
使用示例
robot脚本文件
*** Settings ***
Library RobotGrpc api.myscrm.cn:30051 https://git.myscrm.cn/jiangj01/panther-proto.git f-20180508-project ${accessToken}
*** Test Cases ***
调用grpc方法
${res} = invoke grpc method article_project.ProjectArticleService.GetArticleInfo { "sid": "12323553" }
log ${res}
执行所有用例
run grpc cases ${CURDIR}/GetArticleInfo.js
指定运行特定用例
run grpc cases ${CURDIR}/GetArticleInfo.js 异常
运行场景用例
run grpc cases ${CURDIR}/login.js
GetArticleInfo.js
const id = "article_project.ProjectArticleService.GetArticleInfo";
module.exports = {
id: id,
cases: {
正常: {
id: id,
name: "正常",
desc: 'desc',
request: {
"article_id": 0,
"yk_org_code": "string",
"project_id": 0
},
response: {
"article_id": 0,
"yk_org_code": "string",
"user_id": 0,
"title": "string", // 标题
"thumbnail": "string",
"publish_time": 0,
"record_info": {
"read_num": 0,
"read_person_num": 0,
"forwarded_num": 0,
"forwarded_person_num": 0,
"like_num": 0,
"like_list": [{}]
},
"project_id": 0,
"post_content": "string",
"status": 0
}
},
异常: {
id: id,
name: "异常",
desc: '',
request: {
"article_id": 0,
"yk_org_code": "string",
"project_id": 0
},
response: {
"article_id": 1,
"yk_org_code": "string",
"user_id": 0,
"title": "string", // 标题
"thumbnail": "string",
"publish_time": 0,
"record_info": {
"read_num": 0,
"read_person_num": 0,
"forwarded_num": 0,
"forwarded_person_num": 0,
"like_num": 0,
"like_list": [
{
}
]
},
"project_id": 0,
"post_content": "string",
"status": 0
}
}
}
}
login.js
const GetArticleInfo = require('./GetArticleInfo');
module.exports = {
id: 'login',
cases: [
GetArticleInfo.cases.正常,
GetArticleInfo.cases.异常,
],
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
RobotGrpc-0.0.4.tar.gz
(2.7 kB
view hashes)
Built Distribution
Close
Hashes for RobotGrpc-0.0.4-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12302a49b15d11dcba375d888295f7913c716a57204b7e92aff443633a06ba77 |
|
MD5 | b7cf06899be2092406010a4acc3b0ea3 |
|
BLAKE2b-256 | 7e7a3402240d289e153b6788ce7aec7ec08ce2cbb989a2d701478c965b9e6d4d |