Skip to content

Commit 6e3011a

Browse files
[ReleaseBranch] Substitute v2-beta: Rework substitution logic (#139)
* add ts-node * create linked list classes * minor refactoring * add root substitute graph * replace context with contextNode * add recorded arguments class * add working returns example * update dependencies * add compile key to ava config * refactor existing interfaces This includes SubstituteBase, SubstituteException, Arguments, Utilities * replace linked list implementations with recorder + node * rework substitute implementation * refactor Arguments.ts * Substitute v2-beta: Tests (#231) * move existing tests to regression folder * add RecordedArguments spec * create Utilities spec * Improve perfomance: implement RecordsSet (#232) * improve proxy creation function * use node contexts to simplify node logic * implement custom records set RecordsSet implements the higher order filter and map methods which get applied when retrieving the iterator. This increases performance as it doesn't create arrays on each .map or .filter -> the iterator yields only the end values with one iteration * Add clear substitute (#233) resolves #46 * implement clearSubstitute * add clearSubstitute spec * 2.0.0-beta.0 * refactor and add recorder related specs (#236) * Update package.json Co-authored-by: Mathias Lykkegaard Lorenzen <[email protected]>
1 parent 52a6965 commit 6e3011a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2431
-2039
lines changed

package-lock.json

+348-243
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fluffy-spoon/substitute",
3-
"version": "1.0.0",
3+
"version": "2.0.0-beta.1",
44
"description": "TypeScript port of NSubstitute, which aims to provide a much more fluent mocking opportunity for strong-typed languages",
55
"license": "MIT",
66
"funding": {
@@ -45,19 +45,20 @@
4545
},
4646
"dependencies": {},
4747
"devDependencies": {
48-
"@ava/typescript": "^1.1.0",
49-
"@types/node": "^16.4.10",
48+
"@ava/typescript": "^2.0.0",
49+
"@types/node": "^12.20.24",
5050
"ava": "^3.15.0",
51-
"typescript": "^4.3.5"
51+
"typescript": "^4.4.3"
5252
},
5353
"ava": {
5454
"typescript": {
5555
"rewritePaths": {
5656
"/": "dist/"
57-
}
57+
},
58+
"compile": false
5859
},
5960
"cache": false,
6061
"failFast": true,
6162
"failWithoutAssertions": true
6263
}
63-
}
64+
}

spec/Arguments.spec.ts

-111
This file was deleted.

spec/ClearSubstitute.spec.ts

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
import test from 'ava'
2+
3+
import { Substitute, SubstituteOf } from '../src'
4+
import { SubstituteBase } from '../src/SubstituteBase'
5+
import { SubstituteNode } from '../src/SubstituteNode'
6+
7+
interface Calculator {
8+
add(a: number, b: number): number
9+
subtract(a: number, b: number): number
10+
divide(a: number, b: number): number
11+
isEnabled: boolean
12+
}
13+
14+
type InstanceReturningSubstitute<T> = SubstituteOf<T> & {
15+
[SubstituteBase.instance]: Substitute
16+
}
17+
18+
test('clears everything on a substitute', t => {
19+
const calculator = Substitute.for<Calculator>() as InstanceReturningSubstitute<Calculator>
20+
calculator.add(1, 1)
21+
calculator.received().add(1, 1)
22+
calculator.clearSubstitute()
23+
24+
t.is(calculator[Substitute.instance].recorder.records.size, 0)
25+
t.is(calculator[Substitute.instance].recorder.indexedRecords.size, 0)
26+
27+
t.throws(() => calculator.received().add(1, 1))
28+
29+
// explicitly using 'all'
30+
calculator.add(1, 1)
31+
calculator.received().add(1, 1)
32+
calculator.clearSubstitute('all')
33+
34+
t.is(calculator[Substitute.instance].recorder.records.size, 0)
35+
t.is(calculator[Substitute.instance].recorder.indexedRecords.size, 0)
36+
37+
t.throws(() => calculator.received().add(1, 1))
38+
})
39+
40+
test('clears received calls on a substitute', t => {
41+
const calculator = Substitute.for<Calculator>() as InstanceReturningSubstitute<Calculator>
42+
calculator.add(1, 1)
43+
calculator.add(1, 1).returns(2)
44+
calculator.clearSubstitute('receivedCalls')
45+
46+
t.is(calculator[Substitute.instance].recorder.records.size, 2)
47+
t.is(calculator[Substitute.instance].recorder.indexedRecords.size, 2)
48+
49+
t.throws(() => calculator.received().add(1, 1))
50+
t.is(calculator.add(1, 1), 2)
51+
})
52+
53+
test('clears return values on a substitute', t => {
54+
const calculator = Substitute.for<Calculator>() as InstanceReturningSubstitute<Calculator>
55+
calculator.add(1, 1)
56+
calculator.add(1, 1).returns(2)
57+
calculator.clearSubstitute('substituteValues')
58+
59+
t.is(calculator[Substitute.instance].recorder.records.size, 2)
60+
t.is(calculator[Substitute.instance].recorder.indexedRecords.size, 2)
61+
62+
t.notThrows(() => calculator.received().add(1, 1))
63+
// @ts-expect-error
64+
t.true(calculator.add(1, 1)[SubstituteBase.instance] instanceof SubstituteNode)
65+
})

spec/RecordedArguments.spec.ts

+138
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
import test from 'ava'
2+
import { inspect } from 'util'
3+
4+
import { Arg } from '../src'
5+
import { RecordedArguments } from '../src/RecordedArguments'
6+
7+
const testObject = { 'foo': 'bar' }
8+
const testArray = ['a', 1, true]
9+
10+
// #90: Infinite recursion in deepEqual https://github.com/ffMathy/FluffySpoon.JavaScript.Testing.Faking/blob/master/spec/issues/90.test.ts
11+
const parent = {} as any
12+
parent.child = parent
13+
const root = {} as any
14+
root.path = { to: { nested: root } }
15+
16+
const testFunc = () => { }
17+
const testSymbol = Symbol()
18+
19+
test('records values and classifies them correctly', t => {
20+
const emptyArguments = RecordedArguments.from([])
21+
t.deepEqual(emptyArguments.value, [])
22+
t.is(emptyArguments.argumentsClass, 'plain')
23+
t.is(emptyArguments.hasNoArguments, false)
24+
25+
const primitivesOnlyArguments = RecordedArguments.from([1, 'Substitute', false, testSymbol, undefined, null, testFunc, {}])
26+
t.deepEqual(primitivesOnlyArguments.value, [1, 'Substitute', false, testSymbol, undefined, null, testFunc, {}])
27+
t.is(primitivesOnlyArguments.argumentsClass, 'plain')
28+
t.is(primitivesOnlyArguments.hasNoArguments, false)
29+
30+
const anyArg = Arg.any('any')
31+
const withSingleArgumentArguments = RecordedArguments.from([1, 'Substitute', false, testSymbol, undefined, null, testFunc, {}, anyArg])
32+
t.deepEqual(withSingleArgumentArguments.value, [1, 'Substitute', false, testSymbol, undefined, null, testFunc, {}, anyArg])
33+
t.is(withSingleArgumentArguments.argumentsClass, 'with-predicate')
34+
t.is(withSingleArgumentArguments.hasNoArguments, false)
35+
36+
const allArg = Arg.all()
37+
const allArgumentArguments = RecordedArguments.from([allArg])
38+
t.deepEqual(allArgumentArguments.value, [allArg])
39+
t.is(allArgumentArguments.argumentsClass, 'wildcard')
40+
t.is(allArgumentArguments.hasNoArguments, false)
41+
})
42+
43+
test('creates a valid instance for no arguments', t => {
44+
const args = RecordedArguments.none()
45+
46+
t.is(args.value, undefined)
47+
t.is(args.argumentsClass, undefined)
48+
t.is(args.hasNoArguments, true)
49+
})
50+
51+
test('sorts correctly objects with RecordedArguments', t => {
52+
const plain1 = RecordedArguments.from([])
53+
const plain2 = RecordedArguments.from([1, 2])
54+
const withPredicate1 = RecordedArguments.from([1, Arg.any()])
55+
const withPredicate2 = RecordedArguments.from([Arg.any()])
56+
const wildcard1 = RecordedArguments.from([Arg.all()])
57+
const wildcard2 = RecordedArguments.from([Arg.all()])
58+
59+
const wrapper = (recordedArguments: RecordedArguments[]) => recordedArguments.map(args => ({ recordedArguments: args }))
60+
const sortedArgs1 = RecordedArguments.sort(wrapper([wildcard1, wildcard2, withPredicate1, withPredicate2, plain1, plain2]))
61+
const sortedArgs2 = RecordedArguments.sort(wrapper([wildcard1, withPredicate1, plain1, withPredicate2, wildcard2, plain2]))
62+
63+
t.deepEqual(sortedArgs1, wrapper([plain1, plain2, withPredicate1, withPredicate2, wildcard1, wildcard2]))
64+
t.deepEqual(sortedArgs2, wrapper([plain1, plain2, withPredicate1, withPredicate2, wildcard1, wildcard2]))
65+
})
66+
67+
test('matches correctly with another RecordedArguments instance when none arguments are recorded', t => {
68+
const args = RecordedArguments.none()
69+
70+
t.true(args.match(args))
71+
t.true(args.match(RecordedArguments.none()))
72+
73+
t.false(args.match(RecordedArguments.from([])))
74+
t.false(RecordedArguments.from([]).match(args))
75+
t.false(args.match(RecordedArguments.from([undefined])))
76+
})
77+
78+
test('matches correctly with another RecordedArguments instance when primitive arguments are recorded', t => {
79+
// single
80+
t.true(RecordedArguments.from([]).match(RecordedArguments.from([])))
81+
t.true(RecordedArguments.from(['Substitute']).match(RecordedArguments.from(['Substitute'])))
82+
t.true(RecordedArguments.from([0]).match(RecordedArguments.from([0])))
83+
t.true(RecordedArguments.from([true]).match(RecordedArguments.from([true])))
84+
t.true(RecordedArguments.from([false]).match(RecordedArguments.from([false])))
85+
t.true(RecordedArguments.from([undefined]).match(RecordedArguments.from([undefined])))
86+
t.true(RecordedArguments.from([null]).match(RecordedArguments.from([null])))
87+
t.true(RecordedArguments.from([Symbol.for('test')]).match(RecordedArguments.from([Symbol.for('test')])))
88+
89+
t.false(RecordedArguments.from(['a']).match(RecordedArguments.from(['b'])))
90+
t.false(RecordedArguments.from([1]).match(RecordedArguments.from([2])))
91+
t.false(RecordedArguments.from([true]).match(RecordedArguments.from([false])))
92+
t.false(RecordedArguments.from([undefined]).match(RecordedArguments.from([null])))
93+
t.false(RecordedArguments.from(['1']).match(RecordedArguments.from([1])))
94+
95+
// multi
96+
t.true(RecordedArguments.from([1, 2, 3]).match(RecordedArguments.from([1, 2, 3])))
97+
98+
t.false(RecordedArguments.from([1, 2, 3]).match(RecordedArguments.from([3, 2, 1])))
99+
t.false(RecordedArguments.from([1, 2, 3]).match(RecordedArguments.from([1, 2, 3, 4])))
100+
t.false(RecordedArguments.from([1, 2, 3, 4]).match(RecordedArguments.from([1, 2, 3])))
101+
})
102+
103+
test('matches correctly with another RecordedArguments instance when object arguments are recorded', t => {
104+
// same reference
105+
t.true(RecordedArguments.from([testObject]).match(RecordedArguments.from([testObject])))
106+
t.true(RecordedArguments.from([testArray]).match(RecordedArguments.from([testArray])))
107+
t.true(RecordedArguments.from([testFunc]).match(RecordedArguments.from([testFunc])))
108+
t.true(RecordedArguments.from([parent]).match(RecordedArguments.from([parent])))
109+
t.true(RecordedArguments.from([root]).match(RecordedArguments.from([root])))
110+
111+
// deep equal
112+
const objectWithSelfReference = { a: 1, b: 2 } as any
113+
objectWithSelfReference.c = objectWithSelfReference
114+
const anotherObjectWithSelfReference = { a: 1, b: 2 } as any
115+
anotherObjectWithSelfReference.c = anotherObjectWithSelfReference
116+
117+
t.true(RecordedArguments.from([{ a: 1 }]).match(RecordedArguments.from([{ a: 1 }])))
118+
t.true(RecordedArguments.from([[]]).match(RecordedArguments.from([[]])))
119+
t.true(RecordedArguments.from([[1, 'a']]).match(RecordedArguments.from([[1, 'a']])))
120+
t.true(RecordedArguments.from([objectWithSelfReference]).match(RecordedArguments.from([anotherObjectWithSelfReference])))
121+
})
122+
123+
test('matches correctly with another RecordedArguments instance when using a wildcard argument', t => {
124+
t.true(RecordedArguments.from([Arg.all()]).match(RecordedArguments.from([1, 2, 3])))
125+
t.true(RecordedArguments.from(['Substitute', 'JS']).match(RecordedArguments.from([Arg.all()])))
126+
})
127+
128+
test('matches correctly with another RecordedArguments instance when using predicate arguments', t => {
129+
t.true(RecordedArguments.from([Arg.any(), Arg.any('number'), Arg.is((x: number) => x === 3), 4]).match(RecordedArguments.from([1, 2, 3, 4])))
130+
t.true(RecordedArguments.from(['Substitute', 'JS']).match(RecordedArguments.from([Arg.is(x => typeof x === 'string'), Arg.any('string')])))
131+
})
132+
133+
test('generates custom text representation', t => {
134+
t.is(inspect(RecordedArguments.none()), '')
135+
t.is(inspect(RecordedArguments.from([])), '()')
136+
t.is(inspect(RecordedArguments.from([undefined])), 'undefined')
137+
t.is(inspect(RecordedArguments.from([undefined, 1])), '(undefined, 1)')
138+
})

0 commit comments

Comments
 (0)