library.at: Run tests for Python 2 and 3.
[cascardo/ovs.git] / tests / library.at
1 AT_BANNER([library unit tests])
2
3 AT_SETUP([test flow extractor])
4 AT_CHECK([$PERL `which flowgen.pl` >/dev/null 3>flows 4>pcap])
5 AT_CHECK([ovstest test-flows flows pcap], [0], [checked 247 packets, 0 errors
6 ])
7 AT_CLEANUP
8
9 AT_SETUP([test TCP/IP checksumming])
10 AT_CHECK([ovstest test-csum], [0], [....#....#....####................................#................................#
11 ])
12 AT_CLEANUP
13
14 AT_SETUP([test hash functions])
15 AT_CHECK([ovstest test-hash])
16 AT_CLEANUP
17
18 AT_SETUP([test hash map])
19 AT_KEYWORDS([hmap])
20 AT_CHECK([ovstest test-hmap], [0], [.........
21 ])
22 AT_CLEANUP
23
24 AT_SETUP([test hash index])
25 AT_KEYWORDS([hindex])
26 AT_CHECK([ovstest test-hindex], [0], [.....................
27 ])
28 AT_CLEANUP
29
30 AT_SETUP([test cuckoo hash])
31 AT_KEYWORDS([cmap])
32 AT_CHECK([ovstest test-cmap check 1], [0], [...
33 ])
34 AT_CLEANUP
35
36 AT_SETUP([test atomic operations])
37 AT_CHECK([ovstest test-atomic])
38 AT_CLEANUP
39
40 AT_SETUP([test linked lists])
41 AT_CHECK([ovstest test-list], [0], [...
42 ])
43 AT_CLEANUP
44
45 AT_SETUP([test packet library])
46 AT_CHECK([ovstest test-packets])
47 AT_CLEANUP
48
49 AT_SETUP([test SHA-1])
50 AT_CHECK([ovstest test-sha1], [0], [.........
51 ])
52 AT_CLEANUP
53
54 AT_SETUP([test type properties])
55 AT_CHECK([test-type-props])
56 AT_CLEANUP
57
58 AT_SETUP([test strtok_r bug fix])
59 AT_CHECK([test-strtok_r], [0], [NULL NULL
60 ])
61 AT_CLEANUP
62
63 AT_SETUP([test byte order conversion])
64 AT_KEYWORDS([byte order])
65 AT_CHECK([ovstest test-byte-order])
66 AT_CLEANUP
67
68 AT_SETUP([test random number generator])
69 AT_CHECK([ovstest test-random], [0], [dnl
70 average=7fa2014f
71
72 bit      0     1
73   0  4946  5054
74   1  4939  5061
75   2  4947  5053
76   3  4935  5065
77   4  5004  4996
78   5  4998  5002
79   6  5062  4938
80   7  5009  4991
81   8  5001  4999
82   9  5022  4978
83  10  5006  4994
84  11  5039  4961
85  12  4940  5060
86  13  5048  4952
87  14  4930  5070
88  15  4973  5027
89  16  4954  5046
90  17  5043  4957
91  18  5020  4980
92  19  5104  4896
93  20  5051  4949
94  21  5003  4997
95  22  5110  4890
96  23  4950  5050
97  24  5016  4984
98  25  5019  4981
99  26  4948  5052
100  27  4995  5005
101  28  4995  5005
102  29  4969  5031
103  30  5109  4891
104  31  4984  5016
105 (expected values are 5000)
106
107 nibble   0   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15
108      0 640 589 610 613 588 632 650 613 582 646 627 640 612 650 637 671
109      1 626 642 663 620 630 609 617 602 615 638 614 644 641 597 598 644
110      2 667 611 617 613 609 629 642 651 604 641 594 659 651 610 617 585
111      3 621 662 594 605 618 644 616 613 613 616 611 608 614 660 653 652
112      4 641 668 621 664 619 624 625 642 624 629 607 566 599 639 618 614
113      5 666 629 620 621 581 615 598 620 630 651 671 622 628 603 657 588
114      6 620 640 621 606 603 644 628 633 620 597 653 591 637 658 634 615
115      7 636 645 679 593 598 609 612 612 623 626 638 669 603 629 606 622
116 (expected values are 625)
117 ])
118 AT_CLEANUP
119
120 m4_foreach(
121   [testname],
122   [[ctz],
123    [clz],
124    [round_up_pow2],
125    [round_down_pow2],
126    [count_1bits],
127    [log_2_floor],
128    [bitwise_copy],
129    [bitwise_zero],
130    [bitwise_one],
131    [bitwise_is_all_zeros],
132    [ovs_scan]],
133   [AT_SETUP([testname[()] function])
134    AT_KEYWORDS([testname])
135    AT_CHECK([ovstest test-util testname], [0], [], [])
136    AT_CLEANUP])
137
138 AT_SETUP([test unix socket, short pathname - C])
139 AT_SKIP_IF([test "$IS_WIN32" = "yes"])
140 AT_CHECK([ovstest test-unix-socket x])
141 AT_CLEANUP
142
143 dnl Unix sockets with long names are problematic because the name has to
144 dnl go in a fixed-length field in struct sockaddr_un.  Generally the limit
145 dnl is about 100 bytes.  On Linux, we work around this by indirecting through
146 dnl a directory fd using /proc/self/fd/<dirfd>.  We do not have a workaround
147 dnl for other platforms, so we skip the test there.
148 AT_SETUP([test unix socket, long pathname - C])
149 AT_SKIP_IF([test "$IS_WIN32" = "yes"])
150 dnl Linux sockaddr_un has a 108-byte limit, so this needs to be longer.
151 dnl Linux "ecryptfs" has a 143-byte limit, so we use that many bytes.
152 longname=01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012
153
154 dnl Skip the test if the directory can't be created (presumably the file
155 dnl system doesn't support such long names).
156 AT_CHECK([mkdir $longname || exit 77])
157
158 AT_CHECK([cd $longname && ovstest test-unix-socket ../$longname/socket socket])
159 AT_CLEANUP
160
161 m4_define([UNIX_SOCKET_SHORT_PATHNAME_PYN],
162   [AT_SETUP([test unix socket, short pathname - $1])
163    AT_SKIP_IF([test $2 = no || test "$IS_WIN32" = "yes"])
164    AT_KEYWORDS([python unixsocket])
165    AT_CHECK([$3 $srcdir/test-unix-socket.py x])
166    AT_CLEANUP])
167
168 UNIX_SOCKET_SHORT_PATHNAME_PYN([Python2], [$HAVE_PYTHON], [$PYTHON])
169 UNIX_SOCKET_SHORT_PATHNAME_PYN([Python3], [$HAVE_PYTHON3], [$PYTHON3])
170
171 dnl Unix sockets with long names are problematic because the name has to
172 dnl go in a fixed-length field in struct sockaddr_un.  Generally the limit
173 dnl is about 100 bytes.  On Linux, we work around this by indirecting through
174 dnl a directory fd using /proc/self/fd/<dirfd>.  We do not have a workaround
175 dnl for other platforms, so we skip the test there.
176 m4_define([UNIX_SOCKET_LONG_PATHNAME_PYN],
177   [AT_SETUP([test unix socket, long pathname - $1])
178    AT_SKIP_IF([test $2 = no || test "$IS_WIN32" = "yes"])
179    AT_KEYWORDS([python unixsocket])
180    dnl Linux sockaddr_un has a 108-byte limit, so this needs to be longer.
181    dnl Linux "ecryptfs" has a 143-byte limit, so we use that many bytes.
182    longname=01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012
183
184    dnl Skip the test if the directory can't be created (presumably the file
185    dnl system doesn't support such long names).
186    AT_CHECK([mkdir $longname || exit 77])
187    AT_CHECK([cd $longname && $3 $abs_srcdir/test-unix-socket.py ../$longname/socket socket])
188    AT_CLEANUP])
189
190 UNIX_SOCKET_LONG_PATHNAME_PYN([Python2], [$HAVE_PYTHON], [$PYTHON])
191 UNIX_SOCKET_LONG_PATHNAME_PYN([Python3], [$HAVE_PYTHON3], [$PYTHON3])
192
193 AT_SETUP([ovs_assert])
194 if test "$IS_WIN32" = "yes"; then
195   exit_status=9
196 else
197   # SIGABRT + 128
198   exit_status=134
199 fi
200 AT_CHECK([ovstest test-util -voff -vfile:info '-vPATTERN:file:%c|%p|%m' --log-file assert],
201   [$exit_status], [], [stderr])
202
203 AT_CHECK([sed 's/\(opened log file\) .*/\1/
204 s/|[[^|]]*: /|/' test-util.log], [0], [dnl
205 vlog|INFO|opened log file
206 util|EMER|assertion false failed in test_assert()
207 ])
208
209 AT_CHECK([sed 's/.*: //
210 1q' stderr], [0],
211   [assertion false failed in test_assert()
212 ])
213
214 AT_CLEANUP
215
216 AT_SETUP([snprintf])
217 AT_CHECK([ovstest test-util snprintf])
218 AT_CLEANUP
219
220 AT_SETUP([test bitmap functions])
221 AT_CHECK([ovstest test-bitmap check], [0], [..
222 ])
223 AT_CLEANUP
224
225 AT_SETUP([use of public headers])
226 AT_CHECK([test-lib], [0], [])
227 AT_CLEANUP
228
229 AT_SETUP([test ofpbuf module])
230 AT_CHECK([ovstest test-ofpbuf], [0], [])
231 AT_CLEANUP