about summary refs log tree commit diff
path: root/src/test/stdtest/four.rs
blob: 25f1abc4ceae32a7eed764044ee5a832eb3db48a (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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import core::*;

use std;

import std::tri;
import std::four;

fn eq1(a: four::t, b: four::t) -> bool { four::eq(a , b) }
fn ne1(a: four::t, b: four::t) -> bool { four::ne(a , b) }

fn eq2(a: four::t, b: four::t) -> bool { eq1( a, b ) && eq1( b, a ) }

#[test]
fn test_four_req_eq() {
    four::all_values { |a|
        four::all_values { |b|
            assert if a == b { eq1( a, b ) } else { ne1( a, b ) };
        }
    }
}

#[test]
fn test_four_and_symmetry() {
    four::all_values { |a|
        four::all_values { |b|
            assert eq1( four::and(a ,b), four::and(b, a) );
        }
    }
}

#[test]
fn test_four_xor_symmetry() {
    four::all_values { |a|
        four::all_values { |b|
            assert eq1( four::and(a ,b), four::and(b, a) );
        }
    }
}

#[test]
fn test_four_or_symmetry() {
    four::all_values { |a|
        four::all_values { |b|
            assert eq1( four::or(a ,b), four::or(b, a) );
        }
    }
}

fn to_tup(v: four::t) -> (bool, bool) {
    alt v {
      0u8 { (false, false) }
      1u8 { (false, true) }
      2u8 { (true, false) }
      3u8 { (true, true) }
    }
}

#[test]
fn test_four_not() {
    four::all_values { |a|
        let (x, y) = to_tup(a);
        assert to_tup(four::not(a)) == (y, x);
    };
}


#[test]
fn test_four_and() {
    four::all_values { |a|
        four::all_values { |b|
            let (y1, x1) = to_tup(a);
            let (y2, x2) = to_tup(b);
            let (y3, x3) = to_tup(four::and(a, b));

            assert (x3, y3) == (x1 && x2, y1 || y2);
        }
    };
}

#[test]
fn test_four_or() {
    four::all_values { |a|
        four::all_values { |b|
            let (y1, x1) = to_tup(a);
            let (y2, x2) = to_tup(b);
            let (y3, x3) = to_tup(four::or(a, b));

            assert (x3, y3) == (x1 || x2, y1 && y2);
        }
    };
}

#[test]
fn test_four_implies() {
    four::all_values { |a|
        four::all_values { |b|
            let (_, x1) = to_tup(a);
            let (y2, x2) = to_tup(b);
            let (y3, x3) = to_tup(four::implies(a, b));

            assert (x3, y3) == (!x1 || x2, x1 && y2);
        }
    };
}

#[test]
fn test_four_is_true() {
    assert !four::is_true(four::none);
    assert !four::is_true(four::false);
    assert four::is_true(four::true);
    assert four::is_true(four::both);
}

#[test]
fn test_four_is_false() {
    assert four::is_false(four::none);
    assert four::is_false(four::false);
    assert !four::is_false(four::true);
    assert !four::is_false(four::both);
}

#[test]
fn test_four_from_str() {
    four::all_values { |v|
        assert eq1( v, four::from_str(four::to_str(v)) );
    }
}

#[test]
fn test_four_to_str() {
    assert four::to_str(four::none) == "none";
    assert four::to_str(four::false) == "false";
    assert four::to_str(four::true) == "true" ;
    assert four::to_str(four::both) == "both";
}

#[test]
fn test_four_to_tri() {
    assert tri::eq( four::to_trit(four::true), tri::true );
    assert tri::eq( four::to_trit(four::false), tri::false );
    assert tri::eq( four::to_trit(four::none), tri::unknown );
    log four::to_trit(four::both);
    assert tri::eq( four::to_trit(four::both), tri::unknown );
}

#[test]
fn test_four_to_bit() {
    four::all_values { |v|
        assert four::to_bit(v) == if four::is_true(v) { 1u8 } else { 0u8 };
    }
}