gpt4 book ai didi

testing - Siesta - 根据特定条件运行子测试(来自另一个测试文件)

转载 作者:行者123 更新时间:2023-11-28 21:27:31 25 4
gpt4 key购买 nike

我已经设置了 siesta lite 来测试我的 ExtJs 4 应用程序。我想根据我的应用程序的 window.xxx 和 window.yyy 的值运行测试。所以如果 xxx= 1 和 yyy= 'xyz',我想运行一个特定的测试文件让我们说 test1.js。我读了siesta documentation但我找不到任何东西。

这是我的代码:

var harness = new Siesta.Harness.Browser.ExtJS()
window.harnessObj = harness;
harness.configure({
title : 'My Tests',
preload : [
/* '../resources/extjs-4.2/resources/css/ext-all.css',
'../resources/extjs-4.2/ext-all-debug.js',
'../resources/json/textLabels.js',*/
]
});

harness.start(
{
group: 'Unit Tests',
pageUrl: '../index.html?unittest',
items:
[
{
title : 'PopUpWindow',
url : 'tests/PopUpWindow.js'
},
{
title : 'S_0-R_PjM',
url : 'tests/S_0-R_PjM.js'
}
]
}
);

harness.on('testsuitestart', function (event, harness)
{
//debugger;
console.log('I fucking love Testing')
}, this,
{ single : true }
)

我想根据我的应用程序 index.html 设置的 Windows 对象的特定值,在“tests/S_0-R_PjM.js”中运行“tests/S_0-R_PjM.js”。

我的 index.js 看起来像这样://还支持:startTest(function(t) {

describe(function(t) {
t.diag("PfalzkomApp Loading Test");

t.ok(Ext, 'ExtJS has been loaded');
t.ok(Ext.Window, 'ExtJS.Window has been loaded');
t.ok(window.xxx, loaded with value :' + window.xxx);
t.ok(window.yyy, loaded with value :' + window.yyy);

var status = parseInt(window.xxx);
var role = window.yyy;

switch(status) {
case 111:
switch(role)
{
case "abc":
debugger;
// How to load another test file(tests/S_0-R_PjM.js) and start that test here !!!
break;
case "def":

break;
}
}

t.done();
})

//更新的问题 - 我想将示例代码放入另一个测试文件并在需要时调用它

StartTest(function(t) {
t.diag("Case: Status: Neu and Role:PjM ");
//S_0-R_PjM
t.ok(Ext, 'ExtJS has been loaded');

t.done(); // Optional, marks the correct exit point from the test
})

有人可以指导我吗?

最佳答案

我不知道 harness 文件中有任何内置函数可以帮助您实现这一点。

但如果您真的不想将所有代码放在一个文件中,您可以使用 TestClass - 有了这个,您可以将代码放在不同的文件中。

http://www.bryntum.com/docs/siesta/#!/guide/extending_test_class

请记住,这不会加载不同的“测试”。您的 Siesta 界面中仍然会有 1 个测试文件,但它将根据您的 if 语句执行不同的代码。

关于testing - Siesta - 根据特定条件运行子测试(来自另一个测试文件),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35697818/

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