From cde27361a183bc35d4272aef5f645f41af108551 Mon Sep 17 00:00:00 2001 From: MURAKAMI Masahiko Date: Fri, 18 Nov 2022 18:31:49 +0900 Subject: [PATCH] test_runner: add getter and setter to MockTracker This commit allows tests in test runner to use the `getter` and `setter` methods as "syntax sugar" for `MockTracker.method` with the `options.getter` or `options.setter` set to true in the options. Refs: https://github.com/nodejs/node/pull/45326#discussion_r1014727289 --- doc/api/test.md | 19 ++++++ lib/internal/test_runner/mock.js | 58 +++++++++++++++++++ test/parallel/test-runner-mocking.js | 87 ++++++++++++++++++++++++++++ 3 files changed, 164 insertions(+) diff --git a/doc/api/test.md b/doc/api/test.md index 4d5c50f51ff8ec..93f3e5d20d3a90 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -940,6 +940,15 @@ test('mocks a counting function', (t) => { assert.strictEqual(fn(), 6); }); ``` +they are sorted in alphabetical order. +### `mock.getter(object, methodName[, implementation][, options])` + + + +This function is syntax sugar for [`MockTracker.method`][] with `options.getter` +set to `true`. ### `mock.method(object, methodName[, implementation][, options])` @@ -1021,6 +1030,15 @@ This function restores the default behavior of all mocks that were previously created by this `MockTracker`. Unlike `mock.reset()`, `mock.restoreAll()` does not disassociate the mocks from the `MockTracker` instance. +### `mock.setter(object, methodName[, implementation][, options])` + + + +This function is syntax sugar for [`MockTracker.method`][] with `options.setter` +set to `true`. + ## Class: `TapStream`