3

我对我的 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 可以访问的某个公共服务器上?

4

1 回答 1

4

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

<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 应用程序文件位于咖啡目录中,并且应用程序希望编译后的 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。

我将我的业力定义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

并且测试通过了!

于 2013-08-30T19:23:35.527 回答