summaryrefslogtreecommitdiffstats
path: root/third_party/rust/bitflags/src/tests/union.rs
blob: 6190681931cac1c3d3c20f80f4b089e643b5a5fc (plain)
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
use super::*;

use crate::Flags;

#[test]
fn cases() {
    case(
        TestFlags::empty(),
        &[
            (TestFlags::A, 1),
            (TestFlags::all(), 1 | 1 << 1 | 1 << 2),
            (TestFlags::empty(), 0),
            (TestFlags::from_bits_retain(1 << 3), 1 << 3),
        ],
        TestFlags::union,
    );

    case(
        TestFlags::A | TestFlags::C,
        &[
            (TestFlags::A | TestFlags::B, 1 | 1 << 1 | 1 << 2),
            (TestFlags::A, 1 | 1 << 2),
        ],
        TestFlags::union,
    );
}

#[track_caller]
fn case<T: Flags + std::fmt::Debug + std::ops::BitOr<Output = T> + std::ops::BitOrAssign + Copy>(
    value: T,
    inputs: &[(T, T::Bits)],
    mut inherent: impl FnMut(T, T) -> T,
) where
    T::Bits: std::fmt::Debug + PartialEq + Copy,
{
    for (input, expected) in inputs {
        assert_eq!(
            *expected,
            inherent(value, *input).bits(),
            "{:?}.union({:?})",
            value,
            input
        );
        assert_eq!(
            *expected,
            Flags::union(value, *input).bits(),
            "Flags::union({:?}, {:?})",
            value,
            input
        );
        assert_eq!(
            *expected,
            (value | *input).bits(),
            "{:?} | {:?}",
            value,
            input
        );
        assert_eq!(
            *expected,
            {
                let mut value = value;
                value |= *input;
                value
            }
            .bits(),
            "{:?} |= {:?}",
            value,
            input,
        );
    }
}