如何测试http请求

时间:2015-07-24 06:39:39

标签: angularjs unit-testing http jasmine karma-runner

我是angularjs的新手,我已经完成了我的第一个角度应用程序现在我想在我的应用程序中测试它们我从URL获取一些Json数据并填充在列表中我想测试http请求但我的测试失败 这是我的controllerspec:

buf

Here is my app in plunkr

1 个答案:

答案 0 :(得分:1)

要使其完全可测试,您需要在控制器中进行一些修复,如下所示。

 var app = angular.module('myApp', []);
 app.controller("myAppCtrl", function ($scope, $http) {
     $scope.names = []
     //watch sortBy
     $scope.$watch(function () {
         return $scope.sortExpression
     }, function (newSort) {
         $scope.sortBy = 'data.' + $scope.sortExpression
     })

     $scope.init = function(){
        return  $http.get("https://www.reddit.com/r/worldnews/new.json")
         .success(function (response) {
                 $scope.names = response.data.children;
                 return response;
          })
       }  
      $scope.init();  
 });

**testSpec.js**


    describe('myAppCtrl', function() {
        var scope, controller, httpBackend;
        var data = {
    "kind": "Listing",
    "data": {
        "modhash": "",
        "children": [{
            "kind": "t3",
            "data": {
                "domain": "theguardian.com",
                "banned_by": null,
                "media_embed": {},
                "subreddit": "worldnews",
                "selftext_html": null,
                "selftext": "",
                "likes": null,
                "suggested_sort": null,
                "user_reports": [],
                "secure_media": null,
                "link_flair_text": null,
                "id": "3ef7lv",
                "from_kind": null,
                "gilded": 0,
                "archived": false,
                "clicked": false,
                "report_reasons": null,
                "author": "anutensil",
                "media": null,
                "score": 4,
                "approved_by": null,
                "over_18": false,
                "hidden": false,
                "num_comments": 0,
                "thumbnail": "",
                "subreddit_id": "t5_2qh13",
                "edited": false,
                "link_flair_css_class": null,
                "author_flair_css_class": null,
                "downs": 0,
                "secure_media_embed": {},
                "saved": false,
                "removal_reason": null,
                "stickied": false,
                "from": null,
                "is_self": false,
                "from_id": null,
                "permalink": "/r/worldnews/comments/3ef7lv/beekilling_pesticides_quietly_permitted_by_the_uk/",
                "name": "t3_3ef7lv",
                "created": 1437752870.0,
                "url": "http://www.theguardian.com/environment/2015/jul/23/bee-killing-pesticides-quietly-permitted-by-the-uk-government",
                "author_flair_text": null,
                "title": "Bee-killing pesticides quietly permitted by the UK govt",
                "created_utc": 1437724070.0,
                "distinguished": null,
                "mod_reports": [],
                "visited": false,
                "num_reports": null,
                "ups": 4
            }
        }, {
            "kind": "t3",
            "data": {
                "domain": "m.sputniknews.com",
                "banned_by": null,
                "media_embed": {},
                "subreddit": "worldnews",
                "selftext_html": null,
                "selftext": "",
                "likes": null,
                "suggested_sort": null,
                "user_reports": [],
                "secure_media": null,
                "link_flair_text": "Ukraine/Russia",
                "id": "3ef6q4",
                "from_kind": null,
                "gilded": 0,
                "archived": false,
                "clicked": false,
                "report_reasons": null,
                "author": "dexter93",
                "media": null,
                "score": 0,
                "approved_by": null,
                "over_18": false,
                "hidden": false,
                "num_comments": 2,
                "thumbnail": "",
                "subreddit_id": "t5_2qh13",
                "edited": false,
                "link_flair_css_class": "ukrassia",
                "author_flair_css_class": null,
                "downs": 0,
                "secure_media_embed": {},
                "saved": false,
                "removal_reason": null,
                "stickied": false,
                "from": null,
                "is_self": false,
                "from_id": null,
                "permalink": "/r/worldnews/comments/3ef6q4/french_lawmakers_surprised_by_happy_citizens_in/",
                "name": "t3_3ef6q4",
                "created": 1437752114.0,
                "url": "http://m.sputniknews.com/russia/20150724/1024986748.html",
                "author_flair_text": null,
                "title": "French Lawmakers Surprised by \u2018Happy\u2019 Citizens in Crimea\u2019s Yalta / Sputnik International",
                "created_utc": 1437723314.0,
                "distinguished": null,
                "mod_reports": [],
                "visited": false,
                "num_reports": null,
                "ups": 0
            }

        }],
        "after": "t3_3eeqtg",
        "before": null
    }
}



    beforeEach(module('myApp'));
    beforeEach(inject(function($rootScope, $controller, $httpBackend) {
        scope = $rootScope;
        controller = $controller;
        httpBackend = $httpBackend;
    }));

    it('should populate the reddit data when the HTTP request succeeds', function(done) {

        httpBackend.when('GET','https://www.reddit.com/r/worldnews/new.json').respond({data:data});

        controller('myAppCtrl', {'$scope': scope });
        httpBackend.flush();
        scope.$apply();

        scope.init().then(function(resp){
            expect(resp.data).not.toBeNull();
               done();
        });

    });
    it('should show the number of items in list',function() {
        var data = $('#title');
        expect(data).toBeTruthy();
        //expect(1).toBe(1);
    }); 


    });

check out plunker

相关问题