Use spaces for indentation, not tabs.
[gnulib.git] / tests / test-filevercmp.c
1 /* Test of filevercmp() function.
2    Copyright (C) 2008-2009 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 #include <config.h>
19
20 #include "filevercmp.h"
21
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #define ASSERT(expr) \
26   do                                                                         \
27     {                                                                        \
28       if (!(expr))                                                           \
29         {                                                                    \
30           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
31           fflush (stderr);                                                   \
32           abort ();                                                          \
33         }                                                                    \
34     }                                                                        \
35   while (0)
36
37 /* set of well sorted examples */
38 static const char *const examples[] =
39 {
40   "",
41   ".",
42   "..",
43   ".0",
44   ".9",
45   ".A",
46   ".Z",
47   ".a~",
48   ".a",
49   ".b~",
50   ".b",
51   ".z",
52   ".zz~",
53   ".zz",
54   ".zz.~1~",
55   ".zz.0",
56   "0",
57   "9",
58   "A",
59   "Z",
60   "a~",
61   "a",
62   "a.b~",
63   "a.b",
64   "a.bc~",
65   "a.bc",
66   "b~",
67   "b",
68   "gcc-c++-10.fc9.tar.gz",
69   "gcc-c++-10.fc9.tar.gz.~1~",
70   "gcc-c++-10.fc9.tar.gz.~2~",
71   "gcc-c++-10.8.12-0.7rc2.fc9.tar.bz2",
72   "gcc-c++-10.8.12-0.7rc2.fc9.tar.bz2.~1~",
73   "glibc-2-0.1.beta1.fc10.rpm",
74   "glibc-common-5-0.2.beta2.fc9.ebuild",
75   "glibc-common-5-0.2b.deb",
76   "glibc-common-11b.ebuild",
77   "glibc-common-11-0.6rc2.ebuild",
78   "libstdc++-0.5.8.11-0.7rc2.fc10.tar.gz",
79   "libstdc++-4a.fc8.tar.gz",
80   "libstdc++-4.10.4.20040204svn.rpm",
81   "libstdc++-devel-3.fc8.ebuild",
82   "libstdc++-devel-3a.fc9.tar.gz",
83   "libstdc++-devel-8.fc8.deb",
84   "libstdc++-devel-8.6.2-0.4b.fc8",
85   "nss_ldap-1-0.2b.fc9.tar.bz2",
86   "nss_ldap-1-0.6rc2.fc8.tar.gz",
87   "nss_ldap-1.0-0.1a.tar.gz",
88   "nss_ldap-10beta1.fc8.tar.gz",
89   "nss_ldap-10.11.8.6.20040204cvs.fc10.ebuild",
90   "z",
91   "zz~",
92   "zz",
93   "zz.~1~",
94   "zz.0",
95   "#.b#",
96   NULL
97 };
98
99 int
100 main (void)
101 {
102   const char *const *i;
103
104   /* Following tests taken from test-strverscmp.c */
105   ASSERT (filevercmp ("", "") == 0);
106   ASSERT (filevercmp ("a", "a") == 0);
107   ASSERT (filevercmp ("a", "b") < 0);
108   ASSERT (filevercmp ("b", "a") > 0);
109   ASSERT (filevercmp ("a0", "a") > 0);
110   ASSERT (filevercmp ("00", "01") < 0);
111   ASSERT (filevercmp ("01", "010") < 0);
112   ASSERT (filevercmp ("9", "10") < 0);
113   ASSERT (filevercmp ("0a", "0") > 0);
114
115   /* compare each version string with each other - O(n^2) */
116   for (i = examples; *i; i++)
117     {
118       const char *const *j;
119       for (j = examples; *j; j++)
120         {
121           int result = filevercmp (*i, *j);
122           if (result < 0)
123             ASSERT (i < j);
124           else if (0 < result)
125             ASSERT (j < i);
126           else
127             ASSERT (i == j);
128         }
129     }
130
131   return 0;
132 }