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