QA Engineering/Server API Test

Postman 시작 하기

일해라폴폴 2020. 12. 16. 21:41
반응형

크롬에서도 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
반응형