2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Postmanでparameterized testをする

Last updated at Posted at 2021-03-04

モチベーション

Postman でAPIを叩く際に、パラメータやリクエストボディにバリエーションを持たせて複数回実行したい場合があるので、なんとかしたい

この記事でやること

fake REST APIを作成し、それに対してGETを実行する(テストも書く)。
そのさい、.csvファイルでパラメータを複数個設定し、その分だけAPIを叩く。

今回の構成

手順

json-server をインストールする

npm install -g json-server

APIを叩いたときに取得するデータを、.jsonファイルとして作成する

db.json
{
  "posts": [
    { "id": 1, "title": "json-server1", "author": "typicode" },
    { "id": 2, "title": "json-server2", "author": "typicode" },
    { "id": 3, "title": "json-server3", "author": "typicode" },
    { "id": 4, "title": "json-server4", "author": "typicode" },
    { "id": 5, "title": "json-server5", "author": "typicode" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ],
  "profile": { "name": "typicode" }
}

json-serverを起動する

db.jsonが保存されているディレクトリで、以下のコマンドを実行する

json-server --watch db.json

Postmanを起動し、リクエストとテスト、環境変数を書く

環境変数:
env.jpg
リクエストとテスト:
request_test.jpg

test.js
var jsonData = pm.response.json();

pm.test("Status code is 200", function () {
    pm.response.to.have.status(200);
});

pm.test("idの値がリクエスト通りである", function () {
    pm.expect(jsonData.id).to.eql(parseInt(pm.iterationData.get("id")));
});

pm.test("titleの値がリクエスト通りである", function () {
    pm.expect(jsonData.title).to.eql(pm.iterationData.get("title"));
});

pm.test("authorの値がリクエスト通りである", function () {
    pm.expect(jsonData.author).to.eql(pm.iterationData.get("author"));
});

テストデータを記載した.csvファイルを作成する

test-data.csv
id,title,author
1,json-server1,typicode
2,json-server2,typicode
3,json-server3,typicode
4,json-server4,typicode
5,json-server5,typicode

collection runnerで、.csvファイルを読み込む

runner1.jpg
runner2.jpg

APIを叩く

collection runner のRun json-server ボタンをクリックすると実行が始まる
result.jpg
今回は、test-data.csvに5件分のパラメータを設定しているため、リクエストが5回実行される。
そのため、実行結果にIteration 1から5まで表示されていれば成功。
また、それぞれのイテレーションでテストがパスしていればOK。

参考文献

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?