반응형
크롬에서도 Local 에서도 쉽게 restful API 확인을 위한 툴
개발자는 아니고 Test Engineer 수준에서 가볍게 Postman과 관련된 내용을 업데이트 하고자 함
1. 다운로드
이건 "잘알딱깔센"
2. API 만들기
이것도 "잘알딱깔센"
3. 사용하고자 하는 기능
Pre-request Script
Test
4. 일단 맛보기
Pre-request Script
1 2 3 4 5 | //random code create var random1 = Math.floor(Math.random() * 100) + 1; var random2 = Math.floor(Math.random() * 100) + 1; var transactionID = "QA_2020_"+ random1+"_"+random2; pm.environment.set("testCode", testCode); | cs |
Test
1
2
3
4
5
6
7
8
9
10
11
12
|
pm.test("Status code is 200", function() {
pm.response.to.have.status(200);
});
pm.test("Response json value mobileId & uniqueId Code Check", function () {
pm.expect(pm.response.text()).to.include("mobileId");
pm.expect(pm.response.text()).to.include("uniqueId");
});
pm.test("Card encrtption Check", function () {
pm.expect(pm.response.text()).to.include("****-****-****-");
});
|
cs |
반응형
'QA Engineering > Server API Test' 카테고리의 다른 글
POSTMAN pm.variables.get, pm.environment.get 차이 (0) | 2023.08.08 |
---|---|
for 문으로 주기적으로 로그 압축 하기 (0) | 2022.01.27 |
Oracle SQL Developer ERD viewing (0) | 2017.12.28 |
mac으로 ssh 접속 (0) | 2017.11.19 |
Secure CRT pub setting (0) | 2016.04.12 |