0

在 Ruby 中是否有一个使用 rally_api 的示例如何设置这里提到的功能状态?

具体来说,有没有办法查询要使用的 ObjectID 或完全限定的状态路径

"State" => "Developing"

代替

"State" => "/state/<ObjectID>"
4

1 回答 1

0

可以查询 State,创建一个散列,并用查询结果填充散列,其中 State Name 是键,State _ref 是值:

state_results.each do |s|
    s.read
    state_hash[s["Name"]] = s["_ref"]
end

然后我们可以更新一个状态:

features.each do |f|
    field_updates={"State" => state_hash["Developing"]}
    f.update(field_updates)
end

这是一个代码示例:

@rally = RallyAPI::RallyRestJson.new(config)

queryState = RallyAPI::RallyQuery.new()
queryState.type = :state
queryState.fetch = "true"
queryState.workspace = {"_ref" => "https://rally1.rallydev.com/slm/webservice/v2.0/workspace/11111" } 
queryState.project = {"_ref" => "https://rally1.rallydev.com/slm/webservice/v2.0/project/22222" } #use valid OIDs
queryState.query_string = "(TypeDef.Name = \"Feature\")"

state_hash = Hash.new

state_results = @rally.find(queryState)

state_results.each do |s|
    s.read
    #puts "Ref: #{s["_ref"]}, Name: #{s["Name"] }, TypeDef: #{s["TypeDef"]}" 
    state_hash[s["Name"]] = s["_ref"]
end 

query = RallyAPI::RallyQuery.new()
query.type = "portfolioitem/feature"
query.fetch = "Name,FormattedID"
query.workspace = {"_ref" => "https://rally1.rallydev.com/slm/webservice/v2.0/workspace/1111" } 
query.project = {"_ref" => "https://rally1.rallydev.com/slm/webservice/v2.0/project/22222" } #use valid OIDs
query.query_string = "(Name = \"my feature\")"


results = @rally.find(query)
features = [];

results.each do |f|
     f.read
     puts "Current state of Feature #{f["FormattedID"]}: #{f["State"].to_s}"
     features << f
end


features.each do |f|
    field_updates={"State" => state_hash["Developing"]}
    f.update(field_updates)
    puts "Feature #{f["FormattedID"]} is now in State: #{f["State"].to_s}"
end
于 2013-07-18T14:31:32.863 回答