tests(google): mock the new pipecat.version()
This commit is contained in:
@@ -1,38 +1,33 @@
|
||||
import importlib.util
|
||||
import sys
|
||||
#
|
||||
# Copyright (c) 2024-2025 Daily
|
||||
#
|
||||
# SPDX-License-Identifier: BSD 2-Clause License
|
||||
#
|
||||
|
||||
import unittest
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
# Mock Pipecat package
|
||||
sys.modules["pipecat"] = MagicMock()
|
||||
sys.modules["pipecat"].__version__ = "0.0.0-test"
|
||||
import pipecat.services.google.utils
|
||||
from pipecat.services.google.utils import update_google_client_http_options
|
||||
|
||||
# Load the module directly from source
|
||||
spec = importlib.util.spec_from_file_location(
|
||||
"pipecat.services.google.utils", "src/pipecat/services/google/utils.py"
|
||||
)
|
||||
utils_module = importlib.util.module_from_spec(spec)
|
||||
sys.modules["pipecat.services.google.utils"] = utils_module
|
||||
spec.loader.exec_module(utils_module)
|
||||
MOCKED_VERSION = "0.0.0-test"
|
||||
|
||||
update_google_client_http_options = utils_module.update_google_client_http_options
|
||||
pipecat_version = "0.0.0-test"
|
||||
pipecat.services.google.utils.pipecat_version = lambda: MOCKED_VERSION
|
||||
|
||||
|
||||
class TestGoogleUtils(unittest.TestCase):
|
||||
def test_update_google_client_http_options_none(self):
|
||||
options = update_google_client_http_options(None)
|
||||
self.assertEqual(options, {"headers": {"x-goog-api-client": f"pipecat/{pipecat_version}"}})
|
||||
self.assertEqual(options, {"headers": {"x-goog-api-client": f"pipecat/{MOCKED_VERSION}"}})
|
||||
|
||||
def test_update_google_client_http_options_dict_empty(self):
|
||||
options = update_google_client_http_options({})
|
||||
self.assertEqual(options, {"headers": {"x-goog-api-client": f"pipecat/{pipecat_version}"}})
|
||||
self.assertEqual(options, {"headers": {"x-goog-api-client": f"pipecat/{MOCKED_VERSION}"}})
|
||||
|
||||
def test_update_google_client_http_options_dict_existing_headers(self):
|
||||
initial_options = {"headers": {"Authorization": "Bearer token"}}
|
||||
options = update_google_client_http_options(initial_options)
|
||||
self.assertEqual(options["headers"]["Authorization"], "Bearer token")
|
||||
self.assertEqual(options["headers"]["x-goog-api-client"], f"pipecat/{pipecat_version}")
|
||||
self.assertEqual(options["headers"]["x-goog-api-client"], f"pipecat/{MOCKED_VERSION}")
|
||||
|
||||
def test_update_google_client_http_options_object(self):
|
||||
class HttpOptions:
|
||||
@@ -42,7 +37,7 @@ class TestGoogleUtils(unittest.TestCase):
|
||||
http_options = HttpOptions()
|
||||
updated_options = update_google_client_http_options(http_options)
|
||||
self.assertEqual(
|
||||
updated_options.headers, {"x-goog-api-client": f"pipecat/{pipecat_version}"}
|
||||
updated_options.headers, {"x-goog-api-client": f"pipecat/{MOCKED_VERSION}"}
|
||||
)
|
||||
|
||||
def test_update_google_client_http_options_object_existing_headers(self):
|
||||
@@ -53,7 +48,7 @@ class TestGoogleUtils(unittest.TestCase):
|
||||
http_options = HttpOptions()
|
||||
updated_options = update_google_client_http_options(http_options)
|
||||
self.assertEqual(updated_options.headers["Authorization"], "Bearer token")
|
||||
self.assertEqual(updated_options.headers["x-goog-api-client"], f"pipecat/{pipecat_version}")
|
||||
self.assertEqual(updated_options.headers["x-goog-api-client"], f"pipecat/{MOCKED_VERSION}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
Reference in New Issue
Block a user