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

时间:2016-02-29 10:57:20

标签: testing extjs extjs4.2 siesta

我已经设置了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 }
)

我想在'tests / S_0-R_PjM.js'中运行'tests / S_0-R_PjM.js',具体取决于我的应用程序index.html设置的windows对象的特定值。

我的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
})

有人可以指导我吗?

1 个答案:

答案 0 :(得分:1)

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

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

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

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