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');
});
}));
この問題を解決するための提案やリンクは本当にありがたいです。どうもありがとう。