@mysticatea/spy
A spy library for TypeScript.
💿 Installation
Use npm or yarn.
npm install --save-dev @mysticatea/spy
Requirements:
- Node.js 6.0.0 and over.
- TypeScript 3.1 and over (if you use
spy
in TypeScript).
📖 Usage
import { spy } from "@mysticatea/spy"
const func1 = spy()
func1()
console.log(func1.calls.length)
console.log(func1.calls[0])
console.log(func1.returnedCalls.length)
console.log(func1.returnedCalls[0])
console.log(func1.thrownCalls.length)
const func2 = spy((value: number): string => {
if (value < 0) {
throw new Error("oops!")
}
return String(value)
})
const retv2 = func2(777)
try { func2(-1) } catch { }
console.log(retv2)
console.log(func2.calls.length)
console.log(func2.calls[0])
console.log(func2.calls[1])
console.log(func2.returnedCalls.length)
console.log(func2.returnedCalls[0])
console.log(func2.thrownCalls.length)
console.log(func2.thrownCalls[0])
📚 API Reference
s = spy(func?)
Parameters:
Name | Type | Description |
---|
T | * extends (...args: any[]) => any | The type of func . If func is omitted, this is () => void . |
func | T or undefined | Optional behavior of the spy. |
Return value:
Type | Description |
---|
Spy<T> | The created spy function. |
Details:
Create a spy function.
The spy function will record the call information of itself.
You can access the information with calls
property and something like.
See below for spy's properties.
s.calls
The array of call information.
The element of this array has the following properties:
Name | Type | Description |
---|
type | string | The result type of this call. If the behavior of this spy has thrown an error, this is "throw" . Otherwise, this is "return" . |
this | This<T> | The this value of this call. |
arguments | Parameters<T> | The arguments of this call. |
return | ReturnType<T> | The return value of this call. This exists only if type === "return" . |
throw | any | The thrown value of this call. This exists only if type === "throw" . |
s.firstCall
This is equivalent to s.calls[0]
.
s.lastCall
This is equivalent to s.calls[s.calls.length - 1]
.
s.returnedCalls
The array of call information, only the call which returned a value successfully.
This is equivalent to s.calls.filter(c => c.type === "return")
.
s.firstReturnedCall
This is equivalent to s.returnedCalls[0]
.
s.lastReturnedCall
This is equivalent to s.returnedCalls[s.returnedCalls.length - 1]
.
s.thrownCalls
The array of call information, only the call which threw an error.
This is equivalent to s.calls.filter(c => c.type === "throw")
.
s.firstThrownCall
This is equivalent to s.thrownCalls[0]
.
s.lastThrownCall
This is equivalent to s.thrownCalls[s.thrownCalls.length - 1]
.
s.reset()
Clear the s.calls
in order to reuse this spy.
⚠️ Known Issues
TypeScript cannot infer the this
type of methods
const box = {
value: 0,
set(value: number): void {
this.value = value
},
}
const f = spy(box.set)
f.calls[0].this
const f1 = spy<(this: typeof box, value: number) => void>(box.set)
f.calls[0].this
📰 Changelog
🍻 Contributing
Welcome contributing!
Please use GitHub's Issues/PRs.
Development Tools
npm test
runs tests and measures coverage.npm run build
compiles TypeScript source code into dist
directory.npm run clean
removes the temporary files which are created by npm test
and npm run build
.npm run lint
runs ESLint.npm run watch
runs tests with --watch
option.