Skip to content
This repository was archived by the owner on Aug 20, 2018. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions tests/test_redirects.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,35 @@ def test_redirect_for_firefox_aliases(self, testsetup, product_alias):
product_alias['product_name'] != 'firefox-latest-euballot'
):
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