-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor env var guard #16
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,106 @@ | ||
| //! Test helpers for managing environment variables. | ||
| //! | ||
| //! `EnvVarGuard` temporarily sets an environment variable and restores the | ||
| //! previous value on drop. | ||
|
|
||
| #[derive(Debug)] | ||
| pub struct EnvVarGuard { | ||
| key: String, | ||
| original: Option<String>, | ||
| } | ||
|
leynos marked this conversation as resolved.
|
||
|
|
||
| impl EnvVarGuard { | ||
| /// Set an environment variable for the lifetime of the returned guard. | ||
| pub fn set(key: &str, value: &str) -> Self { | ||
|
leynos marked this conversation as resolved.
|
||
| let original = std::env::var(key).ok(); | ||
| set_env_var(key, value); | ||
| Self { | ||
| key: key.to_string(), | ||
| original, | ||
| } | ||
| } | ||
| } | ||
|
|
||
| impl Drop for EnvVarGuard { | ||
| fn drop(&mut self) { | ||
| match &self.original { | ||
| Some(v) => set_env_var(&self.key, v), | ||
| None => remove_env_var(&self.key), | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /// Set an environment variable for tests. | ||
| /// | ||
| /// The nightly compiler marks `std::env::set_var` as `unsafe`. | ||
| /// Tests run serially so using it is acceptable here. | ||
| pub fn set_env_var(key: &str, value: &str) { | ||
| unsafe { std::env::set_var(key, value) }; | ||
| } | ||
|
|
||
| /// Remove an environment variable for tests. | ||
| /// | ||
| /// `std::env::remove_var` is also `unsafe` on nightly. | ||
| pub fn remove_env_var(key: &str) { | ||
| unsafe { std::env::remove_var(key) }; | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| #[test] | ||
| #[serial_test::serial] | ||
| fn set_env_var_sets_variable() { | ||
| let key = "ENV_GUARD_SET"; | ||
| super::remove_env_var(key); | ||
| assert!(std::env::var(key).is_err()); | ||
|
|
||
| super::set_env_var(key, "value"); | ||
| assert_eq!(std::env::var(key).unwrap(), "value"); | ||
|
|
||
| super::remove_env_var(key); | ||
| } | ||
|
|
||
| #[test] | ||
| #[serial_test::serial] | ||
| fn remove_env_var_removes_variable() { | ||
| let key = "ENV_GUARD_REMOVE"; | ||
| super::set_env_var(key, "to_remove"); | ||
| assert_eq!(std::env::var(key).unwrap(), "to_remove"); | ||
|
|
||
| super::remove_env_var(key); | ||
| assert!(std::env::var(key).is_err()); | ||
| } | ||
|
|
||
| #[test] | ||
| #[serial_test::serial] | ||
| fn remove_env_var_when_unset_is_noop() { | ||
| let key = "ENV_GUARD_REMOVE_UNSET"; | ||
| super::remove_env_var(key); | ||
| assert!(std::env::var(key).is_err()); | ||
| } | ||
|
|
||
| #[test] | ||
| #[serial_test::serial] | ||
| fn nested_env_var_guard_restores_previous_value() { | ||
| let key = "ENV_GUARD_TEST_NESTED"; | ||
| super::remove_env_var(key); | ||
|
|
||
| super::set_env_var(key, "initial"); | ||
| assert_eq!(std::env::var(key).unwrap(), "initial"); | ||
|
|
||
| let guard1 = super::EnvVarGuard::set(key, "first"); | ||
| assert_eq!(std::env::var(key).unwrap(), "first"); | ||
|
|
||
| { | ||
| let _guard2 = super::EnvVarGuard::set(key, "second"); | ||
| assert_eq!(std::env::var(key).unwrap(), "second"); | ||
| } | ||
|
|
||
| assert_eq!(std::env::var(key).unwrap(), "first"); | ||
|
|
||
| drop(guard1); | ||
| assert_eq!(std::env::var(key).unwrap(), "initial"); | ||
|
|
||
| super::remove_env_var(key); | ||
| } | ||
| } | ||
This file contains hidden or 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,3 @@ | ||
| //! Support utilities shared by tests. | ||
|
|
||
| pub mod env_guard; |
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.
Uh oh!
There was an error while loading. Please reload this page.