fixed params in calculateHashFromFD() call
[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 int main(int argc, char *argv[])
29 {
30   int           fd = open(argv[1], O_NOFOLLOW|O_NONBLOCK|O_RDONLY|O_NOCTTY);
31   struct stat   st;
32   HashPath      d_path;
33   off_t         size;
34
35   global_info.hash_conf.method = hashFunctionFind(argv[2]);
36   
37   assert(hashFunctionContextInit(&global_info.hash_context,
38                                  global_info.hash_conf.method)!=-1);
39
40   assert(fstat(fd, &st)!=-1);
41
42     // set members of st to defined values so that the hash (which is
43     // influenced by them) is predictable
44   size = st.st_size;
45   memset(&st, 0, sizeof st);
46   st.st_size = size;
47   
48   assert(calculateHashFromFD(fd, d_path, &st));
49
50   write(1, d_path, strlen(d_path));
51   write(1, "\n", 1);
52   
53   hashFunctionContextFree(&global_info.hash_context);
54   
55   return 0;
56 }