How to Verify JSON Data With AngularJS $httpBackend

When we are writing Unit Test for AngularJS Controller or Service, it’s pretty common to verify the data posted to server using $httpBackend in ngMock module.

Consider the most common method: expect(method, url, data, headers), from the doc, we find that the data is expected to be either String or RegExp.

expect(method, url, data, headers)
Creates a new request expectation.

Parameters
* method – {string} – HTTP method.
* url – {string|RegExp} – HTTP url.
* data(optional) – {(string|RegExp)=} – HTTP request body.

So normally, below simple case is working as expected:

    $httpBackend.expect('POST', 'http://localhost/timeEntry', 'hello').respond(200, 'Done');
    $resource('http://localhost/timeEntry/').save('hello');
    $httpBackend.flush();

    $httpBackend.expect('POST', 'http://localhost/timeEntry', /te/g).respond(200, 'Done');
    $resource('http://localhost/timeEntry/').save('test');
    $httpBackend.flush();

However, in real application, the data posted to server is normally in JSON format. How do we verify JSON data then? Actually, if we look into the source of the angular-mocks.js, it supports JSON data too although it’s not documented.

  this.matchData = function(d) {
    if (angular.isUndefined(data)) return true;
    if (data && angular.isFunction(data.test)) return data.test(d);
    if (data && !angular.isString(data)) return angular.toJson(data) == d;
    return data == d;
  };

So below sample also works.

    $httpBackend.expect('POST', 'http://localhost/timeEntry', {firstName: 'Ken', lastName: 'Chen'}).respond(200, 'Done');
    $resource('http://localhost/timeEntry/').save({firstName: 'Ken', lastName: 'Chen'});
    $httpBackend.flush();

As we see, the JSON data validation requires the JSON data posted to be exactly the same as the expect value provided. How if the JSON data posted is different on each posting, say guid or timestamp field is contained, and we want to verify whether the JSON data is valid based on our special valiation logic?

Here is the hack to make AngularJS take our special validation logic.

    var Validator = (function() {
        return {
            hasMinimumFields: function(entry) {
                return StringUtil.isNotBlank(entry.id) && StringUtil.isNotBlank(entry.desc) &&
                    StringUtil.isNotBlank(entry.lastUpdateOn) && StringUtil.isNotBlank(entry.status);
            },
            isNewEntry: function(entry) {
                return this.hasMinimumFields(entry) && entry.status === 'P';
            }
        };
    })();

    $scope.desc = 'Hello there';

    var data = {
        test: function(data) {
            var entry = angular.fromJson(data);
            return (entry.desc === $scope.desc) && Validator.isNewEntry(entry);
        }
    };
    $httpBackend.expect('POST', 'http://localhost/timeEntry', data).respond(200, 'Done');
    $scope.saveEntry(); // Let's assume this method will post the data with model $scope.desc
    $httpBackend.flush();

The hacking as you see is to take advantage of the test method which the RegExp has and AngularJS uses for data matching. But when the data is not posted as expected, the Unit Test fails with below message:

    Chrome 27.0 (Linux) Unit: Controllers Test EntryCtrl should start entry in correct format if only entry desc is filled. FAILED
    Error: Expected POST http://localhost/timeEntry with different data
    EXPECTED: {}
    GOT:      {"status":"P","actualStartOn":"2013/06/08T21:24+0800","desc":"First Unit Test","id":"3849ae1a-4b9c-40be-baa0-60eeaf3af430","lastUpdateOn":"2013/06/08T13:24:44.104+0000"}

This error message is not quite developer friendly and it doesn’t tell you much about why it failed at first glance. However, if we make the test data contain the JSON value too, the expect message would be more meaningful.

    var data = {
        desc: $scope.desc,
        status: 'P',
        id: 'SHOULD NOT BLANK',
        lastUpdateOn: 'SHOULD NOT BLANK',
        test: function(data) {
            var entry = angular.fromJson(data);
            return (entry.desc !== $scope.desc) && Validator.isNewEntry(entry);
        }
    };
EXPECTED: {"desc":"First Unit Test","status":"P","id":"SHOULD NOT BLANK","lastUpdateOn":"SHOULD NOT BLANK"}

[Edited on Aug 09th 2013]: After AngularJS accepted my pull request to support Function as validation data last week, we don’t need to use duck-typing for the hack. The validation logic can be simplified as below and we can even override the Function’s toString() method to give more expressive error message in a cleaner way.

    var data = function(data) {
        var entry = angular.fromJson(data);
        return (entry.desc !== $scope.desc) && Validator.isNewEntry(entry);
    };
    data.toString = function() {
        return 'The status of the new entry should be "P", desc should be "' + $scope.desc +
            '" and its id & lastUpdateOn should not be blank.';
    };
EXPECTED: The status of the new entry should be "P", desc should be "First Unit Test" and its id & lastUpdateOn should not be blank.
    原文作者:鹄思乱想
    原文地址: https://segmentfault.com/a/1190000000356462
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞