-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(jest-mock)!: rework
Mocked*
utility types (#13123)
- Loading branch information
1 parent
1919ef1
commit f9718de
Showing
7 changed files
with
409 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import {expectAssignable, expectError, expectType} from 'tsd-lite'; | ||
import type {MockInstance, Mocked} from 'jest-mock'; | ||
|
||
/// mocks class | ||
|
||
class SomeClass { | ||
constructor(one: string, two?: boolean) {} | ||
|
||
methodA() { | ||
return true; | ||
} | ||
methodB(a: string, b?: number) { | ||
return; | ||
} | ||
} | ||
|
||
const MockSomeClass = SomeClass as Mocked<typeof SomeClass>; | ||
|
||
expectType<[one: string, two?: boolean]>(MockSomeClass.mock.calls[0]); | ||
|
||
expectType<[]>(MockSomeClass.prototype.methodA.mock.calls[0]); | ||
expectType<[a: string, b?: number]>( | ||
MockSomeClass.prototype.methodB.mock.calls[0], | ||
); | ||
|
||
expectError(MockSomeClass.prototype.methodA.mockReturnValue('true')); | ||
expectError( | ||
MockSomeClass.prototype.methodB.mockImplementation( | ||
(a: string, b?: string) => { | ||
return; | ||
}, | ||
), | ||
); | ||
|
||
expectType<[]>(MockSomeClass.mock.instances[0].methodA.mock.calls[0]); | ||
expectType<[a: string, b?: number]>( | ||
MockSomeClass.prototype.methodB.mock.calls[0], | ||
); | ||
|
||
const mockSomeInstance = new MockSomeClass('a') as Mocked< | ||
InstanceType<typeof MockSomeClass> | ||
>; | ||
|
||
expectType<[]>(mockSomeInstance.methodA.mock.calls[0]); | ||
expectType<[a: string, b?: number]>(mockSomeInstance.methodB.mock.calls[0]); | ||
|
||
expectError(mockSomeInstance.methodA.mockReturnValue('true')); | ||
expectError( | ||
mockSomeInstance.methodB.mockImplementation((a: string, b?: string) => { | ||
return; | ||
}), | ||
); | ||
|
||
expectAssignable<SomeClass>(mockSomeInstance); | ||
|
||
// mocks function | ||
|
||
function someFunction(a: string, b?: number): boolean { | ||
return true; | ||
} | ||
|
||
const mockFunction = someFunction as Mocked<typeof someFunction>; | ||
|
||
expectType<[a: string, b?: number]>(mockFunction.mock.calls[0]); | ||
|
||
expectError(mockFunction.mockReturnValue(123)); | ||
expectError(mockFunction.mockImplementation((a: boolean, b?: number) => true)); | ||
|
||
expectAssignable<typeof someFunction>(mockFunction); | ||
|
||
// mocks async function | ||
|
||
async function someAsyncFunction(a: Array<boolean>): Promise<string> { | ||
return 'true'; | ||
} | ||
|
||
const mockAsyncFunction = someAsyncFunction as Mocked<typeof someAsyncFunction>; | ||
|
||
expectType<[Array<boolean>]>(mockAsyncFunction.mock.calls[0]); | ||
|
||
expectError(mockAsyncFunction.mockResolvedValue(123)); | ||
expectError( | ||
mockAsyncFunction.mockImplementation((a: Array<boolean>) => | ||
Promise.resolve(true), | ||
), | ||
); | ||
|
||
expectAssignable<typeof someAsyncFunction>(mockAsyncFunction); | ||
|
||
// mocks function object | ||
|
||
interface SomeFunctionObject { | ||
(a: number, b?: string): void; | ||
one: { | ||
(oneA: number, oneB?: boolean): boolean; | ||
more: { | ||
time: { | ||
(time: number): void; | ||
}; | ||
}; | ||
}; | ||
} | ||
|
||
declare const someFunctionObject: SomeFunctionObject; | ||
|
||
const mockFunctionObject = someFunctionObject as Mocked< | ||
typeof someFunctionObject | ||
>; | ||
|
||
expectType<[a: number, b?: string]>(mockFunctionObject.mock.calls[0]); | ||
|
||
expectError(mockFunctionObject.mockReturnValue(123)); | ||
expectError(mockFunctionObject.mockImplementation(() => true)); | ||
|
||
expectType<[time: number]>(mockFunctionObject.one.more.time.mock.calls[0]); | ||
|
||
expectError(mockFunctionObject.one.more.time.mockReturnValue(123)); | ||
expectError( | ||
mockFunctionObject.one.more.time.mockImplementation((time: string) => { | ||
return; | ||
}), | ||
); | ||
|
||
expectAssignable<typeof someFunctionObject>(mockFunctionObject); | ||
|
||
// mocks object | ||
|
||
const someObject = { | ||
SomeClass, | ||
|
||
methodA() { | ||
return; | ||
}, | ||
methodB(b: string) { | ||
return true; | ||
}, | ||
methodC: (c: number) => true, | ||
|
||
one: { | ||
more: { | ||
time: (t: number) => { | ||
return; | ||
}, | ||
}, | ||
}, | ||
|
||
propertyA: 123, | ||
propertyB: 'value', | ||
|
||
someClassInstance: new SomeClass('value'), | ||
}; | ||
|
||
const mockObject = someObject as Mocked<typeof someObject>; | ||
|
||
expectType<[]>(mockObject.methodA.mock.calls[0]); | ||
expectType<[b: string]>(mockObject.methodB.mock.calls[0]); | ||
expectType<[c: number]>(mockObject.methodC.mock.calls[0]); | ||
|
||
expectType<[t: number]>(mockObject.one.more.time.mock.calls[0]); | ||
|
||
expectType<[one: string, two?: boolean]>(mockObject.SomeClass.mock.calls[0]); | ||
expectType<[]>(mockObject.SomeClass.prototype.methodA.mock.calls[0]); | ||
expectType<[a: string, b?: number]>( | ||
mockObject.SomeClass.prototype.methodB.mock.calls[0], | ||
); | ||
|
||
expectType<[]>(mockObject.someClassInstance.methodA.mock.calls[0]); | ||
expectType<[a: string, b?: number]>( | ||
mockObject.someClassInstance.methodB.mock.calls[0], | ||
); | ||
|
||
expectError(mockObject.methodA.mockReturnValue(123)); | ||
expectError(mockObject.methodA.mockImplementation((a: number) => 123)); | ||
expectError(mockObject.methodB.mockReturnValue(123)); | ||
expectError(mockObject.methodB.mockImplementation((b: number) => 123)); | ||
expectError(mockObject.methodC.mockReturnValue(123)); | ||
expectError(mockObject.methodC.mockImplementation((c: number) => 123)); | ||
|
||
expectError(mockObject.one.more.time.mockReturnValue(123)); | ||
expectError(mockObject.one.more.time.mockImplementation((t: boolean) => 123)); | ||
|
||
expectError(mockObject.SomeClass.prototype.methodA.mockReturnValue(123)); | ||
expectError( | ||
mockObject.SomeClass.prototype.methodA.mockImplementation((a: number) => 123), | ||
); | ||
expectError(mockObject.SomeClass.prototype.methodB.mockReturnValue(123)); | ||
expectError( | ||
mockObject.SomeClass.prototype.methodB.mockImplementation((a: number) => 123), | ||
); | ||
|
||
expectError(mockObject.someClassInstance.methodA.mockReturnValue(123)); | ||
expectError( | ||
mockObject.someClassInstance.methodA.mockImplementation((a: number) => 123), | ||
); | ||
expectError(mockObject.someClassInstance.methodB.mockReturnValue(123)); | ||
expectError( | ||
mockObject.someClassInstance.methodB.mockImplementation((a: number) => 123), | ||
); | ||
|
||
expectAssignable<typeof someObject>(mockObject); | ||
|
||
// mocks 'console' object | ||
|
||
const mockConsole = console as Mocked<typeof console>; | ||
|
||
expectAssignable<typeof console.log>( | ||
mockConsole.log.mockImplementation(() => {}), | ||
); | ||
expectAssignable<MockInstance<typeof console.log>>( | ||
mockConsole.log.mockImplementation(() => {}), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"noUnusedParameters": false, | ||
"skipLibCheck": true, | ||
|
||
"types": [] | ||
"types": ["node"] | ||
}, | ||
"include": ["./**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.