Skip to content

Commit

Permalink
Revert "feat: add get_bq_config_path() to _cloud_sdk.py (#1358)" (#1367)
Browse files Browse the repository at this point in the history
This reverts commit 9f52f66.
  • Loading branch information
clundin25 authored Aug 9, 2023
1 parent 65481be commit a4ec88c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 83 deletions.
43 changes: 10 additions & 33 deletions google/auth/_cloud_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@


# The ~/.config subdirectory containing gcloud credentials.
_CONFIG_DIRECTORY_GCLOUD = "gcloud"
# The ~/.config subdirectory containing gcloud credentials for bq.
_CONFIG_DIRECTORY_BQ = "bq"
_CONFIG_DIRECTORY = "gcloud"
# Windows systems store config at %APPDATA%\gcloud
_WINDOWS_CONFIG_ROOT_ENV_VAR = "APPDATA"
# The name of the file in the Cloud SDK config that contains default
Expand All @@ -44,53 +42,32 @@
)


def get_config_path(config_directory=_CONFIG_DIRECTORY_GCLOUD):
"""Returns the absolute path of the given configuration directory.
Args:
config_directory: The absolute path of the configuration directory.
def get_config_path():
"""Returns the absolute path the the Cloud SDK's configuration directory.
Returns:
str: The config path.
str: The Cloud SDK config path.
"""
# If the path is explicitly set, return that.
try:
return os.environ[environment_vars.CLOUD_SDK_CONFIG_DIR]
except KeyError:
pass

# Non-windows systems store this at ~/.config/<config_directory>.
# Non-windows systems store this at ~/.config/gcloud
if os.name != "nt":
return os.path.join(os.path.expanduser("~"), ".config", config_directory)
# Windows systems store config at %APPDATA%\<config_directory>.
return os.path.join(os.path.expanduser("~"), ".config", _CONFIG_DIRECTORY)
# Windows systems store config at %APPDATA%\gcloud
else:
try:
return os.path.join(
os.environ[_WINDOWS_CONFIG_ROOT_ENV_VAR], config_directory
os.environ[_WINDOWS_CONFIG_ROOT_ENV_VAR], _CONFIG_DIRECTORY
)
except KeyError:
# This should never happen unless someone is really
# messing with things, but we'll cover the case anyway.
drive = os.environ.get("SystemDrive", "C:")
return os.path.join(drive, "\\", config_directory)


def get_gcloud_config_path():
"""Returns the absolute path of Cloud CLI's configuration directory.
Returns:
str: The Cloud CLI config path.
"""
return get_config_path(config_directory=_CONFIG_DIRECTORY_GCLOUD)


def get_bq_config_path():
"""Returns the absolute path of bq's configuration directory.
Returns:
str: The bq config path.
"""
return get_config_path(config_directory=_CONFIG_DIRECTORY_BQ)
return os.path.join(drive, "\\", _CONFIG_DIRECTORY)


def get_application_default_credentials_path():
Expand All @@ -101,7 +78,7 @@ def get_application_default_credentials_path():
Returns:
str: The full path to application default credentials.
"""
config_path = get_gcloud_config_path()
config_path = get_config_path()
return os.path.join(config_path, _CREDENTIALS_FILENAME)


Expand Down
61 changes: 11 additions & 50 deletions tests/test__cloud_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,79 +112,40 @@ def test_get_application_default_credentials_path(get_config_dir):
)


def test_get_gcloud_config_path_env_var(monkeypatch):
def test_get_config_path_env_var(monkeypatch):
config_path_sentinel = "config_path"
monkeypatch.setenv(environment_vars.CLOUD_SDK_CONFIG_DIR, config_path_sentinel)
config_path = _cloud_sdk.get_gcloud_config_path()
config_path = _cloud_sdk.get_config_path()
assert config_path == config_path_sentinel


@mock.patch("os.path.expanduser")
def test_get_gcloud_config_path_unix(expanduser):
def test_get_config_path_unix(expanduser):
expanduser.side_effect = lambda path: path

config_path = _cloud_sdk.get_gcloud_config_path()
config_path = _cloud_sdk.get_config_path()

assert os.path.split(config_path) == (
"~/.config",
_cloud_sdk._CONFIG_DIRECTORY_GCLOUD,
)


@mock.patch("os.name", new="nt")
def test_get_gcloud_config_path_windows(monkeypatch):
appdata = "appdata"
monkeypatch.setenv(_cloud_sdk._WINDOWS_CONFIG_ROOT_ENV_VAR, appdata)

config_path = _cloud_sdk.get_gcloud_config_path()

assert os.path.split(config_path) == (appdata, _cloud_sdk._CONFIG_DIRECTORY_GCLOUD)


@mock.patch("os.name", new="nt")
def test_get_gcloud_config_path_no_appdata(monkeypatch):
monkeypatch.delenv(_cloud_sdk._WINDOWS_CONFIG_ROOT_ENV_VAR, raising=False)
monkeypatch.setenv("SystemDrive", "G:")

config_path = _cloud_sdk.get_gcloud_config_path()

assert os.path.split(config_path) == ("G:/\\", _cloud_sdk._CONFIG_DIRECTORY_GCLOUD)


def test_get_bq_config_path_env_var(monkeypatch):
config_path_sentinel = "config_path"
monkeypatch.setenv(environment_vars.CLOUD_SDK_CONFIG_DIR, config_path_sentinel)
config_path = _cloud_sdk.get_bq_config_path()
assert config_path == config_path_sentinel


@mock.patch("os.path.expanduser")
def test_get_bq_config_path_unix(expanduser):
expanduser.side_effect = lambda path: path

config_path = _cloud_sdk.get_bq_config_path()

assert os.path.split(config_path) == ("~/.config", _cloud_sdk._CONFIG_DIRECTORY_BQ)
assert os.path.split(config_path) == ("~/.config", _cloud_sdk._CONFIG_DIRECTORY)


@mock.patch("os.name", new="nt")
def test_get_bq_config_path_windows(monkeypatch):
def test_get_config_path_windows(monkeypatch):
appdata = "appdata"
monkeypatch.setenv(_cloud_sdk._WINDOWS_CONFIG_ROOT_ENV_VAR, appdata)

config_path = _cloud_sdk.get_bq_config_path()
config_path = _cloud_sdk.get_config_path()

assert os.path.split(config_path) == (appdata, _cloud_sdk._CONFIG_DIRECTORY_BQ)
assert os.path.split(config_path) == (appdata, _cloud_sdk._CONFIG_DIRECTORY)


@mock.patch("os.name", new="nt")
def test_get_bq_config_path_no_appdata(monkeypatch):
def test_get_config_path_no_appdata(monkeypatch):
monkeypatch.delenv(_cloud_sdk._WINDOWS_CONFIG_ROOT_ENV_VAR, raising=False)
monkeypatch.setenv("SystemDrive", "G:")

config_path = _cloud_sdk.get_bq_config_path()
config_path = _cloud_sdk.get_config_path()

assert os.path.split(config_path) == ("G:/\\", _cloud_sdk._CONFIG_DIRECTORY_BQ)
assert os.path.split(config_path) == ("G:/\\", _cloud_sdk._CONFIG_DIRECTORY)


@mock.patch("os.name", new="nt")
Expand Down

0 comments on commit a4ec88c

Please sign in to comment.