1
0
mirror of https://github.com/danog/strum.git synced 2024-12-11 08:59:37 +01:00
strum/strum_tests/tests/display.rs
kraktus fd519ec47f
Fix EnumIter macro code generation (#287)
* Add test to ensure macro call `::core`-related functions

Avoiding local core modules to break the macro-generated code.

Currently failing due to issue with `EnumIter` macros.

* Fix macro of `EnumIter`

close https://github.com/Peternator7/strum/issues/284

---------

Co-authored-by: kraktus <kraktus@users.noreply.github.com>
2023-07-29 14:58:18 -07:00

97 lines
2.1 KiB
Rust

use strum::{Display, EnumString};
mod core {} // ensure macros call `::core`
#[derive(Debug, Eq, PartialEq, EnumString, Display)]
enum Color {
#[strum(to_string = "RedRed")]
Red,
#[strum(serialize = "b", to_string = "blue")]
Blue { hue: usize },
#[strum(serialize = "y", serialize = "yellow")]
Yellow,
#[strum(default)]
Green(String),
}
#[test]
fn to_blue_string() {
assert_eq!(String::from("blue"), format!("{}", Color::Blue { hue: 0 }));
}
#[test]
fn test_formatters() {
assert_eq!(
String::from(" blue"),
format!("{:>6}", Color::Blue { hue: 0 })
);
assert_eq!(
String::from("blue "),
format!("{:<6}", Color::Blue { hue: 0 })
);
assert_eq!(
String::from(" blue "),
format!("{:^6}", Color::Blue { hue: 0 })
);
assert_eq!(String::from("bl"), format!("{:.2}", Color::Blue { hue: 0 }));
}
#[test]
fn to_yellow_string() {
assert_eq!(String::from("yellow"), format!("{}", Color::Yellow));
}
#[test]
fn to_red_string() {
assert_eq!(String::from("RedRed"), format!("{}", Color::Red));
}
#[test]
fn to_green_string() {
assert_eq!(
String::from("lime"),
format!("{}", Color::Green("lime".into()))
);
}
#[derive(Debug, Eq, PartialEq, EnumString, Display)]
enum ColorWithDefaultAndToString {
#[strum(default, to_string = "GreenGreen")]
Green(String),
}
#[test]
fn to_green_with_default_and_to_string() {
assert_eq!(
String::from("GreenGreen"),
format!("{}", ColorWithDefaultAndToString::Green("lime".into()))
);
}
#[derive(Display, Debug, Eq, PartialEq)]
#[strum(serialize_all = "snake_case")]
enum Brightness {
DarkBlack,
Dim {
glow: usize,
},
#[strum(serialize = "bright")]
BrightWhite,
}
#[test]
fn brightness_to_string() {
assert_eq!(
String::from("dark_black"),
Brightness::DarkBlack.to_string().as_ref()
);
assert_eq!(
String::from("dim"),
Brightness::Dim { glow: 0 }.to_string().as_ref()
);
assert_eq!(
String::from("bright"),
Brightness::BrightWhite.to_string().as_ref()
);
}