我正在尝试学习qunit测试;我是一名OpenUi5开发人员,每天都使用Webstorm IDE。
Webstorm允许我配置Karma运行配置。我创建了一个简单的业力配置文件,我已经编写了一个测试文件test1.js
:
test("Test function sum()",
function() {
ok(sum(0, 0) == 0, "the sum of 0 with 0 is 0");
ok(sum(2, 0) == 2, "the sum of 2 with 0 is 2");
ok(sum(2, 1) == 3, "the sum of 2 with 1 is 3");
ok(sum(2, -1) == 1, "the sum of 2 with -1 is 1");
ok(sum(-2, 1) == -1, "the sum of -2 with 1 is -1");
});
function sum(a, b) {
return a + b;
};
好! sum函数在同一个文件中。但是现在我想开始在项目的js
文件夹中测试函数(单元测试在test-resources
文件夹中);例如在js/util.js
我有getShortIdGrid
函数:
//util.js file
jQuery.sap.declare("ui5bp.control");
ui5bp.control = {
...
getShortIdGrid: function(sFromId) {
if (sFromId.lastIndexOf("_") < 0)
return sFromId;
else
return sFromId.substring(0, sFromId.lastIndexOf("_"));
},
...
}
这是我的测试:
test("test getShortIdGrid",
function () {
equal( ui5bp.control.getShortIdGrid("shortId_123"), "shortId" ,"ShortIdGrid of 'shortId_123' is 'shortId'" );
});
如何在测试中致电ui5bp.controlgetShortIdGrid
?
Karma控制台告诉我 ReferenceError:ui5bp未定义。
正确加载util.js文件后,如何在顶部管理声明jQuery.sap.declare("ui5bp.control");
?我想测试我的简单功能,而无需重新启动完整的库!
答案 0 :(得分:3)
您需要确保 unit.js 包含在karma配置文件files
属性中,以使其可用于karma。例如,如果你的unit.js位于/ src文件夹中,而你的规格在/ tests中,它将如下所示:
module.exports = function (config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '',
frameworks: ['qunit'],
files: [
'tests/**/*.js',
'src/*.js'
],
exclude: [],
...
足以让ui5bp得到解决