arg
[oweals/gnunet.git] / src / fs / test_gnunet_fs_rec.py.in
1 #!@PYTHON@
2 #    This file is part of GNUnet.
3 #    (C) 2010 Christian Grothoff (and other contributing authors)
4 #
5 #    GNUnet is free software; you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published
7 #    by the Free Software Foundation; either version 2, or (at your
8 #    option) any later version.
9 #
10 #    GNUnet is distributed in the hope that it will be useful, but
11 #    WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 #    General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with GNUnet; see the file COPYING.  If not, write to the
17 #    Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 #    Boston, MA 02111-1307, USA.
19 #
20 # Testcase for file-sharing command-line tools (recursive publishing & download)
21 import pexpect
22 import os
23 import signal
24 import re
25
26 os.system ('rm -rf /tmp/gnunet-test-fs-py-rec/')
27 os.system ('gnunet-arm -sq -c test_gnunet_fs_rec_data.conf')
28 os.system ('tar xfz test_gnunet_fs_rec_data.tgz')
29 try:
30   pub = pexpect.spawn ('gnunet-publish -c test_gnunet_fs_rec_data.conf -d -k testdir dir/')
31   pub.expect ('Publishing `dir/\' done.\r')
32   pub.expect ("URI is `gnunet://fs/chk/M2I80IUI2DM4L6G93KL15AHAO7MIMS5JKP1L3LQFVN50CT7AKRQDSF594BC9TD97JJIT3COF6B5O524CMIOG9EJO8UK1560M54JRI70.GBRE5M4QJ7NA0QIN88FMSC78NNOQMVT5DH8FP37OIR5SGGHFEB9ESDNBRKT9PFE9N2GOI81UN8GGBR6KH9GRTV1T04JFSJURF2U0VE8.20182'.")
33   pub.expect (pexpect.EOF)
34
35   down = pexpect.spawn ('gnunet-download -c test_gnunet_fs_rec_data.conf -R -o rdir.gnd gnunet://fs/chk/M2I80IUI2DM4L6G93KL15AHAO7MIMS5JKP1L3LQFVN50CT7AKRQDSF594BC9TD97JJIT3COF6B5O524CMIOG9EJO8UK1560M54JRI70.GBRE5M4QJ7NA0QIN88FMSC78NNOQMVT5DH8FP37OIR5SGGHFEB9ESDNBRKT9PFE9N2GOI81UN8GGBR6KH9GRTV1T04JFSJURF2U0VE8.20182')
36   down.expect (re.compile ("Downloading `rdir.gnd\' done \(.*\).\r"));
37   down.expect (pexpect.EOF);
38
39   dir = pexpect.spawn ('gnunet-directory -c test_gnunet_fs_rec_data.conf  rdir/a.gnd')
40   dir.expect (re.compile ("Directory `a/' meta data:"));
41   dir.expect (re.compile ("Directory `a/' contents:"));
42   dir.expect (re.compile ("COPYING (.*)"));
43   dir.expect (re.compile ("INSTALL (.*)"));
44   dir.expect (pexpect.EOF)
45
46   os.system ('rm -r rdir/b.gnd rdir/a.gnd')
47   if (0 != os.system ("diff -r dir rdir")):
48     raise Exception ("Unexpected difference between source directory and downloaded result")
49   
50 finally:
51   os.system ('gnunet-arm -c test_gnunet_fs_rec_data.conf -eq')
52   os.system ('rm -r dir rdir rdir.gnd')
53   os.system ('rm -rf /tmp/gnunet-test-fs-py-rec/')