fix(api-redirect): update regex used for determining when to redirect

With the old redirect, repositories with "png" in the name got
redirected as well as images.
This commit is contained in:
Henrik Hodne 2014-03-12 13:07:57 -05:00
parent ed959be433
commit 24a3714d62
2 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class Travis::Web::ApiRedirect < Sinatra::Base
end
end
get NotPublicImages.new(%r{^/([^/]+)/([^/]+).png}, %r{^/images/}) do
get NotPublicImages.new(%r{^/([^/]+)/([^/]+)\.png$}, %r{^/images/}) do
redirect!
end

View File

@ -10,4 +10,8 @@ describe Travis::Web::ApiRedirect do
it 'redirects /:owner/:repo.png' do
get('/foo/bar.png').should be_redirect
end
it 'does not redirect /owner/some-png-repo' do
get('/owner/some-png-repo').should_not be_redirect
end
end