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

I have a function on my service that looks like something this:

addStatement: function(user, action, object) {
            var statement = {
                    user: user,
                    action: action,
                    object: object
            };
            $http({
                method: 'POST', 
                url: '/foo/bar', 
                data: statement, 
                headers: {Authorization: 'Basic YWxhZGRpbjpvcGVuIHNlc2FtZQ=='}
            }).success(function(data) {
                alert("success: " + data);
            });
        }

I want to write a unit test for this method, but I'm not sure how to make it work. Basically, I want to test that the data sent up was correctly constructed from the function parameters and that the correct Authorization header was sent up.

I've been reading over how to use $httpBackend, but the example there is testing a controller, and just stuff that changes on the $scope when the requests are made and returned. Is there a way to achieve the tests I want? Or am I going about something wrong?

share|improve this question

2 Answers

up vote 7 down vote accepted

Testing services doesn't differ much from testing controllers so the principles are the same. Basically you need to:

  • Inject objects under test
  • setup mocks (if any) - here you were on the right track using $httpBackend mock
  • run methods on your object under test and verify the results

If you are after testing that a service methods results in $http POST call you could write your test like this (non-essential parts omitted):

beforeEach(module('MyApp'));
beforeEach(inject(function(MyService, _$httpBackend_) {
    service = MyService;
    $httpBackend = _$httpBackend_;
}));

it('should invoke service with right paramaeters', function() {
    $httpBackend.expectPOST('/foo/bar', {
        "user": "testUser",
        "action": "testAction",
        "object": {}
    }, function(headers){
        return headers.Authorization === 'Basic YWxhZGRpbjpvcGVuIHNlc2FtZQ==';
    }).respond({});
    service.addStatement('testUser', 'testAction', {});
    $httpBackend.flush();
});

Here is the working jsFiddle illustrating this test in action: http://jsfiddle.net/pkozlowski_opensource/MkrjZ/2/

One last remark: it is better not to use .alert() in unit tests since those alerts will pause execution of tests.

share|improve this answer
+1 for avoiding alerts. Another possibility is that you may want to inject $window and use $window.alert so you can mock that out for your tests. – btford Aug 23 '12 at 23:50
Thank you very much for the thorough answer and example! I was just struggling some with the $httpBackend documentation. I'm very new to Jasmine and javascript unit testing. – dnc253 Aug 25 '12 at 19:02
It works... but $httpBackend = _$httpBackend_; is mind blowing! ... it would be nice to have a comment. ... Maybe '$httpBackend = $injector.get('$httpBackend')' is better. – Adi Roiban Mar 8 at 14:22

I wrote a blog post about that very topic showing a little bit about using angular's built-in mocks and writing your own mocks, maybe it helps you to get a deeper understanding:

How to mock AngularJS modules and inject them in your testacular tests?

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.