-
Notifications
You must be signed in to change notification settings - Fork 44
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
Add some tests for configuration #57
Merged
Merged
Conversation
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
42fb8bd
to
10edf02
Compare
10edf02
to
b548e80
Compare
mickvandijke
reviewed
Aug 9, 2022
|
And add missing annotation for tests module.
hi @WarmBeer It seems these two methods are not being used anymore: pub fn load(data: &[u8]) -> Result<Configuration, toml::de::Error> {
toml::from_slice(data)
}
pub fn load_file(path: &str) -> Result<Configuration, ConfigurationError> {
match std::fs::read(path) {
Err(e) => Err(ConfigurationError::IOError(e)),
Ok(data) => {
match Self::load(data.as_slice()) {
Ok(cfg) => {
Ok(cfg)
}
Err(e) => Err(ConfigurationError::ParseError(e)),
}
}
}
} |
I'm done with this PR. |
mickvandijke
approved these changes
Aug 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Hi @WarmBeer I have added some tests for the configuration.
New dependencies
uuid
. I needed to create a unique id for a temporary config file like thistest_config_231863df-a1d5-4dfc-a2a9-a8b054c0b8cf.toml
.serde_with
. For theHttpTrackerConfig
, you are using a custom serializer, but the deserialization is not working. The config optionsssl_cert_path = ""
andssl_key_path = ""
are being deserialized likeSome("")
instead ofNone
.Tests
config.toml
file.Changes
save_to_file
andload_from_file
, to make those methods testable. I need to create the config file in a temporary file.Questions
I've added a tests for check default values only for one option (
should_have_a_default_value_for_the_log_level
). Do you think we should add one for each option or one test for all options, or maybe it does not makes sense to test default values directly?Why are there to
impl Configuration
blocks?I choose those test names in order to get this output when you execute them:
You read the lines like this:
config::configuration::should_be_loaded_from_a_config_file
I will add some more tests.