我正在尝试对使用 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');
});
}));
非常感谢任何解决此问题的建议或链接。非常感谢。