I have tried various ways of instantiating the mocked service 'listFilterManager' and passing this to the controller. Although the mocked service is created and accessible, when the scope.$digest() is executed, the actual non-mocked service runs instead of the mocked listFilterManager. Even more confusing is that the resourceStore service is properly mocked and injected. Any help would be greatly appreciated.
Relevant code:
beforeEach(function(){
module('listModule');
module(function($provide){
$provide.factory('resourceStore', function(){
return {
alertsArray: Object.keys(mockData).map(function(key){
return mockData[key];
})
};
});
$provide.value('listFilterManager',{
filterList: jasmine.createSpy('filterList').and.callFake(function(input){
return input;
})
});
});
});
describe('instantiates the Alert List Ctrl', function(){
var scope, listFilterParams, listFilterManager, resourceStore, tableAccessorDictionaries, AlertListCtrl;
beforeEach(function(){
inject(function(_$rootScope_, $controller, _tableAccessorDictionaries_, _listFilterParams_, _resourceStore_, _listFilterManager_){
scope = _$rootScope_.$new();
listFilterParams = _listFilterParams_;
listFilterManager = _listFilterManager_; //this refs the mocked service, but the actual service is the one that is executed.
var deps = {
'$scope': scope,
'tableAccessorDictionaries': _tableAccessorDictionaries_,
'listFilterManager': _listFilterManager_,
'listFilterParams': _listFilterParams_,
'resourceStore': _resourceStore_
};
AlertListCtrl = $controller('AlertListCtrl', deps);
});
});
it('it should filter the list when a list filter parameter changes', function(){
expect(listFilterManager.filterList).not.toHaveBeenCalled();
scope.filterParams.text = 'This is a test query';
scope.$digest();
expect(listFilterManager.filterList).toHaveBeenCalled();
});
});
So you're saying that 'listFilterManager' is a service but in the beforeEach method, you are providing it as a value. You need to provide it as a factory in order for it to be properly mocked. Replace the following
with:
and it should work properly.