1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::{
    prelude::*,
    translate::{from_glib, ToGlibPtr},
    FlagsClass,
};
use gst::bitflags_serde_impl;

bitflags_serde_impl!(crate::GLAPI);
bitflags_serde_impl!(crate::GLConfigSurfaceType, "v1_20");
bitflags_serde_impl!(crate::GLDisplayType);
bitflags_serde_impl!(crate::GLPlatform);
bitflags_serde_impl!(crate::GLSLProfile);

#[cfg(test)]
mod tests {
    macro_rules! check_serialize {
        ($flags:expr, $expected:expr) => {
            let actual = serde_json::to_string(&$flags).unwrap();
            assert_eq!(actual, $expected);
        };
    }

    macro_rules! check_deserialize {
        ($ty:ty, $expected:expr, $json:expr) => {
            let actual: $ty = serde_json::from_str(&$json).unwrap();
            assert_eq!(actual, $expected);
        };
    }

    macro_rules! check_roundtrip {
        ($ty:ty, $flags:expr) => {
            let json = serde_json::to_string(&$flags).unwrap();
            let deserialized: $ty = serde_json::from_str(&json).unwrap();
            assert_eq!(deserialized, $flags);
        };
    }

    #[test]
    fn test_serialize() {
        gst::init().unwrap();

        check_serialize!(crate::GLAPI::all(), "\"opengl+opengl3+gles1+gles2\"");
        #[cfg(feature = "v1_20")]
        check_serialize!(
            crate::GLConfigSurfaceType::all(),
            "\"window+pbuffer+pixmap\""
        );
        #[cfg(feature = "v1_24")]
        check_serialize!(
            crate::GLDisplayType::all(),
            concat!(
                "\"x11+wayland+cocoa+win32+dispmanx+egl+viv-fb+gbm+egl-device",
                "+eagl+winrt+android+egl-surfaceless\""
            )
        );
        check_serialize!(crate::GLPlatform::all(), "\"egl+glx+wgl+cgl+eagl\"");
        check_serialize!(crate::GLSLProfile::all(), "\"es+core+compatibility\"");
    }

    #[test]
    fn test_deserialize() {
        gst::init().unwrap();

        check_deserialize!(
            crate::GLAPI,
            crate::GLAPI::all(),
            "\"opengl+opengl3+gles1+gles2\""
        );
        #[cfg(feature = "v1_20")]
        check_deserialize!(
            crate::GLConfigSurfaceType,
            crate::GLConfigSurfaceType::all(),
            "\"none+window+pbuffer+pixmap\""
        );
        #[cfg(feature = "v1_24")]
        check_deserialize!(
            crate::GLDisplayType,
            crate::GLDisplayType::all(),
            concat!(
                "\"x11+wayland+cocoa+win32+dispmanx+egl+viv-fb+gbm+egl-device",
                "+eagl+winrt+android+egl-surfaceless\""
            )
        );
        check_deserialize!(
            crate::GLPlatform,
            crate::GLPlatform::all(),
            "\"egl+glx+wgl+cgl+eagl\""
        );
        check_deserialize!(
            crate::GLSLProfile,
            crate::GLSLProfile::all(),
            "\"es+core+compatibility\""
        );
    }

    #[test]
    fn test_serde_roundtrip() {
        gst::init().unwrap();

        check_roundtrip!(crate::GLAPI, crate::GLAPI::all());
        #[cfg(feature = "v1_20")]
        check_roundtrip!(
            crate::GLConfigSurfaceType,
            crate::GLConfigSurfaceType::all()
        );
        #[cfg(feature = "v1_20")]
        check_roundtrip!(crate::GLDisplayType, crate::GLDisplayType::all());
        check_roundtrip!(crate::GLPlatform, crate::GLPlatform::all());
        check_roundtrip!(crate::GLSLProfile, crate::GLSLProfile::all());
    }
}