18

我想强烈输入我的笑话。在某种程度上,我可以让它工作,但是当一个类有私有属性时,我就卡住了。

另一个问题,当我使用模拟(我目前的方式)时,返回类型是原始类型,但是当我必须访问 Jest 添加的任何方法时,我必须对其进行类型转换jest.Mock才能访问方法。有一个更好的方法吗?我尝试过使用jest.Mock, jest.Mocked, jest.MockInstance.

如果有人能指出我正确的方向,那就太好了!

class MyTest {
    constructor(private readonly msg: string) {}

    public foo(): string {
        return this.msg;
    }
}

const myTestMock: jest.Mock<MyTest, [string]> = jest.fn<MyTest, [string]>(() => ({
    msg: 'private',
    foo: jest.fn().mockReturnValue('aaa'),
}));
// Results in error:
// Type '{ msg: string; foo: Mock<any, any>; }' is not assignable to type 'MyTest'.
// Property 'msg' is private in type 'MyTest' but not in type '{ msg: string; foo: Mock<any, any>; }'

const myTestMockInstance: MyTest = new myTestMock('a');
console.log(myTestMockInstance.foo()); // --> aaa

// Accessing jest mock methods:
(<jest.Mock>myTestMockInstance).mockClear(); // <-- can this be done without type casting

肮脏的解决方法:

const myTestMock: jest.Mock<MyTest, [string]> = jest.fn<MyTest, [string]>(
    // Cast to any to satisfy TS
    (): any => ({
        msg: 'private',
        foo: jest.fn().mockReturnValue('aaa'),
    })
);
4

2 回答 2

2

有一个库可以帮助您在 Typescript with Jest 中使用强类型模拟:jest-mock-extended

我不确定您是否应该访问模拟的私有属性。正如 Kim Kern 所说,您应该只对被测单元的依赖项的公共接口感兴趣。

jest-mock-extended 包含一个mock()方法,该方法返回一个MockProxy允许您访问.mockReturnValue()等的方法。

import { mock } from "jest-mock-extended";

interface WidgetService {
  listMyWidgets(): { id: string }[];
};

const mockedService = mock<WidgetService>();
mockedService.listMyWidgets.mockReturnValue([{ id: 'widget-1' }]);
于 2021-02-23T12:17:51.360 回答
1
  1. 有一个帮助器可以生成类型:look ts-jest
  1. 通常你应该测试公共接口,而不是实现。您可以将该逻辑提取到公共接口(可能是提供该接口的另一个类),而不是测试私有方法
于 2019-10-30T11:48:23.640 回答