我有一个使用 Rally sdk 2.1 开发的自定义拉力应用程序。该应用程序从链接到当前 sprint 中的测试集的测试用例中查询测试用例结果。应用程序无法提取一些 TC 存在问题。当您的 TS 具有来自多个项目的 TC 时,就会出现问题。应用程序上下文将启动,并且只允许从当前项目上下文中查询 TC,从而导致数据间隙。
下面的代码正在检索测试用例结果的数据,但受到项目上下文的限制。
var tsid = req.testsetid;
var ts = req.testsetname;
Ext.Array.each(data, function (testcase) {
var tcid = testcase.get('ObjectID');
Ext.create('Rally.data.WsapiDataStore', {
model: 'testcaseresult',
fetch: ['Verdict', 'Date'],
limit: Infinity,
autoLoad: true,
filters: [
{
property: 'TestCase.ObjectID',
operator: '=',
value: tcid
},
{
property: 'TestSet.ObjectID',
operator: '=',
value: tsid
}],
sorters: { property: 'Date', direction: 'DESC' },
listeners: {
load: this._testCaseResultDataLoaded,
itemname: ts,
scope: this
}
});
}, this);