Example #1
0
 def test_update_query_params_repeated_params(self):
     uri = 'http://www.google.com?x=a&x=b'
     with self.assertRaises(ValueError):
         _helpers.update_query_params(uri, {'a': 'c'})
Example #2
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)
Example #3
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)
Example #4
0
 def test_update_query_params_no_params(self):
     uri = 'http://www.google.com'
     updated = _helpers.update_query_params(uri, {'a': 'b'})
     self.assertEqual(updated, uri + '?a=b')
Example #5
0
 def test_update_query_params_repeated_params(self):
     uri = 'http://www.google.com?x=a&x=b'
     with self.assertRaises(ValueError):
         _helpers.update_query_params(uri, {'a': 'c'})
Example #6
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)
Example #7
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)
Example #8
0
 def test_update_query_params_no_params(self):
     uri = 'http://www.google.com'
     updated = _helpers.update_query_params(uri, {'a': 'b'})
     self.assertEqual(updated, uri + '?a=b')