Exemple #1
0
 def test_update_query_params_replace_param(self):
     base_uri = 'http://www.google.com'
     uri = base_uri + '?x=a'
     updated = _helpers.update_query_params(uri, {'x': 'b', 'y': 'c'})
     hardcoded_update = base_uri + '?x=b&y=c'
     test_client.assertUrisEqual(self, updated, hardcoded_update)
Exemple #2
0
 def test_update_query_params_replace_param(self):
     base_uri = 'http://www.google.com'
     uri = base_uri + '?x=a'
     updated = _helpers.update_query_params(uri, {'x': 'b', 'y': 'c'})
     hardcoded_update = base_uri + '?x=b&y=c'
     test_client.assertUrisEqual(self, updated, hardcoded_update)
Exemple #3
0
 def test_update_query_params_existing_params(self):
     uri = 'http://www.google.com?x=y'
     updated = _helpers.update_query_params(uri, {'a': 'b', 'c': 'd&'})
     hardcoded_update = uri + '&a=b&c=d%26'
     test_client.assertUrisEqual(self, updated, hardcoded_update)
Exemple #4
0
 def test_update_query_params_existing_params(self):
     uri = 'http://www.google.com?x=y'
     updated = _helpers.update_query_params(uri, {'a': 'b', 'c': 'd&'})
     hardcoded_update = uri + '&a=b&c=d%26'
     test_client.assertUrisEqual(self, updated, hardcoded_update)