700e182777338026f5ffb8a6cc0f78ce4db9d0b1
[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   ".a~",
44   ".a",
45   ".b~",
46   ".b",
47   "a~",
48   "a",
49   "a.b~",
50   "a.b",
51   "a.bc~",
52   "a.bc",
53   "b~",
54   "b",
55   "gcc-c++-10.fc9.tar.gz",
56   "gcc-c++-10.fc9.tar.gz.~1~",
57   "gcc-c++-10.fc9.tar.gz.~2~",
58   "gcc-c++-10.8.12-0.7rc2.fc9.tar.bz2",
59   "gcc-c++-10.8.12-0.7rc2.fc9.tar.bz2.~1~",
60   "glibc-2-0.1.beta1.fc10.rpm",
61   "glibc-common-5-0.2.beta2.fc9.ebuild",
62   "glibc-common-5-0.2b.deb",
63   "glibc-common-11b.ebuild",
64   "glibc-common-11-0.6rc2.ebuild",
65   "libstdc++-0.5.8.11-0.7rc2.fc10.tar.gz",
66   "libstdc++-4a.fc8.tar.gz",
67   "libstdc++-4.10.4.20040204svn.rpm",
68   "libstdc++-devel-3.fc8.ebuild",
69   "libstdc++-devel-3a.fc9.tar.gz",
70   "libstdc++-devel-8.fc8.deb",
71   "libstdc++-devel-8.6.2-0.4b.fc8",
72   "nss_ldap-1-0.2b.fc9.tar.bz2",
73   "nss_ldap-1-0.6rc2.fc8.tar.gz",
74   "nss_ldap-1.0-0.1a.tar.gz",
75   "nss_ldap-10beta1.fc8.tar.gz",
76   "nss_ldap-10.11.8.6.20040204cvs.fc10.ebuild",
77   "#.b#",
78   NULL
79 };
80
81 int
82 main (int argc, char **argv)
83 {
84   const char *const *i;
85
86   /* Following tests taken from test-strverscmp.c */
87   ASSERT (filevercmp ("", "") == 0);
88   ASSERT (filevercmp ("a", "a") == 0);
89   ASSERT (filevercmp ("a", "b") < 0);
90   ASSERT (filevercmp ("b", "a") > 0);
91   ASSERT (filevercmp ("a0", "a") > 0);
92   ASSERT (filevercmp ("00", "01") < 0);
93   ASSERT (filevercmp ("01", "010") < 0);
94   ASSERT (filevercmp ("9", "10") < 0);
95   ASSERT (filevercmp ("0a", "0") > 0);
96
97   /* compare each version string with each other - O(n^2) */
98   for (i = examples; *i; i++)
99     {
100       const char *const *j;
101       for (j = examples; *j; j++)
102         {
103           int result = filevercmp (*i, *j);
104           if (result < 0)
105             ASSERT (i < j);
106           else if (0 < result)
107             ASSERT (j < i);
108           else
109             ASSERT (i == j);
110         }
111     }
112
113   return 0;
114 }