Mock HTTP calls without coding. Designed specially for testing and testers.
- Installation :
$npm install stubmatic -g
- Set up repo :
$stubmatic init [repo-name]
- Start server :
$stubmatic [-d <repo-name>]
- Help :
$stubmatic --help
Important links : Video Tutorial, Wiki, NPM, Demo application, issues, changelogs
- Mock HTTP(s) calls. (Hence can mock REST/SOAP web services)
- Inspect HTTP calls from CLI or log them for more detail.
- No code. Designed specially for testing and testers.
- Mock messagepack or Nimn (निम्न) response easily. Write in JSON parse in desirable format.
- Support SSL certificates.
- Optional configuration
- Dynamic response
- Use Regular Expressions to match a request, capture some part of the request, to decide response file at runtime, to change contents of response at runtime etc.
- Use Expressions (functions and markers) to display dynamic dates, random number etc.
- Devide your response into multiple files (called dumps) for readability, reusability, and consistency.
- Create a response skeleton with DB sets and fill data as per matched request.
- Delay response for fixed or random time.
- Send response as a stream (downloadable file)
- Compress response automatically.
- Route requests to other server using proxy.
- Memory and CPU efficient
- Ready to be used in performance environment
- And much more like short notations, multiple mapping files, file strategy etc.
To install stubmatic, you need to install nodejs and npm first. It is recommanded to be on latest version of both. npm is bundeled with nodejs. Now follow above commands to install stubmatic and to set up a repo.
Stubmatic works on request response mappings specified in a yaml file. Response contents can be read from body or file attribute of a maping.
- request:
url: /stubs/(admin|staff|customer|security)/([0-9]+)/2
response:
body: >
multiple line response
another line
When a request reaches to stubmatic server, it matches the request against all mappings. Whichever mapping matches first(top to bottom), will be used to serve the response. A complete response can be built with multiple files. It can also have some placeholder to show dynamic data, like date, or some random number or some part from request itself. Stubmatic first process and build complete response then respond back to any HTTP(s) request.
Using regular expression, single mapping can be used to match multiple requests and serve response from different files.
- request:
method: POST
url: /soap-simulator/services/ServiceName
post: actionName[\s\S]*mobile.([0-9]+)
response:
headers:
content-type: text/xml
strategy: "first-found"
files: ["stubs/<% post.1 %>/response.xml","stubs/ServiceName/actionName/default.xml"]
- request:
method: GET
url: /rest-simulator/services/ServiceName/actionName/([0-9]+)
response:
headers:
content-type: text/xml
strategy: "first-found"
files: ["stubs/<% url.1 %>/response.xml","stubs/ServiceName/actionName/default.xml"]
- BigBit standard :
- Single text encoding to replace UTF-8, UTF-16, UTF-32 and more with less memory.
- Single Numeric datatype alternative of integer, float, double, long, decimal and more without precision loss.
- Cytorus: Now be specific and flexible while running E2E tests.
- Run tests only for a particular User Story
- Run tests for a route or from a route
- Customizable reporting
- Central dashboard for better monitoring
- imglab : Web based tool to label images for object. So that they can be used to train dlib or other object detectors. You can integrate 3rd party libraries for fast labeling.
This project exists thanks to all the people who contribute. [Contribute].
Thank you to all our backers! 🙏 [Become a backer]
[Become a sponsor] Support this project by becoming a sponsor. Your logo will show up here with a link to your website. Please also share your detail so we can thankyou on SocialMedia.
- Clean & quick way to create simulators
- Stubby4j to Stubmatic
- How to setup stubmatic project and stub SOAP webservices
- How to delay response and stub RESTful webservices
- How to route response to other servers
- How to make dynamic response with data sets, and expressions
- How to break a response file into multiple files using dumps