-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #451 from opencybersecurityalliance/config-env-vars
Use environment variables in configuration files
- Loading branch information
Showing
2 changed files
with
62 additions
and
2 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,60 @@ | ||
import kestrel.config as cfg | ||
import os | ||
|
||
|
||
def test_env_vars_in_config(): | ||
|
||
test_config = """--- | ||
credentials: | ||
username: $TEST_USER | ||
password: $TEST_PASSWORD | ||
""" | ||
os.environ["TEST_USER"] = "test-user" | ||
os.environ["TEST_PASSWORD"] = "test-password" | ||
os.environ["KESTREL_CONFIG"] = os.path.join(os.sep, "tmp", "config.yaml") | ||
|
||
with open(os.getenv("KESTREL_CONFIG"), "w") as fp: | ||
fp.write(test_config) | ||
config = cfg.load_config() | ||
assert config["credentials"]["username"] == "test-user" | ||
assert config["credentials"]["password"] == "test-password" | ||
|
||
|
||
def test_env_vars_in_config_overwrite(): | ||
|
||
test_config = """--- | ||
credentials: | ||
username: ${TEST_USER} | ||
password: ${TEST_PASSWORD} | ||
debug: | ||
cache_directory_prefix: $KESTREL_CACHE_DIRECTORY_PREFIX | ||
""" | ||
os.environ["TEST_USER"] = "test-user" | ||
os.environ["TEST_PASSWORD"] = "test-password" | ||
os.environ["KESTREL_CONFIG"] = os.path.join(os.sep, "tmp", "config.yaml") | ||
os.environ["KESTREL_CACHE_DIRECTORY_PREFIX"] = "Kestrel2.0-" | ||
with open(os.getenv("KESTREL_CONFIG"), "w") as fp: | ||
fp.write(test_config) | ||
config = cfg.load_config() | ||
assert config["credentials"]["username"] == "test-user" | ||
assert config["credentials"]["password"] == "test-password" | ||
assert config["debug"]["cache_directory_prefix"] == "Kestrel2.0-" | ||
|
||
def test_empty_env_var_in_config(): | ||
test_config = """--- | ||
credentials: | ||
username: ${TEST_USER} | ||
password: ${TEST_PASSWORD} | ||
debug: | ||
cache_directory_prefix: $I_DONT_EXIST | ||
""" | ||
os.environ["TEST_USER"] = "test-user" | ||
os.environ["TEST_PASSWORD"] = "test-password" | ||
os.environ["KESTREL_CONFIG"] = os.path.join(os.sep, "tmp", "config.yaml") | ||
os.environ["KESTREL_CACHE_DIRECTORY_PREFIX"] = "Kestrel2.0-" | ||
with open(os.getenv("KESTREL_CONFIG"), "w") as fp: | ||
fp.write(test_config) | ||
config = cfg.load_config() | ||
assert config["credentials"]["username"] == "test-user" | ||
assert config["credentials"]["password"] == "test-password" | ||
assert config["debug"]["cache_directory_prefix"] == "$I_DONT_EXIST" |