当前位置:网站首页>Intermediate use tutorial of postman [environment variables, test scripts, assertions, interface documents, etc.]
Intermediate use tutorial of postman [environment variables, test scripts, assertions, interface documents, etc.]
2022-07-06 12:16:00 【A pole】
Postman
First of all, introduce a way to transfer to Chinese version ,GitHub link :https://github.com/hlmd/Postman-cn
Catalog
Preface
This paper is about postman Intermediate use tutorial , Suitable for a certain postman Basic friends read , If not used postman Or similar software , Reading this article may be uncomfortable .
environment variable
New environment variable
Defined global variables and environment variables , It can be referenced in the interface .

When adding an environment, you can click the plus sign in the upper left corner , Then add the public variables you want to use in the environment .
This function is generally used for things like url Prefix This kind of variable will be reused in many places .
The reference method is to put the variable you want to reference between two curly braces , for example :{ {url}}
Like this :
Of course, if you need to switch in multiple environments , There is no need to always modify url Value , You can create several more environment variables , Then switch quickly in the upper right corner :
Switch environment variables

Click the small eye to see what variables are in the environment you are currently using :
Interface Association
In fact, it also uses global variables
Write test script

Pre request script and test script can be written js Code , The difference between them is , The pre request script is run before sending the request , The test script is run after sending .
Get the data in the test script and set it as a global variable , For example, when logging in token:
var result = postman.getResponseHeader("token");
console.log(result);
pm.globals.set("token", result);
The global variables set in this way token Can be used on other interfaces , Use { {token}} To reference variables .
Of course , You can also use regular expressions to get variables , Just use it js Write regular , There is not much here .
Dynamic parameters
Built in dynamic parameters
- { {$timestamp}} Generate timestamp of current time
- { {$randomint}} Generate 0-1000 Between random numbers
- { {$guid}} Generate shorthand GUID character string
Custom dynamic parameters
Pass in the pre request script js Code to set variables , Use when using { {times}} To get variables , It is similar to the test script written in Interface Association .
var times = Date.now();
pm.globals.set("times", times);
How to get global variables :
pm.globals.get("token", result);
global["token"];
global.token;
Assertion
Assertions can be used to determine whether the request is successful , Used for automated testing .
postman Support multiple assertion methods , On the right side of the test script, you can see , Click the blue word to get the code directly :
![[(img-DBU0AJoL-1653794601797)(https://cdn.jsdelivr.net/gh/stick-i/resources@main/img/image-20220514114901534.png)]](/img/8b/a60594a96f270f7c65412bbff7dc15.png)
Here are some common :
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});
pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});
pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});
MokeService
Create an impersonation server . Before the back-end interface is developed , The front end wants to call the interface , You can use it first postman Simulation server functions provided .
![[ Failed to transfer the external chain picture , The origin station may have anti-theft chain mechanism , It is suggested to save the pictures and upload them directly (img-lb0hd92r-1653794601798)(https://cdn.jsdelivr.net/gh/stick-i/resources@main/img/image-20220514150956834.png)]](/img/49/ac0ffbd80354f54978f030bc816271.png)
Create an impersonation server , Just set the request name ,postman It will automatically generate a url For your temporary use , The url It can be accessed directly through the external network , But the returned data is fixed , But it's enough for the front-end to use temporarily .
Write interface documentation
There is a document button on the right side of each interface , Click to edit the description of the current interface :

The tested interface and written documents can directly generate documents , You can see :
![[ Failed to transfer the external chain picture , The origin station may have anti-theft chain mechanism , It is suggested to save the pictures and upload them directly (img-sNHaSKGs-1653794601799)(https://cdn.jsdelivr.net/gh/stick-i/resources@main/img/image-20220514154220912.png)]](/img/9f/5509129f259d4e557d825a3c41df9f.png)
Then there is a Publish button in the upper right corner of the document , Clicking publish seems to generate online documents , But I haven't used .
Save test samples
Send the completed request , You can save the request results , Provide reference for others .

The saved example will be displayed in the left set , Placed under this interface .
Conclusion
The above content only describes the general method of use , You still need to use it yourself , If this article helps you , Welcome to my collection .
边栏推荐
- 关键字 inline (内联函数)用法解析【C语言】
- RT-Thread 线程的时间片轮询调度
- [golang] leetcode intermediate - fill in the next right node pointer of each node & the k-smallest element in the binary search tree
- Minio文件下载问题——inputstream:closed
- ESP learning problem record
- Raspberry pie tap switch button to use
- js题目:输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。
- PT OSC deadlock analysis
- Analysis of charging architecture of glory magic 3pro
- Missing value filling in data analysis (focus on multiple interpolation method, miseforest)
猜你喜欢

js 变量作用域和函数的学习笔记

JS 函数提升和var变量的声明提升

Priority inversion and deadlock

MySQL占用内存过大解决方案

Pat 1097 duplication on a linked list (25 points)

open-mmlab labelImg mmdetection

Symbolic representation of functions in deep learning papers

Basic operations of databases and tables ----- view data tables

Detailed explanation of 5g working principle (explanation & illustration)

MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
随机推荐
ESP8266使用arduino连接阿里云物联网
[esp32 learning-1] construction of Arduino esp32 development environment
Time slice polling scheduling of RT thread threads
列表的使用
MySQL时间、时区、自动填充0的问题
Kconfig Kbuild
关键字 inline (内联函数)用法解析【C语言】
Analysis of charging architecture of glory magic 3pro
JS變量類型以及常用類型轉換
RT-Thread 线程的时间片轮询调度
VIM command line notes
共用体(union)详解【C语言】
Learning notes of JS variable scope and function
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
Fashion-Gen: The Generative Fashion Dataset and Challenge 论文解读&数据集介绍
Mp3mini playback module Arduino < dfrobotdfplayermini H> function explanation
STM32 如何定位导致发生 hard fault 的代码段
Cannot change version of project facet Dynamic Web Module to 2.3.
基於Redis的分布式ID生成器
基于Redis的分布式ID生成器