-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
fields
parameter to set_iam_policy
for consistency with…
… update methods (#1872)
- Loading branch information
Showing
4 changed files
with
188 additions
and
30 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 2024 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. | ||
|
||
|
||
def test_create_iam_policy(table_id: str): | ||
your_table_id = table_id | ||
|
||
# [START bigquery_create_iam_policy] | ||
from google.cloud import bigquery | ||
|
||
bqclient = bigquery.Client() | ||
|
||
policy = bqclient.get_iam_policy( | ||
your_table_id, # e.g. "project.dataset.table" | ||
) | ||
|
||
analyst_email = "[email protected]" | ||
binding = { | ||
"role": "roles/bigquery.dataViewer", | ||
"members": {f"group:{analyst_email}"}, | ||
} | ||
policy.bindings.append(binding) | ||
|
||
updated_policy = bqclient.set_iam_policy( | ||
your_table_id, # e.g. "project.dataset.table" | ||
policy, | ||
) | ||
|
||
for binding in updated_policy.bindings: | ||
print(repr(binding)) | ||
# [END bigquery_create_iam_policy] | ||
|
||
assert binding in updated_policy.bindings |
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 |
---|---|---|
|
@@ -1782,6 +1782,60 @@ def test_set_iam_policy(self): | |
from google.cloud.bigquery.iam import BIGQUERY_DATA_VIEWER_ROLE | ||
from google.api_core.iam import Policy | ||
|
||
PATH = "/projects/%s/datasets/%s/tables/%s:setIamPolicy" % ( | ||
self.PROJECT, | ||
self.DS_ID, | ||
self.TABLE_ID, | ||
) | ||
ETAG = "foo" | ||
VERSION = 1 | ||
OWNER1 = "user:[email protected]" | ||
OWNER2 = "group:[email protected]" | ||
EDITOR1 = "domain:google.com" | ||
EDITOR2 = "user:[email protected]" | ||
VIEWER1 = "serviceAccount:[email protected]" | ||
VIEWER2 = "user:[email protected]" | ||
BINDINGS = [ | ||
{"role": BIGQUERY_DATA_OWNER_ROLE, "members": [OWNER1, OWNER2]}, | ||
{"role": BIGQUERY_DATA_EDITOR_ROLE, "members": [EDITOR1, EDITOR2]}, | ||
{"role": BIGQUERY_DATA_VIEWER_ROLE, "members": [VIEWER1, VIEWER2]}, | ||
] | ||
FIELDS = ("bindings", "etag") | ||
RETURNED = {"etag": ETAG, "version": VERSION, "bindings": BINDINGS} | ||
|
||
policy = Policy() | ||
for binding in BINDINGS: | ||
policy[binding["role"]] = binding["members"] | ||
|
||
BODY = {"policy": policy.to_api_repr(), "updateMask": "bindings,etag"} | ||
|
||
creds = _make_credentials() | ||
http = object() | ||
client = self._make_one(project=self.PROJECT, credentials=creds, _http=http) | ||
conn = client._connection = make_connection(RETURNED) | ||
|
||
with mock.patch( | ||
"google.cloud.bigquery.opentelemetry_tracing._get_final_span_attributes" | ||
) as final_attributes: | ||
returned_policy = client.set_iam_policy( | ||
self.TABLE_REF, policy, fields=FIELDS, timeout=7.5 | ||
) | ||
|
||
final_attributes.assert_called_once_with({"path": PATH}, client, None) | ||
|
||
conn.api_request.assert_called_once_with( | ||
method="POST", path=PATH, data=BODY, timeout=7.5 | ||
) | ||
self.assertEqual(returned_policy.etag, ETAG) | ||
self.assertEqual(returned_policy.version, VERSION) | ||
self.assertEqual(dict(returned_policy), dict(policy)) | ||
|
||
def test_set_iam_policy_updateMask(self): | ||
from google.cloud.bigquery.iam import BIGQUERY_DATA_OWNER_ROLE | ||
from google.cloud.bigquery.iam import BIGQUERY_DATA_EDITOR_ROLE | ||
from google.cloud.bigquery.iam import BIGQUERY_DATA_VIEWER_ROLE | ||
from google.api_core.iam import Policy | ||
|
||
PATH = "/projects/%s/datasets/%s/tables/%s:setIamPolicy" % ( | ||
self.PROJECT, | ||
self.DS_ID, | ||
|
@@ -1858,6 +1912,19 @@ def test_set_iam_policy_no_mask(self): | |
method="POST", path=PATH, data=BODY, timeout=7.5 | ||
) | ||
|
||
def test_set_ia_policy_updateMask_and_fields(self): | ||
from google.api_core.iam import Policy | ||
|
||
policy = Policy() | ||
creds = _make_credentials() | ||
http = object() | ||
client = self._make_one(project=self.PROJECT, credentials=creds, _http=http) | ||
|
||
with pytest.raises(ValueError, match="updateMask"): | ||
client.set_iam_policy( | ||
self.TABLE_REF, policy, updateMask="bindings", fields=("bindings",) | ||
) | ||
|
||
def test_set_iam_policy_invalid_policy(self): | ||
from google.api_core.iam import Policy | ||
|
||
|