Merge pull request #99 from travis-ci/ha-api-gh47-aggregate-cc-xml

Respond to /repos.xml with CC XML
This commit is contained in:
Sven Fuchs 2014-01-17 12:50:26 -08:00
commit 0c6576fec1
3 changed files with 25 additions and 41 deletions

View File

@ -1,6 +1,22 @@
module Travis::Api::App::Responders
# This XML responder is used if the resource is a Repository, or a collection
# of Repositories.
# It returns XML data conforming to Multiple Project Summary Reporting Standard,
# as explained in http://confluence.public.thoughtworks.org/display/CI/Multiple+Project+Summary+Reporting+Standard
class Xml < Base
TEMPLATE = File.read(__FILE__).split("__END__").last.strip
TEMPLATE_ERB = ERB.new <<-EOF
<Projects>
<% @resource.each do |r| %>
<Project
name="<%= r.slug %>"
activity="<%= ACTIVITY[r.last_build.state.to_sym] || ACTIVITY[:default] %>"
lastBuildStatus="<%= STATUS[r.last_build.state.to_sym] || STATUS[:default] %>"
lastBuildLabel="<%= r.last_build.try(:number) %>"
lastBuildTime="<%= r.last_build.finished_at.try(:strftime, '%Y-%m-%dT%H:%M:%S.%L%z') %>"
webUrl="https://<%= Travis.config.client_domain %>/<%= r.slug %>" />
<% end %>
</Projects>
EOF
STATUS = {
default: 'Unknown',
@ -16,13 +32,14 @@ module Travis::Api::App::Responders
}
def apply?
super && resource.is_a?(Repository) && last_build
@resource = Array(resource)
super && @resource.first.is_a?(Repository)
end
def apply
super
TEMPLATE % data
TEMPLATE_ERB.result(binding)
end
private
@ -30,40 +47,5 @@ module Travis::Api::App::Responders
def content_type
'application/xml;charset=utf-8'
end
def data
{
name: resource.slug,
url: File.join("https://", Travis.config.client_domain, resource.slug),
activity: activity,
label: last_build.try(:number),
status: status,
time: last_build.finished_at.try(:strftime, '%Y-%m-%dT%H:%M:%S.%L%z')
}
end
def status
STATUS[last_build.state.to_sym] || STATUS[:default]
end
def activity
ACTIVITY[last_build.state.to_sym] || ACTIVITY[:default]
end
def last_build
@last_build ||= resource.last_build
end
end
end
__END__
<Projects>
<Project
name="%{name}"
activity="%{activity}"
lastBuildStatus="%{status}"
lastBuildLabel="%{label}"
lastBuildTime="%{time}"
webUrl="%{url}" />
</Projects>

View File

@ -107,9 +107,9 @@ describe 'Repos' do
response.should deliver_cc_xml_for(Repository.by_slug('svenfuchs/minimal').first)
end
it 'does not respond with cc.xml for /repos list' do
it 'responds with cc.xml for /repos list' do
response = get '/repos', {}, 'HTTP_ACCEPT' => 'application/xml; version=2'
response.status.should == 406
response.should deliver_cc_xml_for(Repository.timeline)
end
it 'responds with 404 when repo can\'t be found and format is png' do

View File

@ -54,7 +54,7 @@ RSpec::Matchers.define :deliver_result_image_for do |name|
end
end
RSpec::Matchers.define :deliver_cc_xml_for do |repo|
RSpec::Matchers.define :deliver_cc_xml_for do |obj|
match do |response|
body = response.body
@ -62,6 +62,8 @@ RSpec::Matchers.define :deliver_cc_xml_for do |repo|
"expected #{body} to be a valid cc.xml"
end
repo = Array(obj).first
body.include?('<Projects>') && body.include?(%(name="#{repo.slug}")) && body.include?("https://www.example.com/#{repo.slug}")
end
end