unmock-server
v0.3.18
Published
[![npm](https://img.shields.io/npm/v/unmock-server.svg)](https://www.npmjs.com/package/unmock-server) [![CircleCI](https://circleci.com/gh/Meeshkan/unmock-js.svg?style=svg)](https://circleci.com/gh/Meeshkan/unmock-js) [![codecov](https://codecov.io/gh/unm
Downloads
4
Readme
unmock-server
Unmock server mocks APIs using unmock-js.
Installation
npm
The npm package ships with unmock-server
CLI that you can add either in project or globally.
Install in project
npm install unmock-server
# OR
yarn add unmock-server
Invoke CLI via npx
or yarn
:
npx unmock-server --help
# OR
yarn unmock-server --help
Install globally
npm install -g unmock-server
# OR
yarn global add unmock-server
In this case, you can invoke unmock-server
without npx
or yarn
:
unmock-server --help
Install from source
- Clone unmock-js repository.
- Install dependencies:
npm i
- Build TypeScript:
npm run compile
- Invoke the CLI:
node packages/unmock-server/bin/run
Usage
Start unmock-server
with start
command:
$ unmock-server start
You may need to add npx
or yarn
before the command depending on your installation method.
The start
command starts
- admin server at port 8888 (override with
UNMOCK_ADMIN_PORT
environment variable) for managing services - proxy server at port 8008 for mocking requests
- mock server at port 8000 (HTTP) and 8443 (HTTPS) for internally handling requests made to the proxy.
Stop unmock-server
with stop
command:
$ unmock-server stop
Using the mock proxy
To use the proxy for mocking requests, you need to:
Define services you want to mock (see below)
Set your HTTP client to use the locally running proxy
curl
: set environment variableshttp_proxy=http://localhost:8008
https_proxy=http://localhost:8008
- Other clients may expect
HTTP_PROXY
andHTTPS_PROXY
environment variables instead
If mocking a server using HTTPS, you need to fetch the certificate served by the mock proxy:
Fetch certificate:
wget https://raw.githubusercontent.com/unmock/unmock-js/dev/packages/unmock-server/certs/ca.pem`
You then need to add the mock server certificate to the list of trusted certificates. For
curl
, set environment variableSSL_CERT_FILE=ca.pem
Example calls with cURL
Request to proxy with HTTP:
$ http_proxy=http://localhost:8008 curl -i http://api.github.com/user/repos
Request to proxy with HTTPS:
$ https_proxy=http://localhost:8008 SSL_CERT_FILE=ca.pem curl -i https://api.github.com/user/repos
Request to mock server without using the proxy:
$ curl -i --header "X-Forwarded-Host: api.github.com" http://localhost:8000/user/repos
Managing services
You can manage services either via the admin REST API or through filesystem.
Using the admin server
Get all services:
$ curl http://localhost:8888/services
Post a new service with name my-service
:
$ curl -X POST http://localhost:8888/services/my-service -H "Content-Type: application/json" --data "@/path/to/openapi.json"
Get a service description for service with name my-service
:
$ curl http://localhost:8888/services/my-service
Using __unmock__
folder
At startup, unmock-server
loads all services from __unmock__
folder. For example, to mock api.github.com
, you need to
- Prepare
__unmock__
folder:mkdir -p __unmock__/githubv3
- Add the GitHub OpenAPI specification to
__unmock__/githubv3
:
wget https://raw.githubusercontent.com/unmock/DefinitelyMocked/master/services/githubv3/openapi.yaml -O __unmock__/githubv3/openapi.yaml
When unmock-server
is started, it loads the GitHub API with name githubv3
. For more detailed instructions, see the Unmock documentation.
Docker
Unmock server can also be used via Docker. See documentation for the unmock/unmock-server Docker image.
Development
Running the CLI
- Compile TypeScript by running
npm run compile
at the root of the monorepo - Invoke ./bin/run or ./bin/run.cmd.
Creating new CA certificate
cd certs/
./openssl-gen.sh