aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/test_mhd_version.c
blob: bd91d64d4d1c78612a1ea9feae7d4a6aed74ff27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
  This file is part of libmicrohttpd
  Copyright (C) 2023 Evgeny Grin (Karlson2k)

  This test tool is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This test tool is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library.
  If not, see <http://www.gnu.org/licenses/>.
*/

/**
 * @file microhttpd/test_mhd_version.с
 * @brief  Tests for MHD versions identifiers
 * @author Karlson2k (Evgeny Grin)
 */

#include "mhd_options.h"
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#else  /* ! HAVE_INTTYPES_H */
#define PRIX32 "X"
#endif /* ! HAVE_INTTYPES_H */
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
#include "microhttpd.h"


#ifdef PACKAGE_VERSION
static const char str_macro_pkg_ver[] = PACKAGE_VERSION;
#else  /* ! PACKAGE_VERSION */
static const char str_macro_pkg_ver[] = "error!";
#error No PACKAGE_VERSION defined
#endif /* ! PACKAGE_VERSION */

#ifdef VERSION
static const char str_macro_ver[] = VERSION;
#else  /* ! VERSION */
static const char str_macro_ver[] = "error!";
#error No PACKAGE_VERSION defined
#endif /* ! VERSION */

#ifdef MHD_VERSION
static const uint32_t bin_macro = (uint32_t) (MHD_VERSION);
#else  /* ! MHD_VERSION */
static const uint32_t bin_macro = 0;
#error MHD_VERSION is not defined
#endif /* ! MHD_VERSION */

/* 0 = success, 1 = failure */
static int
test_macro1_vs_macro2_str (void)
{
  printf ("Checking PACKAGE_VERSION macro vs VERSION macro.\n");
  if (0 != strcmp (str_macro_pkg_ver, str_macro_ver))
  {
    fprintf (stderr, "'%s' vs '%s' - FAILED.\n",
             str_macro_pkg_ver, str_macro_ver);
    return 1;
  }
  printf ("'%s' vs '%s' - success.\n",
          str_macro_pkg_ver, str_macro_ver);
  return 0;
}


/* 0 = success, 1 = failure */
static int
test_macro2_vs_func_str (void)
{
  const char *str_func = MHD_get_version ();
  printf ("Checking VERSION macro vs MHD_get_version() function.\n");
  if (NULL == str_func)
  {
    fprintf (stderr, "MHD_get_version() returned NULL.\n");
    return 1;
  }
  if (0 != strcmp (str_macro_ver, str_func))
  {
    fprintf (stderr, "'%s' vs '%s' - FAILED.\n",
             str_macro_ver, str_func);
    return 1;
  }
  printf ("'%s' vs '%s' - success.\n",
          str_macro_ver, str_func);
  return 0;
}


/* 0 = success, 1 = failure */
static int
test_func_str_vs_macro_bin (void)
{
  char bin_print[64];
  int res;
  const char *str_func = MHD_get_version ();

  printf ("Checking MHD_get_version() function vs MHD_VERSION macro.\n");
#ifdef HAVE_SNPRINTF
  res = snprintf (bin_print, sizeof(bin_print), "%X.%X.%X",
                  (unsigned int) ((bin_macro >> 24) & 0xFF),
                  (unsigned int) ((bin_macro >> 16) & 0xFF),
                  (unsigned int) ((bin_macro >> 8) & 0xFF));
#else  /* ! HAVE_SNPRINTF */
  res = sprintf (bin_print, "%X.%X.%X",
                 (unsigned int) ((bin_macro >> 24) & 0xFF),
                 (unsigned int) ((bin_macro >> 16) & 0xFF),
                 (unsigned int) ((bin_macro >> 8) & 0xFF));
#endif /* ! HAVE_SNPRINTF */
  if ((9 < res) || (0 >= res))
  {
    fprintf (stderr, "snprintf() error.\n");
    exit (99);
  }

  if (0 != strcmp (str_func, bin_print))
  {
    fprintf (stderr, "'%s' vs '0x%08" PRIX32 "' ('%s') - FAILED.\n",
             str_func,
             bin_macro,
             bin_print);
    return 1;
  }
  fprintf (stderr, "'%s' vs '0x%08" PRIX32 "' ('%s') - success.\n",
           str_func,
           bin_macro,
           bin_print);
  return 0;
}


/* 0 = success, 1 = failure */
static int
test_macro_vs_func_bin (void)
{
  const uint32_t bin_func = MHD_get_version_bin ();

  printf ("Checking MHD_VERSION macro vs MHD_get_version_bin() function.\n");
  if (bin_macro != bin_func)
  {
    fprintf (stderr, "'0x%08" PRIX32 "' vs '0x%08" PRIX32 "' - FAILED.\n",
             bin_macro, bin_func);
    return 1;
  }
  printf ("'0x%08" PRIX32 "' vs '0x%08" PRIX32 "' - success.\n",
          bin_macro, bin_func);
  return 0;
}


/* 0 = success, 1 = failure */
static int
test_func_bin_format (void)
{
  const uint32_t bin_func = MHD_get_version_bin ();
  unsigned int test_byte;
  int ret = 0;
  printf ("Checking format of MHD_get_version_bin() function return value.\n");
  test_byte = (unsigned int) ((bin_func >> 24) & 0xFF);
  if ((0xA <= (test_byte & 0xF))
      || (0xA <= (test_byte >> 4)))
  {
    fprintf (stderr,
             "Invalid value in the first (most significant) byte: %02X\n",
             test_byte);
    ret = 1;
  }
  test_byte = (unsigned int) ((bin_func >> 16) & 0xFF);
  if ((0xA <= (test_byte & 0xF))
      || (0xA <= (test_byte >> 4)))
  {
    fprintf (stderr,
             "Invalid value in the second byte: %02X\n",
             test_byte);
    ret = 1;
  }
  test_byte = (unsigned int) ((bin_func >> 8) & 0xFF);
  if ((0xA <= (test_byte & 0xF))
      || (0xA <= (test_byte >> 4)))
  {
    fprintf (stderr,
             "Invalid value in the third byte: %02X\n",
             test_byte);
    ret = 1;
  }
  if (0 != ret)
  {
    fprintf (stderr,
             "The value (0x%08" PRIX32 ") returned by MHD_get_version_bin() "
             "function is invalid as it cannot be used as packed BCD form "
             "(its hexadecimal representation has at least one digit in "
             "A-F range).\n",
             bin_func);
    return 1;
  }
  printf ("'0x%08" PRIX32 "' - success.\n", bin_func);
  return 0;
}


int
main (void)
{
  int res;
  res = test_macro1_vs_macro2_str ();
  res += test_macro2_vs_func_str ();
  res += test_func_str_vs_macro_bin ();
  res += test_macro_vs_func_bin ();
  res += test_func_bin_format ();

  if (0 != res)
  {
    fprintf (stderr, "Test failed. Number of errors: %d\n", res);
    return 1;
  }
  printf ("Test succeed.\n");
  return 0;
}