Skip to content

Commit db52173

Browse files
authored
chore: adding test-consumer documentation (#25)
1 parent 09465d9 commit db52173

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
title: '@metrics/test-consumer'
3+
---
4+
5+
This module is a memory based consumer for metrics streams to be used in tests. The purpose of the module is to make writing tests and asserting metrics easier.
6+
It takes a metric stream generated by @metrics/client and makes the collected metrics available as an array.
7+
8+
⚠️ You should _never_ use this in produciton code, however it is very convenient when writing tests which produce metrics using [`@metrics/client`](https://metrics-js.github.io/reference/client/)
9+
10+
## Examples usage
11+
12+
Below is a sample test showing how this could be used:
13+
14+
```js
15+
const test = require('tap');
16+
const Metrics = require('@metrics/client');
17+
const TestConsumer = require('@metrics/test-consumer');
18+
19+
test('some test case', async () => {
20+
const metrics = new Metrics();
21+
// This sets up the metrics client to be used
22+
const testHelper = new TestConsumer(metrics)
23+
// .start sets up the stream
24+
testHelper.start();
25+
26+
// Code which triggers a count metric
27+
28+
testHelper.stop(); // .stop ends the streams and now we can get the result.
29+
30+
testHelper.getResults().then(result => {
31+
t.equal(result.name, "some_counter"); // Validate our metrics was collected
32+
res.labels.forEach((metricLabel) => {
33+
if (metricLabel.name === "value") {
34+
t.equal(metricLabel.value, 2); // We expect two counts to have happened
35+
}
36+
});
37+
});
38+
});
39+
```
40+
41+
## API
42+
43+
- [constructor](#constructormetrics)
44+
- [start](#start)
45+
- [stop](#stop)
46+
- [getResults](#async-getresults)
47+
- [createMetrics](#createmetrics)
48+
49+
### constructor(metrics)
50+
51+
Takes in the [@metrics/client](https://metrics-js.github.io/reference/client/) to collect metrics from.
52+
53+
### .start()
54+
55+
Creates a readable stream which listens for metrics produced by the client.
56+
57+
### .stop()
58+
59+
Ends the stream setup for the client, returns a Promise which resolves to an array with the metrics consumed.
60+
61+
### async .getResults()
62+
63+
Returns a promise which resolves to an array containing collected `[@metrics/metrics](https://metrics-js.github.io/reference/metric/)` objects.
64+
65+
### createMetrics
66+
67+
Utility object with functions for creating mock `Metric` objects, has the functions `.timer` and `.counter`.

0 commit comments

Comments
 (0)