作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道如何获得像 Chutzpah 的 Visual Studio 测试适配器这样的 headless 浏览器来允许指令访问其 .html 模板文件? Chutzpah 使用 PhantomJS 作为 headless 浏览器,这似乎限制了我的选择。
我正在使用 Chutzpah 测试适配器 2.5 和 AngularJS 1.2.0-r.2。
我得到错误:
Unexpected request: GET myApp/directives/template.html
$httpBackend.when('GET', 'myApp/directives/template.html').passThrough()
- 这仅适用于 e2e 测试,不适用于单元测试。 angular.module('myDirective', []).directive('myDirective', function() {
return {
restrict: 'E',
transclude: true,
templateUrl: 'myApp/directives/template.html',
// Some other options, omitted for brevity.
};
});
<div><div ng-transclude></div></div>
describe('myDirective', function() {
// Assign $scope using inject(), load module etc.
// Insert workaround for $httpBackend loading my templateUrl here.
it('should transclude content', function() {
var element = $compile("<my-directive>Look Mom, I'm in my directive!</my-directive>")($scope);
$scope.$digest();
expect(element.text().trim()).toBe("Look Mom, I'm in my directive!");
});
}
最佳答案
我设法让它工作,使用 Chutzpah 的 编译选项。我移植了karma-ng-html2js-preprocessor进入 PowerShell 脚本,然后从 Chutzpah 调用该脚本以将 HTML 编译为 JS 文件。
在 chutzpah.json 设置文件旁边添加了 PowerShell 脚本(以下脚本包含对 PreprendPrefix 和 StripSuffix 的未经测试的支持)
# PowerShell port of https://github.com/karma-runner/karma-ng-html2js-preprocessor
Param (
[parameter(Mandatory=$true)] [string] $Path,
[string] $Module = '',
[string] $StripPrefix = '',
[string] $PrependPrefix = '',
[string] $StripSuffix = ''
)
Function EscapeContent($content) {
$content -replace "\\", "\\\\" -replace "'", "\'" -replace "`r?`n", "\n' +`n '"
}
Function Rename($fileName) {
"$PrependPrefix" + ("$fileName" -replace "$StripPrefix", '' -replace "$StripSuffix", '' -replace "\\", "/")
}
$Template = If ("$Module" -eq "") {
"angular.module('{0}', []).run(function(`$templateCache) {{`n" `
+ " `$templateCache.put('{0}',`n '{2}');`n" `
+ "}});`n"
} Else {
"(function(module) {{`n" `
+ "try {{`n" `
+ " module = angular.module('{1}');`n" `
+ "}} catch (e) {{`n" `
+ " module = angular.module('{1}', []);`n" `
+ "}}`n" `
+ "module.run(function(`$templateCache) {{`n" `
+ " `$templateCache.put('{0}',`n '{2}');`n" `
+ "}});`n" `
+ "}})();`n"
}
Get-ChildItem $Path -Recurse -Filter *.html | Foreach-Object {
$content = Get-Content $_.FullName | Out-String
$content = EscapeContent $content
$fileName = Rename "$($_.FullName)"
("$Template" -f "$fileName", "$Module", "$content") | Set-Content "$($_.FullName).js"
}
{
"References": [
{ "Path": "./path/to/templates/", "Include": "*.html.js" },
],
"Compile": {
"Extensions": [".html"],
"ExtensionsWithNoOutput": [".html.js"],
"SourceDirectory": "./path/to/templates",
"OutDirectory": "./path/to/templates",
"Executable": "%powershellexe%",
"Arguments": "-NoProfile %chutzpahsettingsdir%\\chutzpah-ng-html2js-compiler.ps1 -Path '/path/to/templates/' -Module 'templates' -StripPrefix '.+(?=\\\\templates)'"
}
}
beforeEach(module('templates'));
// or alternatively
beforeEach(module('/path/to/templates/foo.html'));
关于angularjs - 如何在 Chutzpah 的 headless 浏览器中使用 templateUrl 测试指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19313645/
我是一名优秀的程序员,十分优秀!