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)
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)