-
Notifications
You must be signed in to change notification settings - Fork 306
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 fields
parameter to set_iam_policy
for consistency with update methods
#1872
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,6 @@ | |
from google.api_core.exceptions import InternalServerError | ||
from google.api_core.exceptions import ServiceUnavailable | ||
from google.api_core.exceptions import TooManyRequests | ||
from google.api_core.iam import Policy | ||
from google.cloud import bigquery | ||
from google.cloud.bigquery.dataset import Dataset | ||
from google.cloud.bigquery.dataset import DatasetReference | ||
|
@@ -1485,33 +1484,6 @@ def test_copy_table(self): | |
got_rows = self._fetch_single_page(dest_table) | ||
self.assertTrue(len(got_rows) > 0) | ||
|
||
def test_get_set_iam_policy(self): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test is now redundant with a code sample which serves the same purpose with regards to testing. |
||
from google.cloud.bigquery.iam import BIGQUERY_DATA_VIEWER_ROLE | ||
|
||
dataset = self.temp_dataset(_make_dataset_id("create_table")) | ||
table_id = "test_table" | ||
table_ref = Table(dataset.table(table_id)) | ||
self.assertFalse(_table_exists(table_ref)) | ||
|
||
table = helpers.retry_403(Config.CLIENT.create_table)(table_ref) | ||
self.to_delete.insert(0, table) | ||
|
||
self.assertTrue(_table_exists(table)) | ||
|
||
member = "serviceAccount:{}".format(Config.CLIENT.get_service_account_email()) | ||
BINDING = { | ||
"role": BIGQUERY_DATA_VIEWER_ROLE, | ||
"members": {member}, | ||
} | ||
|
||
policy = Config.CLIENT.get_iam_policy(table) | ||
self.assertIsInstance(policy, Policy) | ||
self.assertEqual(policy.bindings, []) | ||
|
||
policy.bindings.append(BINDING) | ||
returned_policy = Config.CLIENT.set_iam_policy(table, policy) | ||
self.assertEqual(returned_policy.bindings, policy.bindings) | ||
|
||
def test_test_iam_permissions(self): | ||
dataset = self.temp_dataset(_make_dataset_id("create_table")) | ||
table_id = "test_table" | ||
|
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 | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For inclusion at https://cloud.google.com/bigquery/docs/control-access-to-resources-iam#grant_access_to_a_table_or_view