网站首页 > 技术文章 正文
背景
最近公司大量新员工入职,需要批量创建 Crowd 用户、设置密码、分配应用组等机械性重复工作(主要还是懒~),故把这个加餐任务分配给刚来的测试同学去研究。
一是:让他了解下 Postman 的数据驱动,RESTful api 的相关基础知识;二是:考察下新员工独立完成任务的能力;三是我比较懒~。
Crowd api 添加用户
Bash
curl -u "test:password" -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d "{\"name\" : \"test.user\", \"display-name\" : \"Test User\", \"active\" : true, \"first-name\" : \"Test\", \"email\" : \"test.user@ourdomain.com\", \"last-name\" : \"User\", \"password\" : {\"value\" : \"mypassword\"} }" http://localhost:8095/crowd/rest/usermanagement/1/user
注意:此处 -u 的参数为 Crowd 中应用(Application)的用户名和密码,Crowd 的管理员是不能添加用户。
Postman 数据驱动
- curl 命令方式导入到 Postman,测试添加单个用户
- 数据驱动批量添加用户
curl 命令方式导入 Postman
Postman 支持使用 curl 命令方式导入。
打开左上角“Import”,选择 “Paste Raw Text”方式,输入curl 命令即可。
权限认证方式:Basic Auth。
导入的 Headers 参数。
导入的 Body 内容。
Postman 数据驱动批量添加用户
创建 Collections,添加 api
设置全局变量 password。
body 字段参数化。
Bash
{
"name": "{{name}}",
"display-name": "{{display-name}}",
"active": true,
"first-name": "{{display-name}}",
"email": "{{email}}",
"last-name": "{{display-name}}",
"password": {
"value": "{{password}}"
}
}
准备 csv 数据文件
# crowdUsers.csv
name,display-name,email
daodaotest1,叨叨软件测试1,daodaotest1@test.com
daodaotest2,叨叨软件测试2,daodaotest2@test.com
执行
选择 csv 数据文件。
预览参数。
查看执行结果。
crowd 添加成功。
猜你喜欢
- 2025-03-30 学会IDEA REST Client后,postman就可以丢掉了...
- 2025-03-30 学习在Postman中发送POST请求的最佳实践
- 2025-03-30 IDEA中居然藏着一个跟Postman一样好用的插件
- 2025-03-30 《5分钟Java》实现excel文件上传并解析
- 2025-03-30 不会接口测试?用Postman轻松入门(八下)——请求结果断言方法
- 2025-03-30 「Postman」测试(Tests)脚本编写和断言详解
- 2025-03-30 Spring Boot对接twilio发送邮件信息
- 2025-03-30 RPA028-调用飞书API发送文件(.netのc#)
- 2025-03-30 使用Postman快速上手ONES OpenAPI
- 2025-03-30 Spring Cloud实战 | 第十一篇 :Spring Cloud + Nacos整合Seata 1.4.1
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)