AngularJS - 控制器未注册

时间:2017-03-21 04:33:34

标签: angularjs unit-testing jasmine chutzpah

我开始使用AngularJS单元测试,我收到一个名为“SiteCtrl”的Controller没有注册的错误。

我在这里做错了什么?

describe('#hasFormError', function () {

    var $rootScope,form, templateHtml, ctrl,$scope,scope;

    angular.module("TestApp");
    beforeEach(function () {
        angular.module("TestApp");
    });

    beforeEach(inject(function ($rootScope, $controller, $compile, $templateCache) {
        $scope = $rootScope.$new();
        ctrl = $controller;
        ctrl('SiteCtrl', { $scope: scope });

        var a1 = angular.element('<div class="page_container" ng-controller="SiteCtrl"><form name="shan"><div class="zip"><input ng-if="max_length == 5" type="text" name="zipcode" value="" ng-model="Sitezip.zipcode" ng-pattern="/^[0-9]*$/" ng-maxlength="max_length" required><input ng-if="max_length == 7" type="text" name="zipcode" value="" ng-model="store_zip.zipcode" ng-pattern="/^[a-zA-Z0-9]*$/" ng-maxlength="max_length" required></form></div>');


        $compile(a1)($scope);
       form = $scope.shan;  
        $scope.$apply()


    }));


    it("TestCase :controller  defined \n", function () {
        expect(ctrl).toBeTruthy();
    }); 

    it("TestZipCode", function () {
        form.zipcode.$setViewValue("4535433123123");
        expect(form.zipcode.$valid).toBeTruthy();
     });


});

1 个答案:

答案 0 :(得分:6)

你必须注入&#39; SiteCtrl&#39;在任何js文件中 之后你可以使用它。

app.controller("SiteCtrl",SiteCtrl);
SiteCtrl.$inject = ['$scope','$state','$filter'];