本文共 1714 字,大约阅读时间需要 5 分钟。
转载地址
git clone https:// cd webpack4-react16-reactrouter-demogit fetch origingit checkout v_1.0.32npm install
Jest可用于模拟导入到要测试的文件中的ES6语法的类。
ES6语法的类是具有一些语法糖的构造函数。因此,ES6语法的类的任何模拟都必须是函数或实际的ES6语法的类(这也是另一个函数)。
所以可以使用模拟函数来模拟它们。如下使用jest.fn().mockImplementation()构建的构造函数mock,使模拟看起来比实际更复杂。
那么jest是如何创建一个简单的模拟(simple mocks)并演示下mocking是如何起作用的如果使用与__mocks__文件夹中的模拟类相同的文件名定义ES6语法的类,则它将用作模拟。
这个类将用于代替真正的类。 我们可以为这个类注入测试实现,但不提供监视调用的方法。如下 src/__mocks__/sound-player.jsexport default class SoundPlayer { constructor() { console.log('Mock SoundPlayer: constructor was called'); this.name = 'Player1'; this.fileName = ''; } choicePlaySoundFile(fileName) { console.log('Mock SoundPlayer: choicePlaySoundFile was called'); this.fileName = fileName; } playSoundFile() { console.log('Mock SoundPlayer: playSoundFile was called'); console.log('播放的文件是:', this.fileName); }}
传递给jest.mock(path,moduleFactory)的模块工厂函数可以是返回函数*的高阶函数(HOF)。
这将允许在模拟上调用new。 同样,这允许为测试注入不同的行为,但不提供监视调用的方法为了模拟构造函数,模块工厂必须返回构造函数。
换句话说,模块工厂必须是返回函数的函数 - 高阶函数(HOF)。如下演示jest.mock('../lib/sound-player', () => { return function() { return { playSoundFile: () => {} }; };});
请注意,mock不能是箭头函数,因为在JavaScript中不允许在箭头函数上调用new。
所以这不起作用:jest.mock('./sound-player', () => { return () => { // 不起作用 箭头函数不会被调用 return {playSoundFile: () => {}}; };});
这将抛出TypeError:_soundPlayer2.default不是构造函数,除非代码被转换为ES5,例如,
通过babel-preset-env。(ES5没有箭头函数也没有类,因此两者都将被转换为普通函数。)实践项目地址
git clone https://git checkout v_1.0.32