Tutorial: REST Web Services¶
In this section, you will learn how to test a RESTful web service API using Rapise. We will use a demo application called Library Information System, which has a dummy RESTful web service API available for learning purposes. You can access this sample application at http://www.libraryinformationsystem.org, and its RESTful web service API is located at: www.libraryinformationsystem.org/Services/RestService.aspx.
What is REST and what is a RESTful web service?¶
RE**presentational **S**tate **T**ransfer (**REST) is a style of software architecture for distributed systems such as the World Wide Web. REST has emerged as a web API design model that offers greater simplicity over other web service protocols such as SOAP and XML-RPC.
A RESTful web API (also called a RESTful web service) is a web API implemented using HTTP and REST principles. Unlike SOAP-based web services, there is no "official" standard for RESTful web APIs. This is because REST is an architectural style, unlike SOAP, which is a protocol.
Overview¶
Creating a REST web service test in Rapise consists of the following steps:
-
Using the REST query builder to create the various REST web service requests and verify that they return the expected data in the expected format.
-
Parameterizing these REST web service requests into reusable templates and saving them as Rapise learned objects.
-
Generating the JavaScript test script that uses the learned Rapise web service objects.
We will discuss each of these steps in turn.
1. Using the REST Query Builder¶
Create a new test in Rapise called MyRestTest1.sstest
. For methodology, choose Basic: Windows Desktop Application (Windows Native, .NET, Java, WPF etc) and Rapise will create a new blank test project.
A language selection prompt is shown. For Web Services, it is recommended to use JavaScript
.
Once you have created it, choose the Tools > Web Services
menu option to add a new web service definition to your test project:
This will display the Add New Web Service dialog box:
Choose REST
as the type of web service you want to create.
Then, enter the name of the web service you are adding; in this case, enter LibraryInformationSystem.rest
, and then click Create
.
This will add the REST web service definition file to your test project:
On the right-hand side, you will see a new document editor for the .rest
file. This is the REST web service query form. It allows you to send test HTTP requests to the web service under test and inspect the returned output.
If you open the API documentation for our sample application (www.libraryinformationsystem.org/Services/RestService.aspx), you will see that it exposes several operations for retrieving, adding, updating, and deleting books and authors in the system. For this tutorial, we will perform the following operations:
-
Get the special SessionID to identify our test session.
-
Get a list of books in the system.
-
Add a new book to the system and verify that it was added.
According to the documentation, that means we will need to send the following requests:
-
(i) Get a Unique Session¶
-
URL: http://www.libraryinformationsystem.org/Services/RestService.svc/session
-
Method: GET
-
Returns: Unique session ID that is passed to other requests to keep data separate for different demo users
-
-
(ii) Get this list of books¶
-
URL: http://www.libraryinformationsystem.org/Services/RestService.svc/book?session_id={session_id}
-
Method: GET
-
Returns: Array of book objects
-
-
(iii) Add a new book to the list¶
-
URL: http://www.libraryinformationsystem.org/Services/RestService.svc/book?session_id={session_id}
-
Method: POST
-
Body: Pass a populated book object:
{ "Name": "Book Name", "AuthorId": 1, "GenreId": 1 }
-
Returns: Single book object that has its BookId populated
-
The first request will retrieve a unique session ID, which we will need to pass to subsequent requests. This is required by our sample application to prevent interference from testing by different users. To create this request, simply enter the following information into the REST Request form:
-
Name: Get_Session
-
Method: GET
-
URL: http://www.libraryinformationsystem.org/Services/RestService.svc/session
You should now see it populated as illustrated below:
This web service request requires passing credentials via HTTP Basic authentication. To do this, click the Add Credentials
button in the toolbar.
This will display the Add Credentials
dialog box:
Enter librarian as both the username and password and click Add
.
Now click the Send
button, and the request will be sent to the web service:
The Response Header
tab will display the headers returned from the web service. A Status Code of 200 OK indicates that the request succeeded and data was returned. If you click the "Response Body - XML" tab, you will see the XML serialized data returned from the web service:
Since Rapise uses JavaScript as its scripting language, it is usually easier to work with JSON (**J**ava**S**cript **O**bject **N**otation) serialized data rather than XML. In the case of the sample Library Information System web service, you can change the format that it accepts and retrieves by sending two special HTTP headers:
-
Content-Type:
application/json
-
Accept:
application/json
To add these headers to the request, simply click the Add Header
button in the toolbar:
This will display the following dialog box:
Choose the HTTP Header "Accept" from the list and enter application/json
as the value. Repeat this process for the "Content-Type" header. Your request should now be populated as follows:
Now click the Send
button, and the request will be sent to the web service:
The Response Header
tab will display the headers returned from the web service. Note that the returned Content-Type
is listed as application/json
, as requested. If you click the Response Body - JSON
tab, you will see the JSON serialized data returned from the web service:
We have now completed the creation of our first test operation. Click the "Save Requests" button in the Rapise REST Ribbon to ensure your changes are saved.
Now click the Clone request
icon in the REST request explorer on the left-hand side of the screen:
This will display the Clone Request
dialog box. This allows you to create a new REST request that inherits the headers and authentication already defined in your existing request, saving time compared to creating a new REST request from scratch:
Enter the name "Get_Books" in the dialog box and click the Clone
button. This will create a new REST request with this name:
For this request, we need to pass the SessionID in the query string. Rather than hardcoding it in the URL, we can use Rapise's parameterization feature. Click the Add Parameter
button in the toolbar. This will display the Add Request Parameter
dialog box:
Enter the following:
-
Name:
session_id
-
Value:
7404f584-7200-4c37-b813-d5994eb45d12
(you can also copy and paste the value returned by theGet_Session
command)
Click the Add
button, and the parameter will be added to the request. Now change the URL to:
Then position the caret at the end of this URL and click the Insert in URL
button. This will insert the parameter token into the URL at the specified point:
Now click the Send
button, and the request will be sent to the web service. This will return the list of books serialized as a JSON array of objects:
We have now completed the creation of our second test operation. Click the Save Requests
toolbar button to ensure your changes are saved:
Now click the Clone request
icon in the REST request explorer on the right-hand side of the screen. Enter the name "Add_Book" in the dialog box and click the Clone
button. This will create a new REST request with this name:
This operation will add a new book to the system, so it's a POST request. Change the Method type in the dropdown list from "GET" to "POST".
Expand the "Body" field on the form. This is where you can enter an XML or JSON serialized book record that will be added to the system. For now, we'll leave this blank and let Rapise serialize the body for us later when we actually write our test script. You should now have:
We have now completed the creation of our third test operation. Click the Save Requests
toolbar button.
2. Saving the REST Requests as Objects¶
Now that we have created our three REST requests, the next step is to create the Rapise objects that we can use in our JavaScript test scripts. Click the Update Object Tree
button in the toolbar to update the Object Tree with your new requests:
Rapise will now use your REST requests to update the main Object tree. Click the Object
tab of the main Rapise explorer, then click the Refresh
icon. You will then see the "LibraryInformationSystem" heading displayed, with the three saved REST requests listed underneath:
If you expand one of the REST requests (e.g., Add_Book
), you'll see that it has a single operation, "DoExecute", that executes the web service and a series of properties available for inspecting or updating any part of the REST request prior to being sent to the server.
In the next section, we will illustrate how you can write a test script using these learned objects.
a. You can either have Rapise generate test scripts and verification points automatically (described in section 3a), or
b. You can manually write the test scripts using the objects and the Rapise code editor (described in section 3b)
3a. Generating REST Test Scripts¶
Inside the REST request explorer, double-click the Get_Session function to open the request:
Click the Send button to send the sample request. Once it has succeeded, you will see the Record button appear to the right:
Click that button, and the request will be added to the list of recorded steps:
Now open the Get_Book request and follow the same procedure:
-
Click the
Send
button to execute the request. -
Click the
Record
button to record the action as a script step.
This time, we also want to verify the result. You will see a list of books returned in the Verify box underneath the Body section:
If you select the overall array response[14] and click the main Verify
button next to the Record
button, the system will automatically add a verification step that verifies all of the values. To try this, click the Verify
button, which will add a bold verification step to the recorded script:
You will see a script step recorded with a verification test added (it's shown in bold with an asterisk *
):
However, in many cases, you only want to verify certain properties. For example, we might want to just verify that 14 books are returned and that the first book has the correct name.
To do this, right-click the response[14] entry to display the verification content menu:
Choose the option 'Verify Response length=14'. This adds the following step to the recorded script:
Now we want to verify the name of the first book returned. To do that, expand the "0" index entry and then right-click the "Name" property:
Choose the option to Verify Response[0].Name = Hound of the Baskervilles. This will add a verification step for this specific property:
Now, we will add the last two requests—adding a book and verifying that it was added. To do that, open the two requests and click Send
then Record
:
-
Add_Book (POST)
-
Get_Book (GET)
The Add_Book won't actually work at this point because we haven't populated the body, but it will be sufficient to create the test script. For the second instance of Get_Book, do not use the Verify option, as we will manually code the verification to match the book we added.
Once you are done, you should have:
Now click the Create Script
button, and Rapise will generate the following code for you:
function Test()
{
var LibraryInformationSystem_Get_Session=SeS('LibraryInformationSystem_Get_Session');
LibraryInformationSystem_Get_Session.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Session.DoExecute();
var LibraryInformationSystem_Get_Book=SeS('LibraryInformationSystem_Get_Book');
LibraryInformationSystem_Get_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Book.DoExecute();
Tester.AssertEqual('http://www.libraryinformationsystem.org/Services/RestService.svc/book?session_id={session_id} Response Body Text Comparison Result', LibraryInformationSystem_Get_Book.GetResponseBodyText(), "...long response body...");
LibraryInformationSystem_Get_Book.DoVerify('LibraryInformationSystem_Get_Book Response', "length", 14);
LibraryInformationSystem_Get_Book.DoVerify('LibraryInformationSystem_Get_Book Response', "[0].Name", "Hound of the Baskervilles");
var LibraryInformationSystem_Add_Book=SeS('LibraryInformationSystem_Add_Book');
LibraryInformationSystem_Add_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Add_Book.DoExecute();
LibraryInformationSystem_Get_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Book.DoExecute();
}
If you click Play
on this script as written, you will see that the tests to retrieve the books work correctly, but the test for adding a new book fails:
This is as expected, since we haven't yet populated the new book!
To make the template test script more useful, we should make the following changes:
-
Add comments to each of the sections to describe the purpose.
-
Add code to get the session ID from the first call and pass to the subsequent calls.
-
Create a JavaScript object to contain the new book information, and pass that to the Add Book function.
-
Get the new book ID from the result of the Add Book function and use it later on.
-
Change the
Tester.Assert
code to check just specific properties rather than the entire object list.
The complete updated test script looks like the following, with new/changed lines highlighted in yellow:
function Test(params)
{
//First get the session
var LibraryInformationSystem_Get_Session=SeS('LibraryInformationSystem_Get_Session');
LibraryInformationSystem_Get_Session.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Session.DoExecute();
// CODE: READ SESSIONID
var sessionId = LibraryInformationSystem_Get_Session.GetResponseBodyObject();
Tester.Message('Session ID: ' + sessionId);
// /CODE
var LibraryInformationSystem_Get_Book=SeS('LibraryInformationSystem_Get_Book');
LibraryInformationSystem_Get_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Book.DoExecute({ "session_id": sessionId });
// CODE/ ^^^^^^^^^^^^^^^^^^^^^^^
LibraryInformationSystem_Get_Book.DoVerify('LibraryInformationSystem_Get_Book Response', "length", 14);
LibraryInformationSystem_Get_Book.DoVerify('LibraryInformationSystem_Get_Book Response', "[0].Name", "Hound of the Baskervilles");
// CODE: Define new book
//Add a book
var newBook = {
Name: "A Christmas Carol",
AuthorId: 2,
GenreId: 3
};
// /CODE
var LibraryInformationSystem_Add_Book=SeS('LibraryInformationSystem_Add_Book');
LibraryInformationSystem_Add_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
// CODE: Supply newBook as a POST method body
LibraryInformationSystem_Add_Book.SetRequestBodyObject(newBook)
// /CODE
LibraryInformationSystem_Add_Book.DoExecute({ "session_id": sessionId });
// CODE/ ^^^^^^^^^^^^^^^^^^^^^^^
// CODE: Read added book
//Get the ID of the new book
newBook = LibraryInformationSystem_Add_Book.GetResponseBodyObject();
Tester.Message("New Book ID: " + newBook.Id);
// /CODE
LibraryInformationSystem_Get_Book.SetRequestHeaders([{"Name":"Accept","Value":"application/json"},{"Name":"Content-Type":"application/json"}]);
LibraryInformationSystem_Get_Book.DoExecute({ "session_id": sessionId });
// CODE/ ^^^^^^^^^^^^^^^^^^^^^^^
// CODE: Check book count increased
Tester.AssertEqual("Book Count", 15, LibraryInformationSystem_Get_Book.GetResponseBodyObject().length);
// /CODE
}
3b. Writing REST Test Scripts¶
Open the main Main.js
file in the Rapise editor. It will initially consist of a single empty function Test()
:
The first task is to get a new SessionId from the server using the Get_Session operation. To do this, drag the "DoExecute" operation from under the "LibraryInformationSystem_Get_Session" object into the script editor, between the opening and closing braces of the Test()
function:
This will execute the web service and return the SessionId. To access the retrieved value, drag the "GetResponseBodyObject" property to the script editor, under the previous line. Then add the JavaScript code
var sessionId =
to store the value. We will also add a
Tester.Message(sessionId);
line afterwards to write the SessionId value to the test report. This will help ensure you are getting a valid response from the web service. You should now have the following code:
Save this test and click Play
to execute the test. You should now see a report similar to the following:
Now, we need to add the code to get the list of books. To do that, simply drag the "DoExecute" operation from under the "LibraryInformationSystem_Get_Book" object into the script editor. Then, change the (null
) argument to instead provide the session ID as a JavaScript dictionary:
SeS('LibraryInformationSystem_Get_Book').DoExecute({"session_id":sessionId});
To get the list of books as a JavaScript array, drag the "GetResponseBodyObject" property to the script editor, under the previous line. Then, assign the value of this property to a variable such as "books":
var books = SeS('LibraryInformationSystem_Get_Book').GetResponseBodyObject();
Now, we can add code to test that the number of books returned matches the expected value. Type the following code:
Tester.AssertEqual('Book count matches', 14, books.length);
You should now have the following code:
Finally, we need to add the code to add a new book to the system. To do that, simply drag the "DoExecute" operation from under the "Add_Book" object into the script editor. Then, change the (null
) argument to instead provide the session ID as a JavaScript dictionary:
SeS('LibraryInformationSystem_Add_Book').DoExecute({"session_id":sessionId});
To provide the data for a new book, drag the "SetRequestBodyObject" property of the "Add_Book" object to the line above the DoExecute
call and pass a populated JavaScript object:
var newBook = {};
newBook.Name = 'A Christmas Carol';
newBook.AuthorId = 2;
newBook.GenreId = 3;
SeS('LibraryInformationSystem_Add_Book').SetRequestBodyObject(newBook);
Finally, add code to test that our new book was added correctly and the count has increased by one:
SeS('LibraryInformationSystem_Get_Books').DoExecute({"session_id":sessionId});
books = SeS('LibraryInformationSystem_Get_Books').GetResponseBodyObject();
Tester.AssertEqual('Book count matches', 15, books.length);
You should now have the following code:
Save this test and click "Play" to execute the test. You should now see a report similar to the following:
Congratulations! You have just created your first test script that tests a RESTful web service.