Skip to content

Latest commit

 

History

History
178 lines (142 loc) · 6.44 KB

Lesson-2-Scripting-And-Collection-Runs.md

File metadata and controls

178 lines (142 loc) · 6.44 KB

TEST SCRIPTS

GET ALL PLAYERS

  • In this section we will learn how the testing of POSTMAN works !!
  • Send the GET request to the given route
GET {{mock_url}}/players
  • You need to add the test script in test tab.
pm.test('Status code is 200', function () {
    pm.response.to.have.status(200); 
});
  • This test will check that is the status code of the response coming from the API is 200 or not if it is not 200 then the test will fail
  • When you will send the request the test will pass becuase the response is 200.
  • To fail the test we need to change the test script. This time we will send the test with status code 400
pm.test('Status code is 400', function () {
    pm.response.to.have.status(400); 
});
  • After sending this test you will get test failed response because the status is 200 and we are asking to test for status 400
  • You have to save this request and open the GET SPECIFIC PLAYER Request
  • Make sure you save the request with code 400

GET SPECIFIC PLAYER

  • In this route you will get data about a single player
  • You need to provide id of player as key.
GET {{mock_url}}/player?id={{player_id}}
  • By seeing this request you are now able to understand that "player_id" will be a variable.
  • When you hover on that varible it shows "unresolved variable"
  • To solve this issue we need to create an Environment for this test
  • To create and environment we will click on the eye icon in top right section
  • Create a new environment from there and add "player_id" as a varible. You can give the environment name of your choice
  • You don't need to write the value as of now we will add that using test script
  • After adding the variable you need to select the environment as an acitve environment with help of drop down near the eye icon
  • After this the issue of unresolved variable will be solved
  • Now we need to setup the value of "player_id" with help of test.
  • Go to Get all players request and in the test all the following lines after our old test to check the status code.
var player_list=pm.response.json().data.players;
pm.environment.set('player_id', player_list[Math.floor(Math.random() * player_list.length)].id);
  • The test of Get all players will look like this now
pm.test('Status code is 400', function () {
    pm.response.to.have.status(400); 
});
var player_list=pm.response.json().data.players;
pm.environment.set('player_id', player_list[Math.floor(Math.random() * player_list.length)].id);
  • After sending request Click save and open Get specific player.
  • In this when you hover on the "player_id" you will be able to see a number assigned to it
  • That is because the test we ran in get all players. In that test enviroment varible with name player id was set to random number between player list.
  • The player id variable got it's value as number because we run the test in get all players request but what if we don't do that. The player id will be having no value. For this condition of player id having no value we will write one pre-request-script which will run before sending the request.
if(!pm.variables.get('player_id')) pm.variables.set('player_id', -1);
  • Write this script in pre-request script section of get specific player request. This will check that is player id variable present and if it is not present then it will set player id variable as -1
  • To check this pre-request script we will change our environment to no environment and send request 2 times.
  • When you check the player id now it is resolved now open console which is present in left bottom. And check the last request it will be like this
GET https://6d338fbc-93bd-456e-85a0-818bd4cd3177.mock.pstmn.io/player?id=-1
  • As we can see inplace of player id -1 was sent it means that our pre request script was successfully executed.
  • Now you need to provide a description to this request.
  • Go to documentation which is on right side below the eye logo click on it and when you hover below the url you will be able to get a pencile icon to edit it you can just write anything into description like "Learning API DEVELOPMENT" and anything related to this request.
  • Click on save and also save the request and open next request which is GET STATS

GET STATS

  • Send the request.
  • First thing we need to do is that we need to add the status check test in all three request of this folder.We have added it to get all player so add it to get specific player and to get stats
pm.test('Status code is 200', function () {
    pm.response.to.have.status(200); 
});
  • Make sure you save each request
  • Now you need to add one more test in Get stats request which will check that does the data contains all the required fileds
pm.test('Stats include all fields', function () {
    var jsonData = pm.response.json().data;
    pm.expect(jsonData).to.have.all.keys('won', 'lost', 'drew');
});
  • Test tab in the GET STATS Request will look like this
pm.test('Status code is 200', function () {
    pm.response.to.have.status(200); 
});
pm.test('Stats include all fields', function () {
    var jsonData = pm.response.json().data;
    pm.expect(jsonData).to.have.all.keys('won', 'lost', 'drew');
});
  • Now we need to run all the tests from this folder so we will use the runner which will help us to run all the test.
  • Click on the three dots after our Collection folder and click on "run collection"
  • Keep only 3 request selected of this folder and remove others
GET ALL PLAYERS
GET SPECIFIC PLAYER
GET STATS
  • Click on RUN
  • This will provide you result of all tests.In this our 1 test will fail as we have added 400 code in our test so don't worry.
  • Now in the test of Get Specific player we need to add one more test
if(pm.response.json().data.played<750) postman.setNextRequest('Get all players');
  • Now run the runner once again. Check that if your failed request only contains failure due to error 400 if this is the case you are good to go on next level. Open the folder Check progress and send the request.