1.0.1 • Published 5 years ago

@dblk/recorder v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Recorder (CICP Plugin)

This CICP plugin allows you to record and replay query stored by the plugin.
It should be used with configLoader or equivalent.

How to use it

Add it to CICP

Install it to your plugins folder, then do not forget to add it while launching the cli: cicp -o configLoader,recorder.

Require this plugin from another

Simply add the following object in your package.json:

"plugin": {
  "consumes": [
    "recorder",
  ],
}

Default values for the configLoader

Here is the general settings for the configLoader plugin.:

{
    "recorder": {
        "speed": "fastest"
    }
}

The possible values for speed are:

  • lower - Two times lower than the original speed
  • lowest - Four times lower than the original speed
  • fast - Two times faster than the original speed
  • fastest - ASAP
  • anything else (Original response time)

Matching requests

This plugin has a basic built-in matcher for request. However, you can make your own and register it by using the function registerMatcher(matcher) given an object which must has the following functions:

matcher.findRequest

Match a request with a set of recorded response

Arguments

  • recordset (String) - Name of the recordset
  • request (http.Request) - The http.request amend with urlParse to split url informations.

Example

this.externalMatcher.findRequest(recordset, request);

matcher.addRequest

Add a new request inside a recorset

Arguments

  • recordset (String) - Name of the recordset
  • request (http.Request) - The http.request amend with urlParse to split url informations.

Example

this.externalMatcher.addRequest(recordset, request);

matcher.getRequests

Get the list of all recorded requests of a recordset

Arguments

  • recordset (String) - Name of the recordset

Example

this.externalMatcher.getRequests(recordset);

matcher.setRequests

Set the list of all recorded requests to do research on

Arguments

  • recordset (String) - Name of the recordset
  • requests (http.Request) - The http.request amend with urlParse to split url informations.

Example

this.externalMatcher.setRequests(recordset, requests);

Additional Informations

During the replay phase, if a request is not found, a response will be send with status code 404.

This module use DEBUG so feel free to add DEBUG=cicp:recorder to see debug logs.

License

Copyright (c) 2019 Rémy Boulanouar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:



The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.



THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1.0.1

5 years ago

1.0.0

5 years ago