test: snapshots of kcolorscheme and qpalette
AI disclosure: I asked GitHub Copilot (Claude Haiku 4.5) "What's the best way to add tests for my recently merged qt theming contributions?" It suggested the insta crate for golden testing the output strings as well as some unit tests. I implemented it myself.
This commit is contained in:
parent
f734ccbbde
commit
39e8300d90
7 changed files with 406 additions and 0 deletions
|
|
@ -30,3 +30,10 @@ cosmic-config = { path = "../cosmic-config/", default-features = false, features
|
|||
configparser = "3.1.0"
|
||||
dirs.workspace = true
|
||||
thiserror = "2.0.18"
|
||||
|
||||
[dev-dependencies]
|
||||
insta = "1.47.2"
|
||||
|
||||
[profile.dev.package]
|
||||
insta.opt-level = 3
|
||||
similar.opt-level = 3
|
||||
|
|
|
|||
|
|
@ -389,3 +389,27 @@ fn to_argb_hex(c: Srgba) -> String {
|
|||
c_u8.alpha, c_u8.red, c_u8.green, c_u8.blue
|
||||
)
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_color_to_argb_hex() {
|
||||
let color = Srgba::new(0x33, 0x55, 0x77, 0xff);
|
||||
let argb = to_argb_hex(color.into());
|
||||
assert_eq!(argb, "#ff335577");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_light_default_qpalette() {
|
||||
let light_default_qpalette = Theme::light_default().as_qpalette();
|
||||
insta::assert_snapshot!(light_default_qpalette);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_dark_default_qpalette() {
|
||||
let dark_default_qpalette = Theme::dark_default().as_qpalette();
|
||||
insta::assert_snapshot!(dark_default_qpalette);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -522,3 +522,44 @@ impl ColorEffect {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_opaque_color_to_rgb() {
|
||||
let color = Srgba::new(30.0 / 255.0, 50.0 / 255.0, 70.0 / 255.0, 1.0);
|
||||
let bg = Srgba::new(1.0, 1.0, 1.0, 1.0);
|
||||
let result = to_rgb(color, bg);
|
||||
assert_eq!(result, "30,50,70");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_transparent_color_to_rgb() {
|
||||
let color = Srgba::new(0.0, 0.0, 0.0, 0.0);
|
||||
let bg = Srgba::new(1.0, 1.0, 1.0, 1.0);
|
||||
let result = to_rgb(color, bg);
|
||||
assert_eq!(result, "255,255,255");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_translucent_color_to_rgb() {
|
||||
let color = Srgba::new(0.0, 0.0, 0.0, 0.9);
|
||||
let bg = Srgba::new(1.0, 1.0, 1.0, 1.0);
|
||||
let result = to_rgb(color, bg);
|
||||
assert_eq!(result, "26,26,26");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_light_default_kcolorscheme() {
|
||||
let light_default_kcolorscheme = Theme::light_default().as_kcolorscheme();
|
||||
insta::assert_snapshot!(light_default_kcolorscheme);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_dark_default_kcolorscheme() {
|
||||
let dark_default_kcolorscheme = Theme::dark_default().as_kcolorscheme();
|
||||
insta::assert_snapshot!(dark_default_kcolorscheme);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
source: cosmic-theme/src/output/qt56ct_output.rs
|
||||
expression: dark_default_qpalette
|
||||
---
|
||||
# GENERATED BY COSMIC
|
||||
|
||||
[ColorScheme]
|
||||
active_colors=#ffe7e7e7, #ff4a4a4a, #ff555555, #ff505050, #ff4f4f4f, #ff4d4d4d, #ffc0c0c0, #ffe7e7e7, #ffc0c0c0, #ff2e2e2e, #ff1b1b1b, #ff1b1b1b, #ff63d0df, #ff434343, #ff63d0df, #ff5bb2be, #ff1f2425, #ff2e2e2e, #ff2e2e2e, #ffc0c0c0, #ff777777
|
||||
disabled_colors=#e6d3d3d3, #8f474747, #a9696969, #a4626262, #a95f5f5f, #a45d5d5d, #d2a1a1a1, #ffe7e7e7, #d2a1a1a1, #bf2e2e2e, #ff1b1b1b, #ff1b1b1b, #ff63d0df, #bf3c3c3c, #bf30555a, #bf324f53, #ff1f2425, #bf2e2e2e, #bf2e2e2e, #d2a1a1a1, #bf909090
|
||||
inactive_colors=#ffc2c2c2, #ff4a4a4a, #ff555555, #ff505050, #ff4f4f4f, #ff4d4d4d, #ffa3a3a3, #ffe7e7e7, #ffc0c0c0, #ff2e2e2e, #ff1b1b1b, #ff1b1b1b, #ff63d0df, #ff3f3f3f, #ff63d0df, #ff5bb2be, #ff1f2425, #ff2e2e2e, #ff2e2e2e, #ffa3a3a3, #ff777777
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
source: cosmic-theme/src/output/qt56ct_output.rs
|
||||
expression: light_default_qpalette
|
||||
---
|
||||
# GENERATED BY COSMIC
|
||||
|
||||
[ColorScheme]
|
||||
active_colors=#ff121212, #ffc3c3c3, #ffbababa, #ffbebebe, #ffb3b3b3, #ffbbbbbb, #ff272727, #ffd7d7d7, #ff272727, #fff5f5f5, #ffd7d7d7, #ff121212, #ff00525a, #fff6f6f6, #ff00525a, #ff317379, #ffccd0d1, #fff5f5f5, #fff5f5f5, #ff272727, #ff8e8e8e
|
||||
disabled_colors=#e62b2b2b, #8fc9c9c9, #a99b9b9b, #a4a0a0a0, #a9929292, #a49b9b9b, #d2535353, #ffd7d7d7, #d2535353, #bff5f5f5, #ffd7d7d7, #ff121212, #ff00525a, #bff6f6f6, #bf526d70, #bf72888a, #ffccd0d1, #bff5f5f5, #bff5f5f5, #d2535353, #bf6c6c6c
|
||||
inactive_colors=#ff3f3f3f, #ffc3c3c3, #ffbababa, #ffbebebe, #ffb3b3b3, #ffbbbbbb, #ff505050, #ffd7d7d7, #ff272727, #fff5f5f5, #ffd7d7d7, #ff121212, #ff00525a, #fff6f6f6, #ff00525a, #ff317379, #ffccd0d1, #fff5f5f5, #fff5f5f5, #ff505050, #ff8e8e8e
|
||||
|
|
@ -0,0 +1,157 @@
|
|||
---
|
||||
source: cosmic-theme/src/output/qt_output.rs
|
||||
expression: dark_default_kcolorscheme
|
||||
---
|
||||
# GENERATED BY COSMIC
|
||||
|
||||
[ColorEffects:Disabled]
|
||||
Color=43,43,43
|
||||
ColorAmount=0
|
||||
ColorEffect=0
|
||||
ContrastAmount=0.65
|
||||
ContrastEffect=1
|
||||
IntensityAmount=0.1
|
||||
IntensityEffect=2
|
||||
|
||||
[ColorEffects:Inactive]
|
||||
ChangeSelectionColor=false
|
||||
Enable=false
|
||||
Color=27,27,27
|
||||
ColorAmount=0.025
|
||||
ColorEffect=2
|
||||
ContrastAmount=0.1
|
||||
ContrastEffect=2
|
||||
IntensityAmount=0
|
||||
IntensityEffect=0
|
||||
|
||||
[Colors:Button]
|
||||
BackgroundAlternate=99,208,223
|
||||
BackgroundNormal=60,60,60
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Complementary]
|
||||
BackgroundAlternate=99,208,223
|
||||
BackgroundNormal=27,27,27
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Header]
|
||||
BackgroundAlternate=31,36,37
|
||||
BackgroundNormal=27,27,27
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Header][Inactive]
|
||||
BackgroundAlternate=31,36,37
|
||||
BackgroundNormal=27,27,27
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Selection]
|
||||
BackgroundAlternate=63,118,125
|
||||
BackgroundNormal=99,208,223
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=67,67,67
|
||||
ForegroundInactive=83,138,145
|
||||
ForegroundLink=27,27,27
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=67,67,67
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Tooltip]
|
||||
BackgroundAlternate=49,55,55
|
||||
BackgroundNormal=46,46,46
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:View]
|
||||
BackgroundAlternate=49,55,55
|
||||
BackgroundNormal=46,46,46
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[Colors:Window]
|
||||
BackgroundAlternate=31,36,37
|
||||
BackgroundNormal=27,27,27
|
||||
DecorationFocus=99,208,223
|
||||
DecorationHover=99,208,223
|
||||
ForegroundActive=99,208,223
|
||||
ForegroundInactive=211,211,211
|
||||
ForegroundLink=99,208,223
|
||||
ForegroundNegative=255,160,154
|
||||
ForegroundNeutral=255,163,125
|
||||
ForegroundNormal=231,231,231
|
||||
ForegroundPositive=94,219,140
|
||||
ForegroundVisited=99,208,223
|
||||
|
||||
[General]
|
||||
ColorScheme=CosmicDark
|
||||
Name=COSMIC Dark
|
||||
shadeSortColumn=true
|
||||
|
||||
[Icons]
|
||||
Theme=breeze-dark
|
||||
|
||||
[KDE]
|
||||
contrast=4
|
||||
widgetStyle=qt6ct-style
|
||||
|
||||
[WM]
|
||||
activeBackground=27,27,27
|
||||
activeBlend=99,208,223
|
||||
activeForeground=99,208,223
|
||||
inactiveBackground=27,27,27
|
||||
inactiveBlend=99,208,223
|
||||
inactiveForeground=99,208,223
|
||||
|
|
@ -0,0 +1,157 @@
|
|||
---
|
||||
source: cosmic-theme/src/output/qt_output.rs
|
||||
expression: light_default_kcolorscheme
|
||||
---
|
||||
# GENERATED BY COSMIC
|
||||
|
||||
[ColorEffects:Disabled]
|
||||
Color=194,194,194
|
||||
ColorAmount=0
|
||||
ColorEffect=0
|
||||
ContrastAmount=0.65
|
||||
ContrastEffect=1
|
||||
IntensityAmount=0.1
|
||||
IntensityEffect=2
|
||||
|
||||
[ColorEffects:Inactive]
|
||||
ChangeSelectionColor=false
|
||||
Enable=false
|
||||
Color=215,215,215
|
||||
ColorAmount=0.025
|
||||
ColorEffect=2
|
||||
ContrastAmount=0.1
|
||||
ContrastEffect=2
|
||||
IntensityAmount=0
|
||||
IntensityEffect=0
|
||||
|
||||
[Colors:Button]
|
||||
BackgroundAlternate=0,82,90
|
||||
BackgroundNormal=173,173,173
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:Complementary]
|
||||
BackgroundAlternate=24,85,41
|
||||
BackgroundNormal=203,221,173
|
||||
DecorationFocus=24,85,41
|
||||
DecorationHover=24,85,41
|
||||
ForegroundActive=24,85,41
|
||||
ForegroundInactive=34,36,31
|
||||
ForegroundLink=24,85,41
|
||||
ForegroundNegative=120,41,46
|
||||
ForegroundNeutral=83,72,0
|
||||
ForegroundNormal=16,16,16
|
||||
ForegroundPositive=24,85,41
|
||||
ForegroundVisited=24,85,41
|
||||
|
||||
[Colors:Header]
|
||||
BackgroundAlternate=204,208,209
|
||||
BackgroundNormal=215,215,215
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:Header][Inactive]
|
||||
BackgroundAlternate=204,208,209
|
||||
BackgroundNormal=215,215,215
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:Selection]
|
||||
BackgroundAlternate=108,149,152
|
||||
BackgroundNormal=0,82,90
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=246,246,246
|
||||
ForegroundInactive=123,164,168
|
||||
ForegroundLink=215,215,215
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=246,246,246
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:Tooltip]
|
||||
BackgroundAlternate=233,237,237
|
||||
BackgroundNormal=245,245,245
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:View]
|
||||
BackgroundAlternate=233,237,237
|
||||
BackgroundNormal=245,245,245
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[Colors:Window]
|
||||
BackgroundAlternate=204,208,209
|
||||
BackgroundNormal=215,215,215
|
||||
DecorationFocus=0,82,90
|
||||
DecorationHover=0,82,90
|
||||
ForegroundActive=0,82,90
|
||||
ForegroundInactive=38,38,38
|
||||
ForegroundLink=0,82,90
|
||||
ForegroundNegative=137,4,24
|
||||
ForegroundNeutral=121,44,0
|
||||
ForegroundNormal=18,18,18
|
||||
ForegroundPositive=0,87,44
|
||||
ForegroundVisited=0,82,90
|
||||
|
||||
[General]
|
||||
ColorScheme=CosmicLight
|
||||
Name=COSMIC Light
|
||||
shadeSortColumn=true
|
||||
|
||||
[Icons]
|
||||
Theme=breeze
|
||||
|
||||
[KDE]
|
||||
contrast=4
|
||||
widgetStyle=qt6ct-style
|
||||
|
||||
[WM]
|
||||
activeBackground=215,215,215
|
||||
activeBlend=215,215,215
|
||||
activeForeground=0,82,90
|
||||
inactiveBackground=215,215,215
|
||||
inactiveBlend=215,215,215
|
||||
inactiveForeground=0,82,90
|
||||
Loading…
Add table
Add a link
Reference in a new issue