Add.
[shishi.git] / tests / keytab.c
blob4aba62c9f7be3a1f9f621845c5966ced37d7b44f
1 /* keytab.c --- Self test MIT keytab file readers.
2 * Copyright (C) 2002, 2003, 2006 Simon Josefsson
4 * This file is part of Shishi.
6 * Shishi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * Shishi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with Shishi; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "utils.c"
24 void
25 test (Shishi * handle)
27 Shishi_keys *keys;
28 char *keytab = getenv ("KEYTAB1");
29 int rc;
31 if (!keytab)
32 keytab = "keytab1.bin";
34 rc = shishi_keys_from_keytab_file (handle, keytab, &keys);
35 if (rc != SHISHI_OK)
36 fail ("shishi_keys_from_keytab_file() failed (%d)\n", rc);
38 if (shishi_keys_size (keys) != 6)
39 fail ("shishi_keys_size() failed (%d)\n", shishi_keys_size (keys));
41 shishi_keys_done (&keys);