Add some tests for configuration#57
Merged
josecelano merged 6 commits intodevelopmentfrom Aug 10, 2022
Merged
Conversation
42fb8bd to
10edf02
Compare
10edf02 to
b548e80
Compare
mickvandijke
reviewed
Aug 9, 2022
Member
|
And add missing annotation for tests module.
Member
Author
|
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)),
}
}
}
} |
Member
Author
|
I'm done with this PR. |
mickvandijke
approved these changes
Aug 10, 2022
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
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.tomlfile.Changes
save_to_fileandload_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 Configurationblocks?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_fileI will add some more tests.