-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Adjust Field Names in URI Templates (#1041)
* Fix:Adjust Field Names in URI Templates That Conflict with Reserved Names * fix: add grpcio-status module now required by unit tests. Co-authored-by: Kenneth Bandes <kbandes@google.com>
- Loading branch information
Showing
6 changed files
with
101 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from gapic.utils.reserved_names import RESERVED_NAMES | ||
from google.api_core import path_template # type: ignore | ||
|
||
|
||
def convert_uri_fieldnames(uri: str) -> str: | ||
"""Modify field names in uri_templates to avoid reserved names. | ||
Args: | ||
uri: a uri template, optionally containing field references in {} braces. | ||
Returns: | ||
the uri with any field names modified if they conflict with | ||
reserved names. | ||
""" | ||
|
||
def _fix_name_segment(name_seg: str) -> str: | ||
return name_seg + "_" if name_seg in RESERVED_NAMES else name_seg | ||
|
||
def _fix_field_path(field_path: str) -> str: | ||
return ".".join( | ||
(_fix_name_segment(name_seg) for name_seg in field_path.split("."))) | ||
|
||
last = 0 | ||
pieces = [] | ||
for match in path_template._VARIABLE_RE.finditer(uri): | ||
start_pos, end_pos = match.span("name") | ||
if start_pos == end_pos: | ||
continue | ||
pieces.append(uri[last:start_pos]) | ||
fixed_field_path = _fix_field_path(uri[start_pos:end_pos]) | ||
pieces.append(fixed_field_path) | ||
last = end_pos | ||
pieces.append(uri[last:]) | ||
|
||
return "".join(pieces) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from unittest import mock | ||
|
||
import pypandoc | ||
|
||
from gapic import utils | ||
|
||
|
||
def test_convert_uri_fieldname(): | ||
uri = "abc/*/license/{license}/{xyz.reversed=reversed/*}" | ||
expected_uri = "abc/*/license/{license_}/{xyz.reversed_=reversed/*}" | ||
assert utils.convert_uri_fieldnames(uri) == expected_uri | ||
|
||
|
||
def test_convert_uri_fieldname_no_fields(): | ||
uri = "abc/license" | ||
assert utils.convert_uri_fieldnames(uri) == uri | ||
|
||
|
||
def test_convert_uri_fieldname_no_reserved_names(): | ||
uri = "abc/*/books/{book}/{xyz.chapter=page/*}" | ||
assert utils.convert_uri_fieldnames(uri) == uri |