如何模拟单元测试的配置阶段提供者?

How to mock config-phase providers for unit tests?

我正在编写一个规范,用于检查在被测 Angular 模块的配置阶段调用的方法。

下面是正在测试的代码的简化视图:

angular.module('core',['services.configAction'])
    .config(function(configAction){
        configAction.deferIntercept(true);
    });

上面发生的事情是我们定义了一个 core 具有单一依赖的模块。
然后,在 core 模块的 config 块中,我们在 configAction 对象上调用 deferIntercept 方法,使用 services.configAction.

我正在尝试测试 core 的配置调用该方法。

这是当前设置:

describe('core',function()
{
    const configActionProvider={
        deferIntercept:jasmine.createSpy('deferIntercept'),
        $get:function(){
            return {/*...*/}
        }
    };

    beforeEach(function()
    {
        module(function($provide)
        {
            $provide.provider('configAction',configActionProvider);
        });

        module('core.AppInitializer');

        inject(function($injector)
        {
            //...
        });
    });

    it('should call deferIntercept',function()
    {
        expect(configActionProvider.deferIntercept).toHaveBeenCalledWith(true);
    });
});

问题在于它不会覆盖 configAction,因此永远不会调用间谍,原始方法是。
如果我将它作为 core 模块的依赖项删除,它将这样做,因此 angular.module('core',[]) 而不是 angular.module('core',['services.configAction']) 将起作用并且间谍被调用。

知道如何在测试期间覆盖 services.configAction 而不将其从依赖项列表中删除吗?

看看 - https://dzone.com/articles/unit-testing-config-and-run。 类似于以下内容 -

module('services.configAction', function (configAction) {
  mockConfigAction = configAction;
  spyOn(mockConfigAction, 'deferIntercept').andCallThrough();
});
module('core');

在你的 beforeEach 中可能会完成这项工作。