拉力赛工具 - API

时间:2016-02-02 22:35:56

标签: rally

到目前为止,我们已经使用了QC工具,但从现在起我们将开始使用Rally工具。

由于QC是测试结果的系统,我们曾经使用基于API设计的宏从中提取数据。

现在是时候开始研究Rally并设计这样的工具了。任何人都可以帮助我理解如何连接Rally并使用任何编程语言(尤其是vb脚本)以excel格式提取数据。我的第一个兴趣是找出Rally是否有像QC一样的API,用于连接和提取数据?

1 个答案:

答案 0 :(得分:0)

#!/usr/bin/env ruby

# This Ruby script will print out the names of all Workspaces the user has access to.
# More API info:  https://github.com/RallyTools/RallyRestToolkitForRuby
# Invoke with 3 arguments:  'https://rally1.rallydev.com'  'username@domain.com'  'MyPassword'

require 'rally_api'

@rally = RallyAPI::RallyRestJson.new(
        :base_url   => ARGV[0].end_with?('/slm') ? "#{ARGV[0]}" : "#{ARGV[0]}/slm",
        :username   => "#{ARGV[1]}",
        :password   => "#{ARGV[2]}",
        :version    => 'v2.0')

sub = @rally.find(RallyAPI::RallyQuery.new(
        :type           => :subscription,
        :query_string   => '(ObjectID > 0)',
        :fetch          => true))

sub.first[:Workspaces].each_with_index do |w,i|
    puts "Workspace #{i+1} - #{w}"
end 

#[the end]#