Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Bouncer tests #25

Merged
merged 1 commit into from Mar 1, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions tests/test_redirects.py
Expand Up @@ -116,3 +116,35 @@ def test_redirect_for_firefox_aliases(self, testsetup, product_alias):
product_alias['product_name'] != 'firefox-latest-euballot' product_alias['product_name'] != 'firefox-latest-euballot'
): ):
Assert.contains('/%s/' % 'win32', parsed_url.path) Assert.contains('/%s/' % 'win32', parsed_url.path)

def test_redirect_for_windows_to_version19(self, testsetup):
url = testsetup.base_url
param = {
'product': 'firefox-19.0',
'os': 'win',
'lang': 'en-US',
}

response = self._head_request(url, params=param)

parsed_url = urlparse(response.url)

Assert.true('19.0' in parsed_url.path, 'Redirect failed using params of %s' % (parsed_url.path))


def test_redirect_special_for_win8_os(self, testsetup):
url = testsetup.base_url
param = {
'product': 'firefox-19.0',
'os': 'win',
'lang': 'en-US',
}

user_agent_string = 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)';

response = self._head_request(url, params=param, user_agent = user_agent_string)

parsed_url = urlparse(response.url)

Assert.true('19.0.1' in parsed_url.path, 'Redirect failed using params of %s' % (parsed_url.path))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test fails for me: http://pastebin.mozilla.org/2186139