1
api
とデータを接続して相互作用するservice factory
があります。ここでは、サービスがある:カルマで解決されないサービス約束
describe('Service: Request', function() {
var $scope, srvMock, $q, lc, $httpBackend;
beforeEach(module('webApp'));
beforeEach(inject(function($rootScope, Request, _$q_, _$httpBackend_, localConfig){
$scope = $rootScope.$new();
srvMock = Request;
$q = _$q_;
$httpBackend = _$httpBackend_;
lc = localConfig;
$httpBackend.expect('GET', lc.dbDataUrl);
$httpBackend.when('GET', lc.dbDataUrl).respond({
success: ["d1","d2", "d3"]
});
}));
it('should return a promise', function(){
expect(srvMock.getDataRevision().then).toBeDefined();
});
it('should resolve with data', function(){
var data;
var deferred = $q.defer();
var promise = deferred.promise;
promise.then(function(res){
data = res.success;
});
srvMock.getDataRevision().then(function(res){
deferred.resolve(res);
});
$scope.$digest();
expect(data).toEqual(["d1","d2", "d3"]);
})
});
should return a promise
パスが、次のshould resolve with data
は、このエラーで失敗します:
angular.module('dbRequest', [])
.factory('Request', ['$http', 'localConfig', function($http, localConfig){
return {
getDataRevision: function(){
return $http({
url: localConfig.dbDataUrl,
method: "GET",
crossDomain: true,
headers: {
'Content-Type': 'application/json; charset=utf-8'
}
})
}
}
}]);
、これは私が方法をテストしてい方法です
Expected undefined to equal [ 'd1', 'd2', 'd3' ].
しかし、service
の方法getDataRevision
が呼び出されていますが、模擬約束で解決されていません。 nテスト。どのように修正するのですか?
ソリューションは完璧に動作します!しかし、テストケースがどのように実行されているか説明してもらえますか? 'httpbackend success'レスポンスは常に' expected data'と等しいでしょうか?言い換えれば、サービス「約束」から返された「応答」をどのようにテストするのですか? – faizanjehangir
@faizanjehangir私はそれをしました..更新を見てください.. –