This crate creates an enum from .env
variables and simplify access to them.
The macro will create a tests suite per enum to check if the variables are present in the .env
file.
note: this is my first crate, so it may not be the best for production
```rust use dotenvenum::{envenum, EnvironmentVariable}; use strum::IntoEnumIterator;
envenum!(TheEnumNameEnv, enumtest_module, [ ValueOne, ValueTwo, //... ]); ``` note: the comas on your last entry will break the macro
```rust use dotenv_enum::EnvironmentVariable; use strum::IntoEnumIterator;
enum TheEnumNameEnv { ValueOne, ValueTwo, // ... }
impl EnvironmentVariable for TheEnumNameEnv { fn getkey(&self) -> String { match self { TheEnumNameEnv::ValueOne => "THEENUMNAMEVALUEONE".tostring(), TheEnumNameEnv::ValueTwo => "THEENUMNAMEVALUETWO".to_string(), // ... } } }
mod enumtestmodule { extern crate self as mycrate; use strum::IntoEnumIterator; use dotenvenum::EnvironmentVariable;
#[allow(non_snake_case)]
mod when_using_an_element_it_should_be_in_dotenv {
extern crate self as my_crate;
use dotenv_enum::EnvironmentVariable;
#[test]
fn ValueOne() {
dotenv::dotenv().ok();
assert!(!my_crate::$enum_name::$var_name.unwrap_value().is_empty());
}
#[test]
fn ValueTwo() {
dotenv::dotenv().ok();
assert!(!my_crate::$enum_name::$var_name.unwrap_value().is_empty());
}
//...
}
#[test]
fn when_comparing_elements_they_are_all_different() {
my_crate::TheEnumNameEnv::iter().enumerate().for_each(|(index, env_var)| {
my_crate::TheEnumNameEnv::iter().enumerate()
.filter(|(index2, _)| index != *index2)
.for_each(|(_, env_var2)| assert_ne!(env_var.get_key(), env_var2.get_key()));
});
}
} ```
where all //... represent the same code as the previous one for all the new enum value you add.