3

我正在尝试对使用 Angular $resource 进行的 REST 请求进行一些基本测试。服务代码工作得很好。

'use strict';

angular.module('lelylan.services', ['ngResource']).
  factory('Device', ['Settings', '$resource', '$http', function(Settings, $resource, $http) {

    var token = 'df39d56eaa83cf94ef546cebdfb31241327e62f8712ddc4fad0297e8de746f62';
    $http.defaults.headers.common["Authorization"] = 'Bearer ' + token;

    var resource = $resource(
      'http://localhost:port/devices/:id',
      { port: ':3001', id: '@id' },
      { update: { method: 'PUT' } }
    );

    return resource;
  }]);

我在指令中使用设备资源,它可以工作。当我开始对服务进行一些测试时,问题就出现了。这是一个示例测试,其中我使用 $httpBackend 模拟 HTTP 请求,并向模拟的 URL 发出请求。

不幸的是,尽管提出了请求,但它没有返回任何内容。我确信这一点,因为如果向另一个 URL 发出请求,测试套件会自动引发错误。我花了很多时间,但没有解决方案。这里是测试代码。

'use strict';

var $httpBackend;

describe('Services', function() {

  beforeEach(module('lelylan'));

  beforeEach(inject(function($injector) {
    var uri = 'http://localhost:3001/devices/50c61ff1d033a9b610000001';
    var device = { name: 'Light', updated_at: '2012-12-20T18:40:19Z' };
    $httpBackend = $injector.get('$httpBackend');
    $httpBackend.whenGET(uri).respond(device)
  }));

  describe('Device#get', function() {
    it('returns a JSON', inject(function(Device) {
      device = Device.get({ id: '50c61ff1d033a9b610000001' });
      expect(device.name).toEqual('Light');
    }));
  });
});

由于设备未加载,这是错误。

Expected undefined to equal 'Light'.
Error: Expected undefined to equal 'Light'.

我也尝试过使用以下解决方案,但它没有进入检查预期的功能。

it('returns a JSON', inject(function(Device) {
  device = Device.get({ id: '50c61ff1d033a9b610000001' }, function() {
    expect(device.name).toEqual('Light');
  });
}));

非常感谢任何解决此问题的建议或链接。非常感谢。

4

2 回答 2

5

You were very close, the only thing missing was a call to the $httpBackend.flush();. The working test looks like follows:

it('returns a JSON', inject(function(Device) {
  var device = Device.get({ id: '50c61ff1d033a9b610000001' });
  $httpBackend.flush();
  expect(device.name).toEqual('Light');
}));

and a live test in plunker: http://plnkr.co/edit/Pp0LbLHs0Qxlgqkl948l?p=preview

You might also want to check docs for the $httpBackend mock.

于 2013-01-31T22:39:11.947 回答
0

在更高版本的 Angular 中,我使用的是 1.2.0rc1,您还需要在 $apply 中调用它或在范围内调用 $digest。除非您执行以下操作,否则不会进行资源调用:

var o, back, scope;

beforeEach(inject(function( $httpBackend, TestAPI,$rootScope) {
    o = TestAPI;
    back = $httpBackend;
    scope = $rootScope.$new();

}));

it('should call the test api service', function() {
    back.whenGET('/api/test').respond({});
    back.expectGET('/api/test');
    scope.$apply( o.test());
    back.flush();
});
于 2013-10-01T15:41:27.583 回答