Add some tests for configuration #57
Merged
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.