dubonzi / wiremock

A tool for mocking HTTP services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WireMock with GUI

Extends WireMock with a graphical user interface

Key Features

  • Mappings
    • A paginated list or folder view of all mappings
    • Search for mappings
    • Add / Edit / Remove new mappings
    • Add templates directly into mapping (Response Templating, Proxying, etc.)
    • Save / Reset / Remove all mappings
    • Reset all scenarios
    • Separated view improve readability
    • Test mapping
      • Allows to quickly test the mapping by sending http requests.
  • Matched
    • A paginated list of all requests which could be handled by Wiremock
    • Copy cUrl
    • Reset Journal
  • Unmatched
    • A paginated list of all requests which could not be handled by Wiremock
    • Copy cUrl
    • Copy request to clipboard for new mapping creation
    • Copy SOAP to clipboard which understands not matched SOAP requests and help during creation
    • Reset Journal
  • StateMachine (experimental)
    • A paginated list of all mappings which are part of a scenario
    • States are calculated automatically
    • Mappings are represented as links
    • Button on links allows to show mapping details
  • Record/playback of stubs
    • Help to start recording or snapshot
  • Auto refresh when mappings or requests changes

Where do I find the GUI?

The gui is part of the Wiremock admin interface. Therefore, just open the following URL:

<Wiremock baseUrl>/__admin/webapp

Folder view

Since 2.32.0.2

For mappings the folder view is selected by default. It is still possible to switch easier list view as well.

If mappings are stored on a drive in different directories this structure will be extracted and mappings metadata will be updated so that wiremock-gui can show the same folder structure.

You can also manually update mapping metadata to create a structure. This helps if you do not store mappings but load them via http, or if you do not want to place the file in different directories.

metadata structure:

{
     "metadata": {
          "wiremock-gui": {
               "folder": "/some/folder"
          }
     }
}

will create following structure in gui:

alt folder-image

In general functions when editing a mapping you can add the metadata structure via "add Folder".

drag-and-drop

drag-and-drop into folders is currently not supported. It is a more complex topic, as it is currently not possible to sort mappings.

There is a branch on which drag-and-drop is implemented. So if you are interested you can test it there. Due to the mentioned not supported sorting mappings might jump to a different location after reloading.

Test mappings

Since 2.32.0.2

Allows testing of mappings via an HTTP request. This feature tries to extract url and content-type from mapping information. The prefilled data highly depends on how the request in the mapping is defined.

When executing the request the response is shown and also a badge which indicates if the selected mapping answered the request. If this is the case the following is shown:

alt test-match

If another mapping answered the request no match is shown and a link to the mapping which answered the request:

alt test-no-match

Keep in mind this feature will never be as powerful as tools like Postman, Insomnia, etc. So the overall idea is to provide a quick way to test if your mapping is properly setup.

Features except gui

Custom Handlebars helpers

Name Parameter Description
JWT algo Signing algorithm. Check jsonwebtoken for SignatureAlgorithm. E.g. RS256
key Base64 encoded key to use. Kind of key depends on used algo
claims a json string which describes the claims to use. Must not be null in case no payload is defined
payload a json string which contains the content of the jwt. Must not be null in case no claims are defined
header a json string which contains the header to use

Configuration (deprecated)

Wiremock parameters can be passed via the environment variable WIREMOCK_OPTIONS. The values need to be of the following form:

--<param>,--<param>

Deprecated use new Configuration options

Configuration

Wiremock parameters can be passed via environment variables. They need to start with WIREMOCK_ and then the wanted wiremock option. E.g. WIREMOCK_PORT.

Docker Compose

A short example of a compose file

version: "3"
services:
  wiremock:
    image: "holomekc/wiremock-gui:latest"
    container_name: my_wiremock
    ports:
      # This is just an example of a port mapping
      - "8088:8089"
      - "8084:8088"
    environment:
      WIREMOCK_PORT: 8089
      WIREMOCK_HTTPS_PORT: 8088
      WIREMOCK_MAX_REQUEST_JOURNAL: 1000
      WIREMOCK_LOCAL_RESPONSE_TEMPLATING: 
      WIREMOCK_ROOT_DIR: /home/wiremock/storage

Images

Mappings

Separated View

StateMachine

Test

Test Response

About

A tool for mocking HTTP services

License:Apache License 2.0


Languages

Language:Java 90.4%Language:TypeScript 5.4%Language:JavaScript 1.7%Language:HTML 1.4%Language:XSLT 0.5%Language:SCSS 0.4%Language:Scala 0.2%Language:Shell 0.0%Language:Dockerfile 0.0%