2.17.1 • Published 1 year ago

rodo v2.17.1

Weekly downloads
145
License
MIT
Repository
github
Last release
1 year ago

Rodo

Rodo

HTTP mocking service

Rodo can be used to create a real mocked API with an specific port and host.

The main difference with other HTTP mocking libraries like nock is that Rodo creates a real HTTP server instead of overriding the behavior of Node HTTP objects.

Install

npm install rodo

Sample usage

Writing a new mocked endpoint can be as easy as:

// Mocking API
const assert = require('assert');
const rodo = require('rodo');
const mockServer = rodo(8000);
const myCall = mockServer
  .get('/foo')
  .reply({ bar: 'baz' })
  .withHeader('content-type', 'application/json');

// Action
const res = await fetch('http://localhost:8000/foo');
const json = await res.json();

// Assertions
assert.equal(json.bar, 'baz');
assert.equal(myCall.calls.length, 1);

Getting started

The request

To get started, you first need to instantiate the Rodo server doing the following:

const rodo = require('rodo');
const mockServer = rodo(8000);

Lets start building the filtering process for a specific request:

var myRequest = mockServer.request().havingMethod('GET').havingPath('/foo');

You can do the same by doing:

var myRequest = mockServer.get('/foo');

Nice! Now Rodo will intercept every request to GET http://localhost:8000/foo.

The response

Now you want Rodo to return a specific response to that request:

var myResponse = myRequest
  .reply()
  .withHeader('content-type', 'application/json')
  .withStatus(200)
  .withBody({ bar: 'baz' });

You can do the same with:

var myResponse = myRequest
  .reply({ bar: 'baz ' })
  .withHeader('content-type', 'application/json');

Good! you can now check for the requests that were resolved with that response:

myResponse.calls; // [...calls]

You are all set, now Rodo will start intercepting all that requests and will return the response that you specify.

If you now want to clear the results and start again

mockServer.clean();

If you now want to wait for all endpoints to be executed

mockServer.waitForPending();

Want to kill the server?

mockServer.close();

Extra server options

Aside from port and hostname, when instatiating the Rodo server you can optionally pass an object with any of these extra options:

Using multipart

Multipart will be handled using the multiparty library. An example for rodo handling multipart is:

mock
  .post('/foo')
  .havingFields({ bar: 'baz' })
  .havingFiles({
    quux: (file) => file.originalFilename === 'my-file.txt'
  })
  .reply('quux');

defaultResponseDelay

Instead of using .withDelay explicitly on each of your response methods, you can use this option to set a default delay that will be automatically applied to all of them. And if you have a case that needs a different value, you can still use .withDelay to overwrite the default.

API

Constructor

rodo(port?, hostname?, options?)

  • port: The port number of the server to be used by Rodo
  • hostname: Hostname of the server, if needed
  • options: Options for the server, options is an object with props, i.e.: { removeAfterUse: true }
    • removeAfterUse: Remove call mocks after they are called
    • cors: Enables CORS for every request

Request methods

The filtering process for a specific request:

.havingMethod(method)

Specifies the HTTP method, should be one of GET, POST, PUT, DELETE, PATCH.

.havingBody(body)

Specifies the body, can be an object or a string.

.havingFields(fields)

Specifies the fields, should be a key-value object.

.havingFiles(files)

Specifies the files, should be a key-value object, where value should be a function that validates every file configured.

.havingPath(path)

Will intercept a specific path.

.havingQuery(query)

Will filter by query object params.

.havingHeader(name, value)

Will filter by header, only requests with the specified header and value will be intercepted.

Response methods

The response for a specific request:

.withHeader(name, value)

Will return specific header with the response.

.withBody(body)

Will return the specified body with the response.

.withFile(filePath)

Will return the content of the given file.

.withStatus(status)

Will change the status code to the one specified.

.withDelay(ms)

Will delay the response.

Other utilities

.use((req, res) => { })

Will add a middleware to the server.

Example:

mockServer.use(morgan('dev'));

License

MIT

2.17.0

1 year ago

2.17.1

1 year ago

2.16.5

3 years ago

2.16.3

3 years ago

2.16.4

3 years ago

2.16.1

3 years ago

2.16.2

3 years ago

2.16.0

3 years ago

2.15.0

3 years ago

2.15.1

3 years ago

2.14.3

3 years ago

2.14.4

3 years ago

2.14.1

3 years ago

2.14.2

3 years ago

2.14.0

3 years ago

2.13.2

3 years ago

2.13.1

3 years ago

2.13.0

4 years ago

2.12.2

5 years ago

2.12.1

5 years ago

2.12.0

5 years ago

2.11.0

5 years ago

2.10.0

5 years ago

2.9.6

5 years ago

2.9.5

5 years ago

2.9.4

6 years ago

2.9.3

6 years ago

2.9.2

6 years ago

2.9.1

6 years ago

2.9.0

6 years ago

2.8.0

6 years ago

2.7.0

6 years ago

2.6.3

6 years ago

2.6.2

6 years ago

2.6.1

6 years ago

2.6.0

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.2.0

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.0

7 years ago

0.7.1

7 years ago

0.7.0

7 years ago

0.6.0

7 years ago

0.5.3

7 years ago

0.5.2

7 years ago

0.5.0

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago