我们的应用程序的后端位于PHP
,而对于前端,我们正在使用AngularJs
。
我们成功地使用protractor
在本地和生产服务器上运行e2e测试。
在为我们的应用程序编写了大量的e2e测试之后,我们开始寻找类似于单元测试的覆盖范围。在搜索了很多之后,幸运的是我们找到了https://www.npmjs.com/package/grunt-protractor-coverage,正是我们想要的。
我从http://lkrnac.net/blog/2014/04/measuring-code-coverage-by-protractor/文章中获得了帮助,这篇文章非常有助于设置所有内容。我为我的应用程序设置了配置和其他grunt任务,最后我们的代码(js文件)被正确检测。我将其余文件(html,静态等)复制到该检测代码,并为proractor-config
文件提供了正确的路径。测试在之前运行时开始运行,但这次是使用检测文件。
直到这一点,一切都是OK
。但是,当执行生成coverage-report
的任务时,我们发现我们有空coverage.json
个文件{}
。这意味着报告肯定是空的,因为它读取该文件以生成报告,据我所知,该文件是由protractor-coverage
grunt任务在测试执行时生成的。它使用3001
req将信息发送到收集器(端口:POST
),在生成报告时,正在向同一收集器发送GET
req。
所以,我想的是,收藏家没有POST
请求。
var options = {
hostname: 'localhost',
port: <%=collectorPort%>,
path: '/data',
method: 'POST',
headers:{
'Content-Type':'application/json'
}
};
function saveCoverage(data){
var req = http.request(options, function(res) {
res.on('data', function (chunk) {
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
req.write(JSON.stringify(data));
req.write('\n');
req.end();
}
每次只显示 它应该列出每个文件:
还,100
到处都是误导,我按照说明对源代码http://lkrnac.net/blog/2014/04/measuring-code-coverage-by-protractor/进行了测试,但即使只有一个e2e测试时,报告必须给出实际数字,而不是为所有人提供直接100
。
我可能会遇到一些错误的配置或错过了某些内容。
以下是我的文件:
'use strict';
module.exports = function(grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Define the configuration for all the tasks
grunt.initConfig({
// Project settings
yeoman: {
// configurable paths
app: 'app',
dist: 'dist-test',
e2e: 'coverage/e2e',
instrumentedServer: 'coverage/server/instrument',
instrumentedE2E: 'coverage/e2e/instrumented'
},
// Empties folders to start fresh
clean: {
coverageE2E: {
src: ['<%= yeoman.e2e %>/'],
}
},
// Copies remaining files to places other tasks can use
copy: {
coverageE2E: {
files: [{
expand: true,
dot: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.e2e %>/instrumented/app',
src: [
'**/*',
'!modules/**/*.js',
'!editor/**/*.js'
]
}, {
expand: true,
cwd: '.tmp/images',
dest: '<%= yeoman.e2e %>/instrumented/app/images',
src: ['generated/*']
}, ]
},
},
// start - code coverage settings
instrument: {
files: ['app/modules/**/*.js', 'app/editor/**/*.js'],
options: {
lazy: true,
basePath: 'coverage/e2e/instrumented/'
}
},
makeReport: {
src: '<%= yeoman.instrumentedE2E %>/*.json',
options: {
type: 'html',
dir: '<%= yeoman.e2e %>/reports',
print: 'detail',
// type: 'lcov'
// dir: 'reports'
}
},
protractor_coverage: {
options: {
configFile: 'test/e2e/protractor-config.js', // Default config file
keepAlive: true, // If false, the grunt process stops when the test fails.
noColor: false, // If true, protractor will not use colors in its output.
coverageDir: '<%= yeoman.instrumentedE2E %>',
args: {},
run: {}
},
chrome: {
options: {
args: {
baseUrl: 'https://localapp.vwo.com/v3/#/',
// Arguments passed to the command
'browser': 'chrome'
}
}
}
}
});
grunt.registerTask('default', [
'clean:coverageE2E',
'copy:coverageE2E',
'instrument',
'protractor_coverage:chrome',
'makeReport'
]);
};
我的coverage.json
文件:
{}