|
| 1 | +use crate::config::StyleEdition; |
| 2 | + |
| 3 | +/// Defines the default value for the given style edition |
| 4 | +pub(crate) trait StyleEditionDefault { |
| 5 | + type ConfigType; |
| 6 | + fn style_edition_default(style_edition: StyleEdition) -> Self::ConfigType; |
| 7 | +} |
| 8 | + |
| 9 | +/// macro to help implement `StyleEditionDefault` for config options |
| 10 | +#[macro_export] |
| 11 | +macro_rules! style_edition_default { |
| 12 | + ($ty:ident, $config_ty:ty, _ => $default:expr) => { |
| 13 | + impl $crate::config::style_edition::StyleEditionDefault for $ty { |
| 14 | + type ConfigType = $config_ty; |
| 15 | + |
| 16 | + fn style_edition_default(_: $crate::config::StyleEdition) -> Self::ConfigType { |
| 17 | + $default |
| 18 | + } |
| 19 | + } |
| 20 | + }; |
| 21 | + ($ty:ident, $config_ty:ty, Edition2024 => $default_2024:expr, _ => $default_2015:expr) => { |
| 22 | + impl $crate::config::style_edition::StyleEditionDefault for $ty { |
| 23 | + type ConfigType = $config_ty; |
| 24 | + |
| 25 | + fn style_edition_default( |
| 26 | + style_edition: $crate::config::StyleEdition, |
| 27 | + ) -> Self::ConfigType { |
| 28 | + match style_edition { |
| 29 | + $crate::config::StyleEdition::Edition2015 |
| 30 | + | $crate::config::StyleEdition::Edition2018 |
| 31 | + | $crate::config::StyleEdition::Edition2021 => $default_2015, |
| 32 | + $crate::config::StyleEdition::Edition2024 => $default_2024, |
| 33 | + } |
| 34 | + } |
| 35 | + } |
| 36 | + }; |
| 37 | +} |
| 38 | + |
| 39 | +#[cfg(test)] |
| 40 | +mod test { |
| 41 | + use super::*; |
| 42 | + use crate::config::StyleEdition; |
| 43 | + |
| 44 | + #[test] |
| 45 | + fn test_impl_default_style_edition_struct_for_all_editions() { |
| 46 | + struct Unit; |
| 47 | + style_edition_default!(Unit, usize, _ => 100); |
| 48 | + |
| 49 | + // regardless of the style edition used the value will always return 100 |
| 50 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2015), 100); |
| 51 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2018), 100); |
| 52 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2021), 100); |
| 53 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2024), 100); |
| 54 | + } |
| 55 | + |
| 56 | + #[test] |
| 57 | + fn test_impl_default_style_edition_for_old_and_new_editions() { |
| 58 | + struct Unit; |
| 59 | + style_edition_default!(Unit, usize, Edition2024 => 50, _ => 100); |
| 60 | + |
| 61 | + // style edition 2015-2021 are all the same |
| 62 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2015), 100); |
| 63 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2018), 100); |
| 64 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2021), 100); |
| 65 | + |
| 66 | + // style edition 2024 |
| 67 | + assert_eq!(Unit::style_edition_default(StyleEdition::Edition2024), 50); |
| 68 | + } |
| 69 | +} |
0 commit comments