use our 'assert' from "lib_internal/coreassert.h"
[util-vserver.git] / util-vserver / src / testsuite / hashcalc.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #define ENSC_TESTSUITE
24 #define main    Xmain
25 #  include "../vhashify.c"
26 #undef main
27
28 #include "lib_internal/coreassert.h"
29
30 int main(int UNUSED argc, char *argv[])
31 {
32   int           fd = open(argv[1], O_NOFOLLOW|O_NONBLOCK|O_RDONLY|O_NOCTTY);
33   struct stat   st;
34   HashPath      d_path;
35   off_t         size;
36
37   global_info.hash_conf.method = hashFunctionFind(argv[2]);
38   
39   assert(hashFunctionContextInit(&global_info.hash_context,
40                                  global_info.hash_conf.method)!=-1);
41
42   assert(fstat(fd, &st)!=-1);
43
44     // set members of st to defined values so that the hash (which is
45     // influenced by them) is predictable
46   size = st.st_size;
47   memset(&st, 0, sizeof st);
48   st.st_size = size;
49   
50   assert(calculateHashFromFD(fd, d_path, &st));
51
52   Vwrite(1, d_path, strlen(d_path));
53   Vwrite(1, "\n", 1);
54   
55   hashFunctionContextFree(&global_info.hash_context);
56   
57   return 0;
58 }