Blame tests/time.c

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2019 Red Hat, Inc.
Packit aea12f
 *
Packit aea12f
 * Author: Nikos Mavrogiannopoulos
Packit aea12f
 *
Packit aea12f
 * This file is part of GnuTLS.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
 * under the terms of the GNU General Public License as published by
Packit aea12f
 * the Free Software Foundation; either version 3 of the License, or
Packit aea12f
 * (at your option) any later version.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
 * General Public License for more details.
Packit aea12f
 *
Packit aea12f
 * You should have received a copy of the GNU Lesser General Public License
Packit aea12f
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit aea12f
 *
Packit aea12f
 */
Packit aea12f
Packit aea12f
/* That's a unit test of _gnutls_utcTime2gtime() and _gnutls_x509_generalTime2gtime()
Packit aea12f
 */
Packit aea12f
Packit aea12f
#ifdef HAVE_CONFIG_H
Packit aea12f
#include <config.h>
Packit aea12f
#endif
Packit aea12f
Packit aea12f
#include <stdio.h>
Packit aea12f
#include <stdlib.h>
Packit aea12f
Packit aea12f
#include <string.h>
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
Packit aea12f
#include "utils.h"
Packit aea12f
Packit aea12f
time_t _gnutls_utcTime2gtime(const char *ttime);
Packit aea12f
time_t _gnutls_x509_generalTime2gtime(const char *ttime);
Packit aea12f
Packit aea12f
struct time_tests_st {
Packit aea12f
	const char *time_str;
Packit aea12f
	time_t utime;
Packit aea12f
};
Packit aea12f
Packit aea12f
struct time_tests_st general_time_tests[] = {
Packit aea12f
	{
Packit aea12f
		.time_str = "20190520133237Z",
Packit aea12f
		.utime = 1558359157
Packit aea12f
	},
Packit aea12f
	{
Packit aea12f
		.time_str = "20170101000000Z",
Packit aea12f
		.utime = 1483228800
Packit aea12f
	},
Packit aea12f
	{
Packit aea12f
		.time_str = "19700101000000Z",
Packit aea12f
		.utime = 0
Packit aea12f
	},
Packit aea12f
};
Packit aea12f
Packit aea12f
struct time_tests_st utc_time_tests[] = {
Packit aea12f
	{
Packit aea12f
		.time_str = "190520133237",
Packit aea12f
		.utime = 1558359157
Packit aea12f
	},
Packit aea12f
	{
Packit aea12f
		.time_str = "170101000000Z",
Packit aea12f
		.utime = 1483228800
Packit aea12f
	},
Packit aea12f
};
Packit aea12f
Packit aea12f
Packit aea12f
void doit(void)
Packit aea12f
{
Packit aea12f
	time_t t;
Packit aea12f
	unsigned i;
Packit aea12f
Packit aea12f
	for (i=0;i
Packit aea12f
		t = _gnutls_x509_generalTime2gtime(general_time_tests[i].time_str);
Packit aea12f
		if (t != general_time_tests[i].utime) {
Packit aea12f
			fprintf(stderr, "%s: Error in GeneralTime conversion\n", general_time_tests[i].time_str);
Packit aea12f
			fprintf(stderr, "got: %lu, expected: %lu\n", (unsigned long)t, general_time_tests[i].utime);
Packit aea12f
		}
Packit aea12f
	}
Packit aea12f
Packit aea12f
	for (i=0;i
Packit aea12f
		t = _gnutls_utcTime2gtime(utc_time_tests[i].time_str);
Packit aea12f
		if (t != utc_time_tests[i].utime) {
Packit aea12f
			fprintf(stderr, "%s: Error in utcTime conversion\n", utc_time_tests[i].time_str);
Packit aea12f
			fprintf(stderr, "got: %lu, expected: %lu\n", (unsigned long)t, utc_time_tests[i].utime);
Packit aea12f
		}
Packit aea12f
	}
Packit aea12f
}
Packit aea12f