-
-
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.
bug-13140 Added tests for class mocks
- Loading branch information
1 parent
812763d
commit bf4d2d6
Showing
6 changed files
with
466 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
export class SuperTestClass { | ||
static staticTestProperty = 'staticTestProperty'; | ||
|
||
static get staticTestAccessor(): string { | ||
return 'staticTestAccessor'; | ||
} | ||
|
||
static set staticTestAccessor(_x: string) { | ||
return; | ||
} | ||
|
||
static staticTestMethod(): string { | ||
return 'staticTestMethod'; | ||
} | ||
|
||
testProperty = 'testProperty'; | ||
|
||
get testAccessor(): string { | ||
return 'testAccessor'; | ||
} | ||
set testAccessor(_x: string) { | ||
return; | ||
} | ||
|
||
testMethod(): string { | ||
return 'testMethod'; | ||
} | ||
} |
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,3 @@ | ||
import {SuperTestClass} from './SuperTestClass'; | ||
|
||
export default class TestClass extends SuperTestClass {} |
122 changes: 122 additions & 0 deletions
122
packages/jest-mock/src/__tests__/class-mocks-dual-import.test.ts
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,122 @@ | ||
import {SuperTestClass} from './SuperTestClass'; | ||
import TestClass from './TestClass'; | ||
jest.mock('./SuperTestClass'); | ||
jest.mock('./TestClass'); | ||
|
||
describe('Testing the mocking of a class hierarchy defined in multiple imports', () => { | ||
it('can call an instance method - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testMethod') | ||
.mockImplementation(() => { | ||
return 'mockTestMethod'; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
expect(testClassInstance.testMethod()).toEqual('mockTestMethod'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can call a superclass instance method - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testMethod') | ||
.mockImplementation(() => { | ||
return 'mockTestMethod'; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
expect(testClassInstance.testMethod()).toEqual('mockTestMethod'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can read a value from an instance getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockTestAccessor'; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
expect(testClassInstance.testAccessor).toEqual('mockTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can read a value from a superclass instance getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockTestAccessor'; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
expect(testClassInstance.testAccessor).toEqual('mockTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can write a value to an instance setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
testClassInstance.testAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can write a value to a superclass instance setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
testClassInstance.testAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can read a value from a static getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass, 'staticTestAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockStaticTestAccessor'; | ||
}); | ||
expect(SuperTestClass.staticTestAccessor).toEqual('mockStaticTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can read a value from a superclass static getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass, 'staticTestAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockStaticTestAccessor'; | ||
}); | ||
expect(TestClass.staticTestAccessor).toEqual('mockStaticTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can write a value to a static setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass, 'staticTestAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
SuperTestClass.staticTestAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can write a value to a superclass static setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass, 'staticTestAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
TestClass.staticTestAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
}); |
120 changes: 120 additions & 0 deletions
120
packages/jest-mock/src/__tests__/class-mocks-single-import.test.ts
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,120 @@ | ||
import SuperTestClass, {TestClass} from './class-mocks-types'; | ||
jest.mock('./class-mocks-types'); | ||
|
||
describe('Testing the mocking of a class hierarchy defined in a single import', () => { | ||
it('can call an instance method - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testMethod') | ||
.mockImplementation(() => { | ||
return 'mockTestMethod'; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
expect(testClassInstance.testMethod()).toEqual('mockTestMethod'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can call a superclass instance method - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testMethod') | ||
.mockImplementation(() => { | ||
return 'mockTestMethod'; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
expect(testClassInstance.testMethod()).toEqual('mockTestMethod'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can read a value from an instance getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockTestAccessor'; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
expect(testClassInstance.testAccessor).toEqual('mockTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can read a value from a superclass instance getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockTestAccessor'; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
expect(testClassInstance.testAccessor).toEqual('mockTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can write a value to an instance setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass.prototype, 'testAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
const testClassInstance = new SuperTestClass(); | ||
testClassInstance.testAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can write a value to a superclass instance setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass.prototype, 'testAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
const testClassInstance = new TestClass(); | ||
testClassInstance.testAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can read a value from a static getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass, 'staticTestAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockStaticTestAccessor'; | ||
}); | ||
expect(SuperTestClass.staticTestAccessor).toEqual('mockStaticTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can read a value from a superclass static getter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass, 'staticTestAccessor', 'get') | ||
.mockImplementation(() => { | ||
return 'mockStaticTestAccessor'; | ||
}); | ||
expect(TestClass.staticTestAccessor).toEqual('mockStaticTestAccessor'); | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('can write a value to a static setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(SuperTestClass, 'staticTestAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
SuperTestClass.staticTestAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
|
||
mockTestMethod.mockClear(); | ||
}); | ||
|
||
it('can write a value to a superclass static setter - Auto-mocked class', () => { | ||
const mockTestMethod = jest | ||
.spyOn(TestClass, 'staticTestAccessor', 'set') | ||
.mockImplementation((_x: string) => { | ||
return () => {}; | ||
}); | ||
TestClass.staticTestAccessor = ''; | ||
expect(mockTestMethod).toHaveBeenCalledTimes(1); | ||
}); | ||
}); |
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,30 @@ | ||
export default class SuperTestClass { | ||
static staticTestProperty = 'staticTestProperty'; | ||
|
||
static get staticTestAccessor(): string { | ||
return 'staticTestAccessor'; | ||
} | ||
|
||
static set staticTestAccessor(_x: string) { | ||
return; | ||
} | ||
|
||
static staticTestMethod(): string { | ||
return 'staticTestMethod'; | ||
} | ||
|
||
testProperty = 'testProperty'; | ||
|
||
get testAccessor(): string { | ||
return 'testAccessor'; | ||
} | ||
set testAccessor(_x: string) { | ||
return; | ||
} | ||
|
||
testMethod(): string { | ||
return 'testMethod'; | ||
} | ||
} | ||
|
||
export class TestClass extends SuperTestClass {} |
Oops, something went wrong.