11

コントローラーの単体テストを行っています。REST サービス層への呼び出しを正常にモックし、指定されたデータで実際に呼び出されていることを確認しました。thenしかしここで、コントローラでpromiseの実行が を変更することをテストしたいと思いますlocation.path:

コントローラ:

(function () {

    app.controller('registerController', ['$scope', '$location', '$ourRestWrapper', function ($scope, $location, $ourRestWrapper) {

    $scope.submitReg = function(){
        // test will execute this
        var promise = $ourRestWrapper.post('user/registration', $scope.register);

        promise.then(function(response) {    
                console.log("success!"); // test never hits here           
                $location.path("/");
        },
            function(error) {
                console.log("error!"); // test never hits here
                $location.path("/error");
            }
        );
    };

$ourRestWrapper.post(url,data)包むだけRestangular.all(url).post(data)..

私たちのテスト:

(function () {

    describe("controller: registerController", function() {

        var scope, location, restMock, controller, q, deferred;

        beforeEach(module("ourModule"));

        beforeEach(function() {
            restMock = {
                post: function(url, model) {
                    console.log("deferring...");
                    deferred = q.defer();    
                    return deferred.promise;
                }
            };
        });

        // init controller for test
        beforeEach(inject(function($controller, $rootScope, $ourRestWrapper, $location, $q){
            scope = $rootScope.$new();
            location = $location;
            q = $q;

            controller = $controller('registerController', {
                $scope: scope, $location: location, $ourRestWrapper: restMock});
        }));

    it('should call REST layer with registration request', function() {
        scope.register = {data:'test'};

        spyOn(restMock, 'post').andCallThrough();

        scope.submitReg();

        deferred.resolve();

        // successfull
        expect(restMock.post).toHaveBeenCalledWith('user/registration',scope.register);
        expect(restMock.post.calls.length).toEqual(1);
        // fail: Expected '' to be '/'.
        expect(location.path()).toBe('/');
    });

私たちのコンソールでは、"deferring..." と表示され、最初の 2 つの期待は成功しています。thenブロックを呼び出さない (つまり、場所を設定しない) のはなぜですか?

4

1 に答える 1

24

$rootscopeインジェクターから取得したオブジェクトをキャッシュし、 の$rootScope.$apply()直後に呼び出しますdeferred.resolve()

于 2013-09-20T14:34:37.583 に答える