cookies are split by ;

This commit is contained in:
Sven Fuchs 2013-02-27 01:35:53 +01:00
parent 1fd16ef555
commit 1e6067f54c
2 changed files with 7 additions and 13 deletions

View File

@ -9,27 +9,21 @@ class Travis::Web::App::AltVersions
alt = alt_from_params(env) || alt_from_cookie(env)
env['travis.alt'] = alt if alt
status, headers, body = app.call(env)
set_cookie(headers, alt) if alt
headers['Set-Cookie'] = cookie(alt) if alt
[status, headers, body]
end
private
def set_cookie(headers, alt)
cookie = "alt=#{alt}; path=/; max-age=#{alt == 'default' ? 0 : 86400}"
puts "setting cookie #{cookie}"
headers['Set-Cookie'] = cookie
def cookie(alt)
"alt=#{alt}; path=/; max-age=#{alt == 'default' ? 0 : 86400}"
end
def alt_from_params(env)
alt_from_string env['QUERY_STRING']
$1 if env['QUERY_STRING'] =~ /alt=([^&]*)/
end
def alt_from_cookie(env)
alt_from_string env['HTTP_COOKIE']
end
def alt_from_string(string)
$1 if string =~ /alt=([^&]*)/
$1 if env['HTTP_COOKIE'] =~ /alt=([^;]*)/
end
end

View File

@ -42,12 +42,12 @@ describe Travis::Web::App do
example { last_response.should be_ok }
example { last_response.body.should include('/assets/foo/styles/app.css') }
example { last_response.body.should include('/assets/foo/scripts/app.js') }
example { headers['Set-Cookie'].should == 'alt=foo; Domain=travis-ci.org; Secure; Max-Age=86400' }
example { headers['Set-Cookie'].should == 'alt=foo; path=/; max-age=86400' }
end
context 'passing default as an alt param' do
before { get('/?alt=default') }
example { headers['Set-Cookie'].should == 'alt=default; Domain=travis-ci.org; Secure; Max-Age=0' }
example { headers['Set-Cookie'].should == 'alt=default; path=/; max-age=0' }
end
end
end