Socket
Socket
Sign inDemoInstall

@mysticatea/spy

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mysticatea/spy

Just a spy library.


Version published
Weekly downloads
214
decreased by-21.9%
Maintainers
1
Weekly downloads
 
Created
Source

@mysticatea/spy

npm version Downloads/month Build Status Coverage Status Dependency Status

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"

//------------------------------------------------------------------------------
// Create a spy function.
const func1 = spy()

// Call it.
func1()

// Check it.
console.log(func1.calls.length) //→ 1
console.log(func1.calls[0]) //→ { type: "return", this: undefined, arguments: [], return: undefined }
console.log(func1.returnedCalls.length) //→ 1
console.log(func1.returnedCalls[0]) //→ { type: "return", this: undefined, arguments: [], return: undefined }
console.log(func1.thrownCalls.length) //→ 0

//------------------------------------------------------------------------------
// Create a spy function with that behavior.
const func2 = spy((value: number): string => {
    if (value < 0) {
        throw new Error("oops!")
    }
    return String(value)
})
// func2 is `(value: number) => string` and some additional properties.

// Call it.
const retv2 = func2(777)
try { func2(-1) } catch { /*ignore*/ }

// Check it.
console.log(retv2) //→ "777"
console.log(func2.calls.length) //→ 2
console.log(func2.calls[0]) //→ { type: "return", this: undefined, arguments: [1], return: "1" }
console.log(func2.calls[1]) //→ { type: "throw", this: undefined, arguments: [-1], throw: [object Error] }
console.log(func2.returnedCalls.length) //→ 1
console.log(func2.returnedCalls[0]) //→ { type: "return", this: undefined, arguments: [1], return: "1" }
console.log(func2.thrownCalls.length) //→ 1
console.log(func2.thrownCalls[0]) //→ { type: "throw", this: undefined, arguments: [-1], throw: [object Error] }

📚 API Reference

s = spy(func?)

Parameters:

NameTypeDescription
T* extends (...args: any[]) => anyThe type of func. If func is omitted, this is () => void.
funcT or undefinedOptional behavior of the spy.

Return value:

TypeDescription
Spy<T>The created spy function.

The length property of the spy function can be different to func.length.

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:

NameTypeDescription
typestringThe result type of this call. If the behavior of this spy has thrown an error, this is "throw". Otherwise, this is "return".
thisThis<T>The this value of this call.
argumentsParameters<T>The arguments of this call.
returnReturnType<T>The return value of this call. This exists only if type === "return".
throwanyThe 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 //→ inferred to `{}` rather than `typeof box`!

// Workaround:
const f1 = spy<(this: typeof box, value: number) => void>(box.set)
f.calls[0].this //→ correct `typeof box`.

📰 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.

Keywords

FAQs

Package last updated on 04 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc