/*1* Copyright (c) 2006 Kungliga Tekniska Högskolan2* (Royal Institute of Technology, Stockholm, Sweden).3* All rights reserved.4*5* Redistribution and use in source and binary forms, with or without6* modification, are permitted provided that the following conditions7* are met:8*9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11*12* 2. Redistributions in binary form must reproduce the above copyright13* notice, this list of conditions and the following disclaimer in the14* documentation and/or other materials provided with the distribution.15*16* 3. Neither the name of KTH nor the names of its contributors may be17* used to endorse or promote products derived from this software without18* specific prior written permission.19*20* THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY21* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE22* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR23* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE24* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR25* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF26* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR27* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,28* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR29* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF30* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */3132#include "kadmin_locl.h"3334krb5_context context;35void *kadm_handle;3637struct {38const char *str;39int ret;40time_t t;41} ts[] = {42{ "2006-12-22 18:09:00", 0, 1166810940 },43{ "2006-12-22", 0, 1166831999 },44{ "2006-12-22 23:59:59", 0, 1166831999 }45};4647static int48test_time(void)49{50int i, errors = 0;5152for (i = 0; i < sizeof(ts)/sizeof(ts[0]); i++) {53time_t t;54int ret;5556ret = str2time_t (ts[i].str, &t);57if (ret != ts[i].ret) {58printf("%d: %d is wrong ret\n", i, ret);59errors++;60}61else if (t != ts[i].t) {62printf("%d: %d is wrong time\n", i, (int)t);63errors++;64}65}6667return errors;68}697071int72main(int argc, char **argv)73{74krb5_error_code ret;7576setprogname(argv[0]);7778ret = krb5_init_context(&context);79if (ret)80errx (1, "krb5_init_context failed: %d", ret);8182ret = 0;83ret += test_time();8485krb5_free_context(context);8687return ret;88}89909192