2

我不想使用 karma-ng-html2js-preprocessor 或 $httpBackend。我有一个动态创建的 templateCache 模块。

应用程序.js

angular.module('myApp', ['ngRoute', 'ui.bootstrap', 'ui.router', 'appTemplates']);

模板.js

(function(){

'use strict';

angular.module('appTemplates', []).run(['$templateCache',
    function($templateCache) {
        $templateCache.put('js/Templates/datetimepicker.html', '<div>My html here</div>');
    }
]);
})();

和一个指令

日期时间选择器.js

angular.module('myApp').directive('datetimepicker',
    function () {
        return {
            restrict: 'A',
            replace: false,
            templateUrl: 'js/Templates/datetimepicker.html'
        };
    }
);

问题是,当我编译指令时,我的测试似乎不想使用 templateCache。

测试.js

(function () {

"use strict";

describe("Datetimepicker directive tests", function () {

    var scope, templateCache, element;

    // load the directive's module
    beforeEach(module('myApp'));

    beforeEach(inject(function ($rootScope, $templateCache) {
        scope = $rootScope;
        templateCache = $templateCache;


    }));

    it('should exist', inject(function ($compile) {

       //this console.log prints out the correct HTML from cache
  //console.log(templateCache.get('js/Templates/datetimepicker.html'));

        element = angular.element('<div data-datetimepicker></div>');
        element = $compile(element)(scope);
        // this logs the element
        console.log(element);
        //this $digest call throws the error
        scope.$digest();

        console.log(element);

        expect(element.html()).toContain('div');
    }));
});
})();

我得到:

Error: Unexpected request: GET template/datepicker/datepicker.html

当我运行测试时,我的控制台中的 $httpBackend 不会再有请求了。

任何帮助表示赞赏。谢谢

4

3 回答 3

2

任一指令模块都应将模板缓存模块作为依赖项引用:

angular.module('myApp', ['appTemplates']).directive('datetimepicker',

或者在您的测试中手动加载模块:

// load the directive's module
beforeEach(module('myApp'));
beforeEach(module('appTemplates'));

否则模板缓存模块run方法将不会执行,因此缓存中没有模板。

于 2015-09-08T14:03:59.137 回答
0

线索就在错误中。datetimepicker 指令包含一个名为datepicker的 Angular-UI 指令。正是这导致了错误。我猜我的指令不是可单元测试的,我将专注于这个指令的 E2E 测试。因此,这个问题具有误导性,因为该模板实际上包含的 HTML 比我在此处发布的要多。无论如何,谢谢!希望这个答案能帮助那些遇到同样错误的人!

于 2015-09-09T08:18:15.290 回答
0

对请求使用$httpBackend模拟服务。

//expect a GET request to a url.
$httpBackend.expectGET('whatever url you want');
//...place your code.

//flush pending requests.
$httpBackend.flush();

有关更多信息,请参阅官方 angular $httpBackend 服务页面。

于 2015-09-08T13:59:12.090 回答