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
|
/* Copyright (C) 2011 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <inttypes.h> // PRIu64
#include <stdlib.h> // putenv
#include <stdio.h> // printf
#include <time.h> // mktime
#include "tests/tests.h"
#include "scanner_functions.h" // date_to_timestamp
int test__date_to_timestamp()
{
time_t ref_timestamp, max_timestamp;
uint32_t test_timestamp;
uint8_t buffer[16];
uint64_t val1, val2; // For time_t type unification.
struct tm tm;
// Set UTC for strftime.
putenv("TZ=UTC");
tzset();
// Get maximal allowed timestamp.
strptime("21051231235959", "%Y%m%d%H%M%S", &tm);
max_timestamp = mktime(&tm);
// Testing loop over whole input interval.
for (ref_timestamp = 0;
ref_timestamp < max_timestamp;
ref_timestamp += 1) {
struct tm result;
// Get reference (correct) timestamp.
strftime((char*)buffer, sizeof(buffer), "%Y%m%d%H%M%S",
gmtime_r(&ref_timestamp, &result));
// Get testing timestamp.
date_to_timestamp(buffer, &test_timestamp);
// Some continuous loging.
if (ref_timestamp % 10000000 == 0) {
val1 = ref_timestamp;
printf("%s = %"PRIu64"\n", buffer, val1);
}
// Comparing results.
if (ref_timestamp != test_timestamp) {
val1 = ref_timestamp;
if (ref_timestamp > test_timestamp) {
val2 = ref_timestamp - test_timestamp;
printf("%s = %"PRIu64", in - out = %"PRIu64"\n",
buffer, val1, val2);
} else {
val2 = test_timestamp - ref_timestamp;
printf("%s = %"PRIu64", out - in = %"PRIu64"\n",
buffer, val1, val2);
}
return -1;
}
}
return 0;
}
|