Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm testing service A, but service A depends on service B. (eg service B is injected into service A).

I've seen this question but my case is a bit different because in my opinion it makes more sense to mock service B instead of injecting an actual instance of service B. I'd mock it with a jasmine spy.

Here's a sample test:

describe("Sample Test Suite", function() {

  beforeEach(function() {

    module('moduleThatContainsServiceA');

    inject([
      'serviceA', function(service) {
        this.service = service;
      }
    ]);

  });

  it('can create an instance of the service', function() {
    expect(this.service).toBeDefined();
  });
});

The error I get is:

Error: Unknown provider: serviceBProvider

How could I do something like this?

Thanks, Roy

share|improve this question

2 Answers

up vote 6 down vote accepted

Actually in AngularJS Dependency Injection use 'last wins' rule. So you can define your service in your test just after including your module and dependencies, and then when service A that you're testing will request service B using DI, AngularJS will give mocked version of service B.

This is often is done by defining new module like MyAppMocks, putting mocked servicies/values there and then just add this module as dependency.

Kind of (shematicly):

beforeEach(function() {
  angular.module('MyAppMocks',[]).service('B', ...));
  angular.module('Test',['MyApp','MyAppMocks']);
  ...
share|improve this answer
You just saved my life! :D I was killing myself trying to inject a mocked service into another service that depended on it, but only the tests would use the mocked version, not the injected service. Now I have a separate mock module that I load after the app module that overwrites the wanted services. Works like a charm! – Thomas Fankhauser Mar 6 at 13:52
Thomas, could you share some details about your solution? I have 2 modules, each of them contains a service, and service_1 from the first module is injected in service_2 in the second module. I'm creating a mock module with service_1 which is supposed to overwrite original service_1. And it is overwritten, but only in tests, so when I call service_2, it's still using original service_1 inside. – Selvam Palanimalai Apr 30 at 0:23

The Valentyn solution worked for me, but there is another alternative.

beforeEach(function () {

    angular.mock.module("moduleThatContainsServiceA", function ($provide) {
                $provide.value('B', ...);
            });
});

Then when AngularJS service A request the Service B by Dependency Injection, your mock of Service B will be provided instead of the Service B from moduleThatContainsServiceA.

This way you don't need to create an additional angular module just to mock a Service.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.