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

Commit

Permalink
removing 19.0.1 redirect checks
Browse files Browse the repository at this point in the history
  • Loading branch information
retornam committed Mar 7, 2013
1 parent b669c59 commit 3f35079
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions tests/test_redirects.py
Expand Up @@ -116,35 +116,4 @@ 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))

0 comments on commit 3f35079

Please sign in to comment.