Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for common resource paths #622

Merged
merged 3 commits into from
Sep 29, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,19 @@ class {{ service.client_name }}(metaclass={{ service.client_name }}Meta):
m = re.match(r"{{ message.path_regex_str }}", path)
return m.groupdict() if m else {}
{% endfor %}
{% for resource_msg in service.common_resources|sort(attribute="type_name") -%}
@staticmethod
def common_{{ resource_msg.message_type.resource_type|snake_case }}_path({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}: str, {%endfor %}) -> str:
"""Return a fully-qualified {{ resource_msg.message_type.resource_type|snake_case }} string."""
return "{{ resource_msg.message_type.resource_path }}".format({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}={{ arg }}, {% endfor %})

@staticmethod
def parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path(path: str) -> Dict[str,str]:
"""Parse a {{ resource_msg.message_type.resource_type|snake_case }} path into its component segments."""
m = re.match(r"{{ resource_msg.message_type.path_regex_str }}", path)
return m.groupdict() if m else {}

{% endfor %} {# common resources #}

def __init__(self, *,
credentials: Optional[credentials.Credentials] = None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -714,8 +714,8 @@ def test_{{ service.name|snake_case }}_grpc_lro_client():

{% endif -%}

{% for message in service.resource_messages|sort(attribute="resource_type") -%}
{% with molluscs = cycler("squid", "clam", "whelk", "octopus", "oyster", "nudibranch", "cuttlefish", "mussel", "winkle", "nautilus", "scallop", "abalone") -%}
{% for message in service.resource_messages|sort(attribute="resource_type") -%}
def test_{{ message.resource_type|snake_case }}_path():
{% for arg in message.resource_path_args -%}
{{ arg }} = "{{ molluscs.next() }}"
Expand All @@ -737,8 +737,31 @@ def test_parse_{{ message.resource_type|snake_case }}_path():
actual = {{ service.client_name }}.parse_{{ message.resource_type|snake_case }}_path(path)
assert expected == actual

{% endwith -%}
{% endfor -%}
{% for resource_msg in service.common_resources -%}
def test_common_{{ resource_msg.message_type.resource_type|snake_case }}_path():
{% for arg in resource_msg.message_type.resource_path_args -%}
{{ arg }} = "{{ molluscs.next() }}"
{% endfor %}
expected = "{{ resource_msg.message_type.resource_path }}".format({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}={{ arg }}, {% endfor %})
actual = {{ service.client_name }}.common_{{ resource_msg.message_type.resource_type|snake_case }}_path({{ resource_msg.message_type.resource_path_args|join(", ") }})
assert expected == actual


def test_parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path():
expected = {
{% for arg in resource_msg.message_type.resource_path_args -%}
"{{ arg }}": "{{ molluscs.next() }}",
{% endfor %}
}
path = {{ service.client_name }}.common_{{ resource_msg.message_type.resource_type|snake_case }}_path(**expected)

# Check that the path construction is reversible.
actual = {{ service.client_name }}.parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path(path)
assert expected == actual

{% endfor -%} {# common resources#}
{% endwith -%} {# cycler #}

def test_client_withDEFAULT_CLIENT_INFO():
client_info = gapic_v1.client_info.ClientInfo()
Expand Down
51 changes: 49 additions & 2 deletions gapic/schema/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
import dataclasses
import re
from itertools import chain
from typing import (cast, Dict, FrozenSet, Iterable, List, Mapping, Optional,
Sequence, Set, Tuple, Union)
from typing import (cast, Dict, FrozenSet, Iterable, List, Mapping,
ClassVar, Optional, Sequence, Set, Tuple, Union)

from google.api import annotations_pb2 # type: ignore
from google.api import client_pb2
Expand Down Expand Up @@ -855,6 +855,26 @@ def with_context(self, *, collisions: FrozenSet[str]) -> 'Method':
)


@dataclasses.dataclass(frozen=True)
class CommonResource:
type_name: str
pattern: str

@utils.cached_property
def message_type(self):
message_pb = descriptor_pb2.DescriptorProto()
res_pb = message_pb.options.Extensions[resource_pb2.resource]
res_pb.type = self.type_name
res_pb.pattern.append(self.pattern)

return MessageType(
message_pb=message_pb,
fields={},
nested_enums={},
nested_messages={},
)


@dataclasses.dataclass(frozen=True)
class Service:
"""Description of a service (defined with the ``service`` keyword)."""
Expand All @@ -864,6 +884,33 @@ class Service:
default_factory=metadata.Metadata,
)

common_resources: ClassVar[Sequence[CommonResource]] = dataclasses.field(
default=(
CommonResource(
"cloudresourcemanager.googleapis.com/Project",
"projects/{project}",
),
CommonResource(
"cloudresourcemanager.googleapis.com/Organization",
"organizations/{organization}",
),
CommonResource(
"cloudresourcemanager.googleapis.com/Folder",
"folders/{folder}",
),
CommonResource(
"cloudbilling.googleapis.com/BillingAccount",
"billingAccounts/{billing_account}",
),
CommonResource(
"locations.googleapis.com/Location",
"projects/{project}/locations/{location}",
),
),
init=False,
compare=False,
)

def __getattr__(self, name):
return getattr(self.service_pb, name)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ class {{ service.async_client_name }}:
{{ message.resource_type|snake_case }}_path = staticmethod({{ service.client_name }}.{{ message.resource_type|snake_case }}_path)
parse_{{ message.resource_type|snake_case}}_path = staticmethod({{ service.client_name }}.parse_{{ message.resource_type|snake_case }}_path)
{% endfor %}
{% for resource_msg in service.common_resources %}
common_{{ resource_msg.message_type.resource_type|snake_case }}_path = staticmethod({{ service.client_name }}.common_{{ resource_msg.message_type.resource_type|snake_case }}_path)
parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path = staticmethod({{ service.client_name }}.parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path)
{% endfor %}

from_service_account_file = {{ service.client_name }}.from_service_account_file
from_service_account_json = from_service_account_file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,20 @@ class {{ service.client_name }}(metaclass={{ service.client_name }}Meta):
"""Parse a {{ message.resource_type|snake_case }} path into its component segments."""
m = re.match(r"{{ message.path_regex_str }}", path)
return m.groupdict() if m else {}
{% endfor %}
{% endfor %} {# resources #}
{% for resource_msg in service.common_resources|sort(attribute="type_name") -%}
@staticmethod
def common_{{ resource_msg.message_type.resource_type|snake_case }}_path({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}: str, {%endfor %}) -> str:
"""Return a fully-qualified {{ resource_msg.message_type.resource_type|snake_case }} string."""
return "{{ resource_msg.message_type.resource_path }}".format({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}={{ arg }}, {% endfor %})

@staticmethod
def parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path(path: str) -> Dict[str,str]:
"""Parse a {{ resource_msg.message_type.resource_type|snake_case }} path into its component segments."""
m = re.match(r"{{ resource_msg.message_type.path_regex_str }}", path)
return m.groupdict() if m else {}

{% endfor %} {# common resources #}

def __init__(self, *,
credentials: Optional[credentials.Credentials] = None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1304,8 +1304,8 @@ def test_{{ service.name|snake_case }}_grpc_lro_async_client():

{% endif -%}

{% for message in service.resource_messages|sort(attribute="resource_type") -%}
{% with molluscs = cycler("squid", "clam", "whelk", "octopus", "oyster", "nudibranch", "cuttlefish", "mussel", "winkle", "nautilus", "scallop", "abalone") -%}
{% for message in service.resource_messages|sort(attribute="resource_type") -%}
def test_{{ message.resource_type|snake_case }}_path():
{% for arg in message.resource_path_args -%}
{{ arg }} = "{{ molluscs.next() }}"
Expand All @@ -1327,8 +1327,31 @@ def test_parse_{{ message.resource_type|snake_case }}_path():
actual = {{ service.client_name }}.parse_{{ message.resource_type|snake_case }}_path(path)
assert expected == actual

{% endwith -%}
{% endfor -%}
{% for resource_msg in service.common_resources -%}
def test_common_{{ resource_msg.message_type.resource_type|snake_case }}_path():
{% for arg in resource_msg.message_type.resource_path_args -%}
{{ arg }} = "{{ molluscs.next() }}"
{% endfor %}
expected = "{{ resource_msg.message_type.resource_path }}".format({% for arg in resource_msg.message_type.resource_path_args %}{{ arg }}={{ arg }}, {% endfor %})
actual = {{ service.client_name }}.common_{{ resource_msg.message_type.resource_type|snake_case }}_path({{ resource_msg.message_type.resource_path_args|join(", ") }})
assert expected == actual


def test_parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path():
expected = {
{% for arg in resource_msg.message_type.resource_path_args -%}
"{{ arg }}": "{{ molluscs.next() }}",
{% endfor %}
}
path = {{ service.client_name }}.common_{{ resource_msg.message_type.resource_type|snake_case }}_path(**expected)

# Check that the path construction is reversible.
actual = {{ service.client_name }}.parse_common_{{ resource_msg.message_type.resource_type|snake_case }}_path(path)
assert expected == actual

{% endfor -%} {# common resources#}
{% endwith -%} {# cycler #}


def test_client_withDEFAULT_CLIENT_INFO():
Expand Down
41 changes: 41 additions & 0 deletions tests/unit/schema/wrappers/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from google.protobuf import descriptor_pb2

from gapic.schema import imp
from gapic.schema.wrappers import CommonResource

from test_utils.test_utils import (
get_method,
Expand Down Expand Up @@ -295,3 +296,43 @@ def test_has_pagers():
),
)
assert not other_service.has_pagers


def test_default_common_resources():
service = make_service(name="MolluscMaker")

assert service.common_resources == (
CommonResource(
"cloudresourcemanager.googleapis.com/Project",
"projects/{project}",
),
CommonResource(
"cloudresourcemanager.googleapis.com/Organization",
"organizations/{organization}",
),
CommonResource(
"cloudresourcemanager.googleapis.com/Folder",
"folders/{folder}",
),
CommonResource(
"cloudbilling.googleapis.com/BillingAccount",
"billingAccounts/{billing_account}",
),
CommonResource(
"locations.googleapis.com/Location",
"projects/{project}/locations/{location}",
),
)


def test_common_resource_patterns():
species = CommonResource(
"nomenclature.linnaen.com/Species",
"families/{family}/genera/{genus}/species/{species}",
)
species_msg = species.message_type

assert species_msg.resource_path == "families/{family}/genera/{genus}/species/{species}"
assert species_msg.resource_type == "Species"
assert species_msg.resource_path_args == ["family", "genus", "species"]
assert species_msg.path_regex_str == '^families/(?P<family>.+?)/genera/(?P<genus>.+?)/species/(?P<species>.+?)$'