angularjs – 角度1.1.5测试承诺服务

前端之家收集整理的这篇文章主要介绍了angularjs – 角度1.1.5测试承诺服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们使用业力单位测试我们的角度服务,这些服务包含$ http调用,所以我们有一个嘲笑的$ httpbackend到位,所以我们可以运行没有服务器和数据库的应用程序。
这工作正常,一个服务可以调用$ http(“someurl?id = 1234”),我们得到正确的数据。

但是当我们尝试在单元测试中做同样的事情时,我们无法让它工作,承诺永远不会解决,当它涉及$ http

服务:

getAllowedTypes: function (contentId) {
    var deferred = $q.defer();
    $http.get(getChildContentTypesUrl(contentId))
        .success(function (data,status,headers,config) {
            deferred.resolve(data);
        }).
        error(function (data,config) {
            deferred.reject('Failed to retreive data for content id ' + contentId);
        });
    return deferred.promise;
}

嘲笑$ httpbackend

$httpBackend
   .whenGET(mocksUtills.urlRegex('/someurl'))
   .respond(returnAllowedChildren); //returns a json object and httpstatus:200

考试

it('should return a allowed content type collection given a document id',function(){

    var collection;
    contentTypeResource.getAllowedTypes(1234).then(function(result){
        collection = result;
    });

    $rootScope.$digest();

    expect(collection.length).toBe(3);
});

但是collection是未定义的,而.then()从不被调用

尝试几乎所有的东西得到承诺解决,$ rootScope。$ apply(),$ digest,$ httpBacke.flush(),但没有什么工作

所以嘲笑$ httpBackend的作品,当从应用程序中的控制器调用时,但不是直接在业务单元测试中调用服务时

你不需要消化两次,因为$ httpBackend.flush()调用摘要本身。
你必须打电话,调用digest来解决请求拦截器,调用flush。

这是一个工作Plnkr:http://plnkr.co/edit/FiYY1jT6dYrDhroRpFG1?p=preview

原文链接:https://www.f2er.com/angularjs/144514.html

猜你在找的Angularjs相关文章