filevercmp: new module
[gnulib.git] / tests / test-filevercmp.c
1 /* Test of filevercmp() function.
2    Copyright (C) 2008 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   "gcc-c++-10.fc9.tar.gz",
41   "gcc-c++-10.8.12-0.7rc2.fc9.tar.bz2",
42   "glibc-2-0.1.beta1.fc10.rpm",
43   "glibc-common-5-0.2.beta2.fc9.ebuild",
44   "glibc-common-5-0.2b.deb",
45   "glibc-common-11b.ebuild",
46   "glibc-common-11-0.6rc2.ebuild",
47   "libstdc++-0.5.8.11-0.7rc2.fc10.tar.gz",
48   "libstdc++-4a.fc8.tar.gz",
49   "libstdc++-4.10.4.20040204svn.rpm",
50   "libstdc++-devel-3.fc8.ebuild",
51   "libstdc++-devel-3a.fc9.tar.gz",
52   "libstdc++-devel-8.fc8.deb",
53   "libstdc++-devel-8.6.2-0.4b.fc8",
54   "nss_ldap-1-0.2b.fc9.tar.bz2",
55   "nss_ldap-1-0.6rc2.fc8.tar.gz",
56   "nss_ldap-1.0-0.1a.tar.gz",
57   "nss_ldap-10beta1.fc8.tar.gz",
58   "nss_ldap-10.11.8.6.20040204cvs.fc10.ebuild",
59   NULL
60 };
61
62 int
63 main (int argc, char **argv)
64 {
65   const char *const *i;
66
67   /* Following tests taken from test-strverscmp.c */
68   ASSERT (filevercmp ("", "") == 0);
69   ASSERT (filevercmp ("a", "a") == 0);
70   ASSERT (filevercmp ("a", "b") < 0);
71   ASSERT (filevercmp ("b", "a") > 0);
72   ASSERT (filevercmp ("a0", "a") > 0);
73   ASSERT (filevercmp ("00", "01") < 0);
74   ASSERT (filevercmp ("01", "010") < 0);
75   ASSERT (filevercmp ("9", "10") < 0);
76   ASSERT (filevercmp ("0a", "0") > 0);
77
78   /* compare each version string with each other - O(n^2) */
79   for (i = examples; *i; i++)
80     {
81       const char *const *j;
82       for (j = examples; *j; j++)
83         {
84           int result = filevercmp (*i, *j);
85           if (result < 0)
86             ASSERT (i < j);
87           else if (0 < result)
88             ASSERT (j < i);
89           else
90             ASSERT (i == j);
91         }
92     }
93
94   return 0;
95 }