好的,我得到了最终结果:在 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
并且测试通过了!