gpt4 book ai didi

javascript - 使用带有静态文件而不是服务器的 Karma 进行 AngularJS 端到端测试

转载 作者:行者123 更新时间:2023-11-29 10:17:34 25 4
gpt4 key购买 nike

我对我的 AngularJS 应用程序进行了端到端测试,并且我使用 Karma 作为我的测试运行器。我目前在我的 karma 配置中有以下内容:

config.proxies = {
'/': 'http://localhost:9292/'
};

我必须单独启动一个简单的 Rack 应用程序来为我的单个静态 AngularJS HTML 文件提供服务。我想要测试静态文件的端到端测试,就像加载 file:///Users/sarah/my-app/index.html 一样。我试过在我的测试中不设置代理并执行 browser().navigateTo 'index.html',但测试都失败了,因为我的 element 调用“没有匹配任何元素”。 index.html 页面似乎未加载。

我还尝试在 '/': 'file:///Users/sarah/my-app/ 处设置代理,然后执行 browser().navigateTo '/index.html' 在我的测试中,但失败并出现错误“options.host and options.port or options.target are required”。虽然我想我可以将端口设置为 80,但没有主机——这就是重点。

我的目标是让我的端到端测试在 Semaphore 上自动运行,我的 AngularJS 单元测试当前运行的地方。单元测试不同,因为它们不需要访问我的应用程序实例。

我想做的事可行吗?如果没有,有什么方法可以在 Semaphore 上运行我的 AngularJS 应用程序的单元测试和端到端测试,而无需将我的应用程序托管在 Semaphore 可以访问的某些公共(public)服务器上?

最佳答案

好的,我得到了最终结果:在 Semaphore 上进行自动化端到端测试。诀窍是创建一个单独的 test-index.html,它使用我的应用程序的测试版本。它有 <html ng-app="TestMyApp">而不是 <html ng-app="MyApp"> .它还包括以下额外的 JavaScript,我的实际 index.html 没有:

<script src="http://code.angularjs.org/1.0.7/angular-mocks.js" type="text/javascript"></script>
<script src="spec/e2e/test_api_app.js" type="text/javascript"></script>

我的 test_api_app.js 实际上是由 karma-coffee-preprocessor 从 CoffeeScript 编译而来的,但这里是 CoffeeScript 源代码:

angular.module('TestMyApp', ['MyApp', 'ngMockE2E']).run ($httpBackend) ->
$httpBackend.when('GET', 'http://some-api-my-app-uses/images').respond
status: 'success'
images: [...]
// more mocked calls MyApp makes

然后在我的 karma-e2e.config.js 中,我没有设置 urlRoot ,我设置的唯一代理只是因为我的 CoffeeScript 应用程序文件位于 coffee 目录中,并且该应用程序希望编译的 Javascript 位于/js:

config.proxies = {
'/base/js/app.js': 'http://localhost:' + config.port +
'/base/coffee/app.js',
// other mapping from the URLs my app expects to exist to where
// karma-coffee-preprocessor puts the compiled JavaScript

这里巧妙的是 Karma 自己运行一个服务器,所以它为我托管了我的静态 test-index.html 文件。在我上面的代理中,'http://localhost:' + config.port部分是指 karma 服务器。 config.port在我的 Karma 配置中的其他地方定义为 9876。

我定义了我的 Karma config.files包括:

'https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js',
'http://code.angularjs.org/1.0.7/angular-mocks.js',
'http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js',
'coffee/**/*.coffee',
'http://code.angularjs.org/1.0.7/angular-resource.min.js',
'spec/e2e/**/*_spec.coffee',
'spec/e2e/test_api_app.coffee',
{
pattern: 'css/*.css',
watched: true,
included: false,
served: true
},
{
pattern: 'img/spinner.gif',
watched: true,
included: false,
served: true
},
{
pattern: 'test-index.html',
watched: true,
included: false,
served: true
}

然后在我的端到端测试中,我会:

browser().navigateTo '/base/test-index.html#/'

我有一个包含以下脚本的 package.json:

"scripts": {
"test": "bundle exec sass scss/my-app.scss css/my-app.css ; ./node_modules/.bin/karma start spec/karma-unit-functional.config.js --single-run --browsers Firefox ; ./node_modules/.bin/karma start spec/karma-e2e.config.js --single-run --browsers Firefox"
}

我编译 CSS 文件,这样当我运行端到端测试时,它不会给出关于 my-app.css 不存在的 404 错误。我在 Semaphore 上的构建命令是:

bundle install
npm install
npm test

测试通过!

关于javascript - 使用带有静态文件而不是服务器的 Karma 进行 AngularJS 端到端测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18535887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com