ec2b666284
Continuous Integration / Pre-commit Linter (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.10) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.11) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.12) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.10) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.11) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.12) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.14) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Waiting to run
Copybara PR Handler / close-imported-pr (push) Waiting to run
287 lines
11 KiB
Python
287 lines
11 KiB
Python
# Copyright 2026 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
|
|
#
|
|
# http://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 __future__ import annotations
|
|
|
|
import os
|
|
from unittest import mock
|
|
|
|
from google.adk.integrations.bigquery import client as bq_client_lib
|
|
from google.adk.integrations.bigquery import metadata_tool
|
|
from google.adk.integrations.bigquery.config import BigQueryToolConfig
|
|
import google.auth
|
|
from google.auth.exceptions import DefaultCredentialsError
|
|
from google.cloud import bigquery
|
|
from google.oauth2.credentials import Credentials
|
|
|
|
|
|
@mock.patch.dict(os.environ, {}, clear=True)
|
|
@mock.patch.object(bigquery.Client, "list_datasets", autospec=True)
|
|
@mock.patch.object(google.auth, "default", autospec=True)
|
|
def test_list_dataset_ids_no_default_auth(
|
|
mock_default_auth, mock_list_datasets
|
|
):
|
|
"""Test list_dataset_ids tool invocation involves no default auth."""
|
|
project = "my_project_id"
|
|
mock_credentials = mock.create_autospec(Credentials, instance=True)
|
|
tool_settings = BigQueryToolConfig()
|
|
|
|
# Simulate the behavior of default auth - on purpose throw exception when
|
|
# the default auth is called
|
|
mock_default_auth.side_effect = DefaultCredentialsError(
|
|
"Your default credentials were not found"
|
|
)
|
|
|
|
mock_list_datasets.return_value = [
|
|
bigquery.DatasetReference(project, "dataset1"),
|
|
bigquery.DatasetReference(project, "dataset2"),
|
|
]
|
|
result = metadata_tool.list_dataset_ids(
|
|
project, mock_credentials, tool_settings
|
|
)
|
|
assert result == ["dataset1", "dataset2"]
|
|
mock_default_auth.assert_not_called()
|
|
|
|
|
|
@mock.patch.dict(os.environ, {}, clear=True)
|
|
@mock.patch.object(bigquery.Client, "get_dataset", autospec=True)
|
|
@mock.patch.object(google.auth, "default", autospec=True)
|
|
def test_get_dataset_info_no_default_auth(mock_default_auth, mock_get_dataset):
|
|
"""Test get_dataset_info tool invocation involves no default auth."""
|
|
mock_credentials = mock.create_autospec(Credentials, instance=True)
|
|
tool_settings = BigQueryToolConfig()
|
|
|
|
# Simulate the behavior of default auth - on purpose throw exception when
|
|
# the default auth is called
|
|
mock_default_auth.side_effect = DefaultCredentialsError(
|
|
"Your default credentials were not found"
|
|
)
|
|
|
|
mock_get_dataset.return_value = mock.create_autospec(
|
|
Credentials, instance=True
|
|
)
|
|
result = metadata_tool.get_dataset_info(
|
|
"my_project_id", "my_dataset_id", mock_credentials, tool_settings
|
|
)
|
|
assert result != {
|
|
"status": "ERROR",
|
|
"error_details": "Your default credentials were not found",
|
|
}
|
|
mock_default_auth.assert_not_called()
|
|
|
|
|
|
@mock.patch.dict(os.environ, {}, clear=True)
|
|
@mock.patch.object(bigquery.Client, "list_tables", autospec=True)
|
|
@mock.patch.object(google.auth, "default", autospec=True)
|
|
def test_list_table_ids_no_default_auth(mock_default_auth, mock_list_tables):
|
|
"""Test list_table_ids tool invocation involves no default auth."""
|
|
project = "my_project_id"
|
|
dataset = "my_dataset_id"
|
|
dataset_ref = bigquery.DatasetReference(project, dataset)
|
|
mock_credentials = mock.create_autospec(Credentials, instance=True)
|
|
tool_settings = BigQueryToolConfig()
|
|
|
|
# Simulate the behavior of default auth - on purpose throw exception when
|
|
# the default auth is called
|
|
mock_default_auth.side_effect = DefaultCredentialsError(
|
|
"Your default credentials were not found"
|
|
)
|
|
|
|
mock_list_tables.return_value = [
|
|
bigquery.TableReference(dataset_ref, "table1"),
|
|
bigquery.TableReference(dataset_ref, "table2"),
|
|
]
|
|
result = metadata_tool.list_table_ids(
|
|
project, dataset, mock_credentials, tool_settings
|
|
)
|
|
assert result == ["table1", "table2"]
|
|
mock_default_auth.assert_not_called()
|
|
|
|
|
|
@mock.patch.dict(os.environ, {}, clear=True)
|
|
@mock.patch.object(bigquery.Client, "get_table", autospec=True)
|
|
@mock.patch.object(google.auth, "default", autospec=True)
|
|
def test_get_table_info_no_default_auth(mock_default_auth, mock_get_table):
|
|
"""Test get_table_info tool invocation involves no default auth."""
|
|
mock_credentials = mock.create_autospec(Credentials, instance=True)
|
|
tool_settings = BigQueryToolConfig()
|
|
|
|
# Simulate the behavior of default auth - on purpose throw exception when
|
|
# the default auth is called
|
|
mock_default_auth.side_effect = DefaultCredentialsError(
|
|
"Your default credentials were not found"
|
|
)
|
|
|
|
mock_get_table.return_value = mock.create_autospec(Credentials, instance=True)
|
|
result = metadata_tool.get_table_info(
|
|
"my_project_id",
|
|
"my_dataset_id",
|
|
"my_table_id",
|
|
mock_credentials,
|
|
tool_settings,
|
|
)
|
|
assert result != {
|
|
"status": "ERROR",
|
|
"error_details": "Your default credentials were not found",
|
|
}
|
|
mock_default_auth.assert_not_called()
|
|
|
|
|
|
@mock.patch.dict(os.environ, {}, clear=True)
|
|
@mock.patch.object(bigquery.Client, "get_job", autospec=True)
|
|
@mock.patch.object(google.auth, "default", autospec=True)
|
|
def test_get_job_info_no_default_auth(mock_default_auth, mock_get_job):
|
|
"""Test get_job_info tool invocation involves no default auth."""
|
|
mock_credentials = mock.create_autospec(Credentials, instance=True)
|
|
tool_settings = BigQueryToolConfig()
|
|
|
|
# Simulate the behavior of default auth - on purpose throw exception when
|
|
# the default auth is called
|
|
mock_default_auth.side_effect = DefaultCredentialsError(
|
|
"Your default credentials were not found"
|
|
)
|
|
|
|
mock_get_job.return_value = mock.create_autospec(
|
|
bigquery.QueryJob, instance=True
|
|
)
|
|
result = metadata_tool.get_job_info(
|
|
"my_project_id",
|
|
"my_job_id",
|
|
mock_credentials,
|
|
tool_settings,
|
|
)
|
|
assert result != {
|
|
"status": "ERROR",
|
|
"error_details": "Your default credentials were not found",
|
|
}
|
|
mock_default_auth.assert_not_called()
|
|
|
|
|
|
@mock.patch.object(bq_client_lib, "get_bigquery_client", autospec=True)
|
|
def test_list_dataset_ids_bq_client_creation(mock_get_bigquery_client):
|
|
"""Test BigQuery client creation params during list_dataset_ids tool invocation."""
|
|
bq_project = "my_project_id"
|
|
bq_credentials = mock.create_autospec(Credentials, instance=True)
|
|
application_name = "my-agent"
|
|
tool_settings = BigQueryToolConfig(application_name=application_name)
|
|
|
|
metadata_tool.list_dataset_ids(bq_project, bq_credentials, tool_settings)
|
|
mock_get_bigquery_client.assert_called_once()
|
|
assert len(mock_get_bigquery_client.call_args.kwargs) == 4
|
|
assert mock_get_bigquery_client.call_args.kwargs["project"] == bq_project
|
|
assert (
|
|
mock_get_bigquery_client.call_args.kwargs["credentials"] == bq_credentials
|
|
)
|
|
assert mock_get_bigquery_client.call_args.kwargs["user_agent"] == [
|
|
application_name,
|
|
"list_dataset_ids",
|
|
]
|
|
|
|
|
|
@mock.patch.object(bq_client_lib, "get_bigquery_client", autospec=True)
|
|
def test_get_dataset_info_bq_client_creation(mock_get_bigquery_client):
|
|
"""Test BigQuery client creation params during get_dataset_info tool invocation."""
|
|
bq_project = "my_project_id"
|
|
bq_dataset = "my_dataset_id"
|
|
bq_credentials = mock.create_autospec(Credentials, instance=True)
|
|
application_name = "my-agent"
|
|
tool_settings = BigQueryToolConfig(application_name=application_name)
|
|
|
|
metadata_tool.get_dataset_info(
|
|
bq_project, bq_dataset, bq_credentials, tool_settings
|
|
)
|
|
mock_get_bigquery_client.assert_called_once()
|
|
assert len(mock_get_bigquery_client.call_args.kwargs) == 4
|
|
assert mock_get_bigquery_client.call_args.kwargs["project"] == bq_project
|
|
assert (
|
|
mock_get_bigquery_client.call_args.kwargs["credentials"] == bq_credentials
|
|
)
|
|
assert mock_get_bigquery_client.call_args.kwargs["user_agent"] == [
|
|
application_name,
|
|
"get_dataset_info",
|
|
]
|
|
|
|
|
|
@mock.patch.object(bq_client_lib, "get_bigquery_client", autospec=True)
|
|
def test_list_table_ids_bq_client_creation(mock_get_bigquery_client):
|
|
"""Test BigQuery client creation params during list_table_ids tool invocation."""
|
|
bq_project = "my_project_id"
|
|
bq_dataset = "my_dataset_id"
|
|
bq_credentials = mock.create_autospec(Credentials, instance=True)
|
|
application_name = "my-agent"
|
|
tool_settings = BigQueryToolConfig(application_name=application_name)
|
|
|
|
metadata_tool.list_table_ids(
|
|
bq_project, bq_dataset, bq_credentials, tool_settings
|
|
)
|
|
mock_get_bigquery_client.assert_called_once()
|
|
assert len(mock_get_bigquery_client.call_args.kwargs) == 4
|
|
assert mock_get_bigquery_client.call_args.kwargs["project"] == bq_project
|
|
assert (
|
|
mock_get_bigquery_client.call_args.kwargs["credentials"] == bq_credentials
|
|
)
|
|
assert mock_get_bigquery_client.call_args.kwargs["user_agent"] == [
|
|
application_name,
|
|
"list_table_ids",
|
|
]
|
|
|
|
|
|
@mock.patch.object(bq_client_lib, "get_bigquery_client", autospec=True)
|
|
def test_get_table_info_bq_client_creation(mock_get_bigquery_client):
|
|
"""Test BigQuery client creation params during get_table_info tool invocation."""
|
|
bq_project = "my_project_id"
|
|
bq_dataset = "my_dataset_id"
|
|
bq_table = "my_table_id"
|
|
bq_credentials = mock.create_autospec(Credentials, instance=True)
|
|
application_name = "my-agent"
|
|
tool_settings = BigQueryToolConfig(application_name=application_name)
|
|
|
|
metadata_tool.get_table_info(
|
|
bq_project, bq_dataset, bq_table, bq_credentials, tool_settings
|
|
)
|
|
mock_get_bigquery_client.assert_called_once()
|
|
assert len(mock_get_bigquery_client.call_args.kwargs) == 4
|
|
assert mock_get_bigquery_client.call_args.kwargs["project"] == bq_project
|
|
assert (
|
|
mock_get_bigquery_client.call_args.kwargs["credentials"] == bq_credentials
|
|
)
|
|
assert mock_get_bigquery_client.call_args.kwargs["user_agent"] == [
|
|
application_name,
|
|
"get_table_info",
|
|
]
|
|
|
|
|
|
@mock.patch.object(bq_client_lib, "get_bigquery_client", autospec=True)
|
|
def test_get_job_info_bq_client_creation(mock_get_bigquery_client):
|
|
"""Test BigQuery client creation params during get_table_info tool invocation."""
|
|
bq_project = "my_project_id"
|
|
bq_job_id = "my_job_id"
|
|
bq_credentials = mock.create_autospec(Credentials, instance=True)
|
|
application_name = "my-agent"
|
|
tool_settings = BigQueryToolConfig(application_name=application_name)
|
|
|
|
metadata_tool.get_job_info(
|
|
bq_project, bq_job_id, bq_credentials, tool_settings
|
|
)
|
|
mock_get_bigquery_client.assert_called_once()
|
|
assert len(mock_get_bigquery_client.call_args.kwargs) == 4
|
|
assert mock_get_bigquery_client.call_args.kwargs["project"] == bq_project
|
|
assert (
|
|
mock_get_bigquery_client.call_args.kwargs["credentials"] == bq_credentials
|
|
)
|
|
assert mock_get_bigquery_client.call_args.kwargs["user_agent"] == [
|
|
application_name,
|
|
"get_job_info",
|
|
]
|