使用它检索用户故事和相关的测试用例

时间:2014-02-11 01:01:12

标签: rally excel-addins

我正在使用Rally excel加载项并尝试检索用户故事和相关的测试用例。我在报告“User Story”中添加了另外一列来检索TestCase.Name并尝试了TestCase.FormattedID。在这两种情况下,我都会收到空列。我究竟做错了什么? 此外,还有一列“测试用例数”,它也总是不返回任何内容。

2 个答案:

答案 0 :(得分:1)

这是一个自定义应用程序,用于构建用户素材和相关测试用例的网格。看起来这是您要显示的数据:

enter image description here

代码可在this git hub repo中找到。您可以将html文件复制/粘贴到自定义页面中。

Ext.define('CustomApp', {
    extend: 'Rally.app.TimeboxScopedApp',
    componentCls: 'app',
    scopeType: 'iteration',
    comboboxConfig: {
        fieldLabel: 'Select an Iteration:',
        labelWidth: 100,
        width: 300
    },

   onScopeChange: function() {
        Ext.create('Rally.data.WsapiDataStore', {
            model: 'UserStory',
            fetch: ['FormattedID','Name','TestCases'],
            pageSize: 100,
            autoLoad: true,
            filters: [this.getContext().getTimeboxScope().getQueryFilter()],
            listeners: {
                load: this._onDataLoaded,
                scope: this
            }
        }); 
    },

     _onDataLoaded: function(store, data){
                var stories = [];
                var pendingTestCases = data.length;

                Ext.Array.each(data, function(story) {
                            var s  = {
                                FormattedID: story.get('FormattedID'),
                                Name: story.get('Name'),
                                _ref: story.get("_ref"),
                                TestCaseCount: story.get('TestCases').Count,
                                TestCases: []
                            };

                            var testcases = story.getCollection('TestCases');
                            testcases.load({
                                fetch: ['FormattedID'],
                                callback: function(records, operation, success){
                                    Ext.Array.each(records, function(testcase){
                                        s.TestCases.push({_ref: testcase.get('_ref'),
                                                        FormattedID: testcase.get('FormattedID'),
                                                        Name: testcase.get('Name')
                                                    });
                                    }, this);

                                    --pendingTestCases;
                                    if (pendingTestCases === 0) {
                                        this._createGrid(stories);
                                    }
                                },
                                scope: this
                            });
                            stories.push(s);
                }, this);
    } ,            

    _createGrid: function(stories) {
        var myStore = Ext.create('Rally.data.custom.Store', {
                data: stories,
                pageSize: 100,  
            });
        if (!this.grid) {
        this.grid = this.add({
            xtype: 'rallygrid',
            itemId: 'mygrid',
            store: myStore,
            columnCfgs: [
                {
                   text: 'Formatted ID', dataIndex: 'FormattedID', xtype: 'templatecolumn',
                    tpl: Ext.create('Rally.ui.renderer.template.FormattedIDTemplate')
                },
                {
                    text: 'Name', dataIndex: 'Name'
                },
                {
                    text: 'TestCase Count', dataIndex: 'TestCaseCount'
                },
                {
                    text: 'Test Cases', dataIndex: 'TestCases', flex:1,
                    renderer: function(value) {
                        var html = [];
                        Ext.Array.each(value, function(testcase){
                            html.push('<a href="' + Rally.nav.Manager.getDetailUrl(testcase) + '">' + testcase.FormattedID + '</a>' + ' ' + testcase.Name);
                        });
                        return html.join(', ');
                    }
                }
            ]
        });

         }else{
            this.grid.reconfigure(myStore);
         }
    }
});

如果您希望按版本而不是迭代进行过滤,则可以更改scopeType的{​​{1}}

Rally.app.TimeboxScopedApp

就Excel插件而言,我没有在User Story查询中看到可显示与故事相关联的测试用例的列。由于TestCases是WS API中HierarchicalRequirement对象的集合,因此必须单独进行查询以获取单个测试用例。这就是我在上面的代码中所做的。

以下是我的Excel插件的截图。有预期的TestCaseStatus,但不包括TestCases集合,因为集合只返回一个uri。也许您正在使用自定义工具从Rally导出到Excel。

enter image description here

答案 1 :(得分:0)

使用TestCases.FormattedID,它将以逗号分隔单个单元格中的所有链接测试用例。