-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathbits.sol
233 lines (181 loc) · 5.22 KB
/
bits.sol
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
pragma solidity ^0.4.16;
pragma experimental "v0.5.0";
pragma experimental "ABIEncoderV2";
import {Bits} from "../../src/bits/Bits.sol";
import {STLTest} from "../STLTest.sol";
/*******************************************************/
contract BitsTest is STLTest {
using Bits for uint;
uint internal constant ZERO = uint(0);
uint internal constant ONE = uint(1);
uint internal constant ONES = uint(~0);
}
/*******************************************************/
contract TestBitsBitAnd is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitAnd(ONES, i*20) == 1);
assert(ONES.bitAnd(ZERO, i*20) == 0);
assert(ZERO.bitAnd(ONES, i*20) == 0);
assert(ZERO.bitAnd(ZERO, i*20) == 0);
}
}
}
contract TestBitsBitEqual is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitEqual(ONES, i*20));
assert(!ONES.bitEqual(ZERO, i*20));
}
}
}
contract TestBitsBitNotSet is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitSet(i*20));
}
}
}
contract TestBitsBitOr is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitOr(ONES, i*20) == 1);
assert(ONES.bitOr(ZERO, i*20) == 1);
assert(ZERO.bitOr(ONES, i*20) == 1);
assert(ZERO.bitOr(ZERO, i*20) == 0);
}
}
}
contract TestBitsBitSet is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitSet(i*20));
}
}
}
contract TestBitsBitsWithDifferentIndices is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bits(i*20, 5) == 31);
}
}
}
contract TestBitsBitsWithDifferentNumBits is BitsTest {
function testImpl() internal {
for (uint8 i = 1; i < 12; i++) {
assert(ONES.bits(0, i) == ONES >> (256 - i));
}
}
}
contract TestBitsBitsGetAll is BitsTest {
function testImpl() internal {
assert(ONES.bits(0, 256) == ONES);
}
}
contract TestBitsBitsGetUpperHalf is BitsTest {
function testImpl() internal {
assert(ONES.bits(128, 128) == ONES >> 128);
}
}
contract TestBitsBitsGetLowerHalf is BitsTest {
function testImpl() internal {
assert(ONES.bits(0, 128) == ONES >> 128);
}
}
contract TestBitsBitsThrowsNumBitsZero is BitsTest {
function testImpl() internal {
ONES.bits(0, 0);
}
}
contract TestBitsBitsThrowsIndexAndLengthOOB is BitsTest {
function testImpl() internal {
ONES.bits(5, 252);
}
}
contract TestBitsBitXor is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.bitXor(ONES, i*20) == 0);
assert(ONES.bitXor(ZERO, i*20) == 1);
assert(ZERO.bitXor(ONES, i*20) == 1);
assert(ZERO.bitXor(ZERO, i*20) == 0);
}
}
}
contract TestBitsClearBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ONES.clearBit(i*20).bit(i*20) == 0);
}
}
}
contract TestBitsBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
uint v = (ONE << i*20) * (i % 2);
assert(v.bit(i*20) == i % 2);
}
}
}
contract TestBitsBitNot is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
uint v = (ONE << i*20) * (i % 2);
assert(v.bitNot(i*20) == 1 - i % 2);
}
}
}
contract TestBitsHighestBitSetAllLowerSet is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i += 20) {
assert((ONES >> i).highestBitSet() == (255 - i));
}
}
}
contract TestBitsHighestBitSetSingleBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i += 20) {
assert((ONE << i).highestBitSet() == i);
}
}
}
contract TestBitsHighestBitSetThrowsBitFieldIsZero is BitsTest {
function testImpl() internal {
ZERO.highestBitSet();
}
}
contract TestBitsLowestBitSetAllHigherSet is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i += 20) {
assert((ONES << i).lowestBitSet() == i);
}
}
}
contract TestBitsLowestBitSetSingleBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i += 20) {
assert((ONE << i).lowestBitSet() == i);
}
}
}
contract TestBitsLowestBitSetThrowsBitFieldIsZero is BitsTest {
function testImpl() internal {
ZERO.lowestBitSet();
}
}
contract TestBitsSetBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
assert(ZERO.setBit(i*20) == ONE << i*20);
}
}
}
contract TestBitsToggleBit is BitsTest {
function testImpl() internal {
for (uint8 i = 0; i < 12; i++) {
var v = ZERO.toggleBit(i*20);
assert(v == ONE << i*20);
assert(v.toggleBit(i*20) == 0);
}
}
}