WireMock: Mock Your REST APIs
Check out WireMock, and learn about developing and identifying REST APIs to show response and request information.
Join the DZone community and get the full member experience.
Join For FreeAs we are extensively working on “OmniChannel” applications with REST APIs approach, mocking the REST services is essential in our day to day development. As part of our development first we are going to identify the REST APIs to expose and the request and response details. Once we finalize these details the backend development team use to create sample request/response (i.e XML/JSON response) for each API and the same can be consumed by the front end team and the native app development team. Till the backend development team provides the APIs the other teams use to hardcode the sample request and responses to complete the development. The “WireMock” provides an elegant way to mock the REST APIs. The below diagram depicts how “WireMock” fits in our development environment.
We can run WireMock as “Standalone mode” or “deployed into servlet container.” In this article, we will see running WireMock as standalone mode. To setup, WireMock follow the below steps.
Step 1: Download the WireMock standalone jar.
Step 2: Run the standalone jar by giving below command.
java -jar wiremock-1.57-standalone.jar --verbose
There are several command line options available. You can find the same here. If you are not passing –port option by passing the port number, by default it will run on 8080.
After running the WireMock, you will see the below folder structure from where the WireMock standalone app is running.
Now, if you send the request to http://localhost:8080/_admin, then you will empty mappings.
Step 3: Now, we will create mapping files for GET and POST requests. Here I want to simulate GET product and CREATE product requests. Now we will see GET request and response mappings.
Create product.json file under “mappings” folder depicted in step2. Make sure that the body content is properly formatted by keeping the content in a single line and the double quotes are escaped.
{
"request":
{
"urlPattern": "/product/p0001",
"method": "GET"
},
"response":
{
"status": 200,
"headers":
{
"Content-Type" : "application/json"
},
"body": "{ \"_id\" : \"p0001\", \"product_display_name\" : \"Brother - MFC-J4320DW Wireless All-In-One Printer - Black/Gray\", \"category_ids\" : [ \"pcmcat247400050001\" ], \"is_active\" : true, \"on_sale\" : true, \"price\" : { \"list_price\" : 149.99, \"sale_price\" : 123.99 }, \"upc\" : \"012502637677\", \"mpn\" : \"MFC-J4320DW\", \"manufacturer\" : \"Brother\", \"product_short_description\" : \"4-in-1 functionalityBuilt-in wireless LAN (802.11b/g/n)Prints up to 20 ISO ppm in black, up to 18 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)150-sheet tray2.7\\\"\" }"
}
}
Step 4: Now, restart the WireMock and send the request to http://localhost:8080/product/p0001. You will get the product details JSON response.
Step 5: We will see how to create POST request and response mapping.
Place the mapping JSON file under “mappings” folder and restart the server.
The mapping JSON is given below.
{
"request":
{
"urlPattern": "/createProduct",
"method": "POST",
"bodyPatterns" : [{
"equalToJson" : "{ \"product_display_name\" : \"Brother - MFC-J4320DW Wireless All-In-One Printer - Black/Gray - New Product\", \"category_ids\" : [ \"pcmcat247400050001\" ], \"is_active\" : true, \"on_sale\" : true, \"price\" : { \"list_price\" : 149.99, \"sale_price\" : 123.99 }, \"upc\" : \"012502637677\", \"mpn\" : \"MFC-J4320DW\", \"manufacturer\" : \"Brother\", \"product_short_description\" : \"4-in-1 functionalityBuilt-in wireless LAN (802.11b/g/n)Prints up to 20 ISO ppm in black, up to 18 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)150-sheet tray2.7\\\"\" }"
}]
},
"response":
{
"status": 200,
"headers":
{
"Content-Type" : "application/json"
},
"body": "{\"_id\" : \"p0002\", \"product_display_name\" : \"Brother - MFC-J4320DW Wireless All-In-One Printer - Black/Gray - New Product\", \"category_ids\" : [ \"pcmcat247400050001\" ], \"is_active\" : true, \"on_sale\" : true, \"price\" : { \"list_price\" : 149.99, \"sale_price\" : 123.99 }, \"upc\" : \"012502637677\", \"mpn\" : \"MFC-J4320DW\", \"manufacturer\" : \"Brother\", \"product_short_description\" : \"4-in-1 functionalityBuilt-in wireless LAN (802.11b/g/n)Prints up to 20 ISO ppm in black, up to 18 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)150-sheet tray2.7\\\"\" }"
}
}
Step 6: Send the POST request by using any request poster. Here I used “POSTMAN” and send the request by passing request body.
By following above steps you are equipped to mock the services, and WireMock is handy to that. There are similar alternative tools to try.
Published at DZone with permission of Siva Prasad Rao Janapati, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments