Giter Site home page Giter Site logo

mockservice's Introduction

MockService

The lightweight service for creating a standalone mock, written in pure Kotlin with Netty container.

The service allows getting config file dynamically for runtime generating controllers to handle outside requests.

Default endpoint for uploading file is localhost:8079/config. The path could be changed in application.yml file.

Example of yaml config file:

endpoints:
  - request:
      uri: "/hello/{}"
      method: POST
    response:
      successCode: 201
      headers:
        Content-Type: "application/json;charset=utf-8"
        Connection: "keep-alive"
        Custom-Header: "custom-header"
      body: >
        [{
          "id": 1,
          "type": "cat",
          "age": 23,
          "color": "red",
          "name": "Barsic"
        }]
      delay: 2s
  - request:
      uri: "/hello/{}/cat"
      method: POST
    response:
      errorCode: 403
      errorMessage: Forbidden
      delay: 100ms

The service also supports similar config file in json format.

With {} you can specify path variables in URI. Moreover, you can specify return body, headers or status code.

Body is presented as json format or as simple string. If body won't be specified, so server return 200 OK answer.

The service supplies to return custom success codes (by default is 200) or error code with description message.

You have opportunity to set delay in seconds or milliseconds before response will send back.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.