반응형
예시로 테스트 해볼 수 있는 사이트들이 꽤 있는데,
https://jsonplaceholder.typicode.com/
여기서 특정 데이터가 가지는 데이터 타입을 테스트해볼 수 있는 테스트 스크립트이다.
위와 같은 body 를 가진 데이터가 있을 때, 타입을 확인하는 테스트 스크립트는 아래와 같다.
데이터 구조에 따라 다르겠지만 참고하길 바람!
// Asserting a value type
const responseJson = pm.response.json();
pm.test("Test data type of the response", () => {
pm.expect(responseJson).to.be.an("array");
pm.expect(responseJson[0].id).to.be.a("number");
pm.expect(responseJson[0].address).to.be.an("object");
pm.expect(responseJson[0].name).to.be.a("string");
});
반응형
'🎪 놀고있네 > Postman' 카테고리의 다른 글
[Postman] Test Script 사용하기 - SKIP 케이스 만들기( pm.test.skip) (0) | 2023.01.03 |
---|---|
[Postman] Test Script 사용하기 - string 확인하기 (1) | 2021.12.18 |
[Postman] Test Script 사용하기 - jsonBody (0) | 2021.09.30 |
[Postman] Pre-request Script, Test Script 차이 (0) | 2021.07.23 |
[Postman] API 테스트해보기 - GET Method (0) | 2021.06.11 |
댓글