-fixing 2352
[oweals/gnunet.git] / src / fs / test_gnunet_fs_idx.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 (indexing and unindexing)
21 import sys
22 import os
23 import subprocess
24 import re
25 import shutil
26
27 srcdir = "../.."
28 gnunet_pyexpect_dir = os.path.join (srcdir, "contrib")
29 if gnunet_pyexpect_dir not in sys.path:
30   sys.path.append (gnunet_pyexpect_dir)
31
32 from gnunet_pyexpect import pexpect
33
34 if os.name == 'posix':
35   download = 'gnunet-download'
36   gnunetarm = 'gnunet-arm'
37   publish = 'gnunet-publish'
38   unindex = 'gnunet-unindex'
39 elif os.name == 'nt':
40   download = 'gnunet-download.exe'
41   gnunetarm = 'gnunet-arm.exe'
42   publish = 'gnunet-publish.exe'
43   unindex = 'gnunet-unindex.exe'
44
45 if os.name == "nt":
46   shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True)
47 else:
48   shutil.rmtree ("/tmp/gnunet-test-fs-py-idx", True)
49
50 arm = subprocess.Popen ([gnunetarm, '-sq', '-c', 'test_gnunet_fs_idx_data.conf'])
51 arm.communicate ()
52
53 try:
54   pub = pexpect ()
55   pub.spawn (None, [publish, '-c', 'test_gnunet_fs_idx_data.conf', '-m', "description:The GNU Public License", '-k', 'gpl', '../../COPYING'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
56   pub.expect ("stdout", re.compile (r"URI is `gnunet://fs/chk/PC0M19QMQC0BPSHR6BGA228PP6INER1D610MGEMOMEM87222FN8HVUO7PQGO0O9HD2GVLHF2N5IDHEQUNK6LKE428FPO96SKQEA486O\.PG7K85JGQ6N599MD5HEP3CHEVFPKQD9JB6NPSLVA3T1SKDS66CFI499VS6MGQ88B0QUAVT1282TCRD4GGFVUKDLGI8F0SPIANA3J2LG\.35147'\.\r?\n"))
57
58   down = pexpect ()
59   down.spawn (None, [download, '-c', 'test_gnunet_fs_idx_data.conf', '-o', 'COPYING', 'gnunet://fs/chk/PC0M19QMQC0BPSHR6BGA228PP6INER1D610MGEMOMEM87222FN8HVUO7PQGO0O9HD2GVLHF2N5IDHEQUNK6LKE428FPO96SKQEA486O.PG7K85JGQ6N599MD5HEP3CHEVFPKQD9JB6NPSLVA3T1SKDS66CFI499VS6MGQ88B0QUAVT1282TCRD4GGFVUKDLGI8F0SPIANA3J2LG.35147'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
60   down.expect ("stdout", re.compile (r"Downloading `COPYING' done (.*).\r?\n"))
61   os.remove ("COPYING")
62
63   un = pexpect ()
64   un.spawn (None, [unindex, '-c', 'test_gnunet_fs_idx_data.conf', '../../COPYING'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
65   un.expect ("stdout", re.compile (r'Unindexing done\.\r?\n'))
66
67 finally:
68   arm = subprocess.Popen ([gnunetarm, '-eq', '-c', 'test_gnunet_fs_idx_data.conf'])
69   arm.communicate ()
70   if os.name == "nt":
71     shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True)
72   else:
73     shutil.rmtree ("/tmp/gnunet-test-fs-py-idx", True)