e1246213854d77cf625a61d54e3dce185a7397d8
[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 it
6 #    under the terms of the GNU Affero General Public License as published
7 #    by the Free Software Foundation, either version 3 of the License,
8 #    or (at your 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 #    Affero General Public License for more details.
14 #   
15 #    You should have received a copy of the GNU Affero General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Testcase for file-sharing command-line tools (indexing and unindexing)
19 import sys
20 import os
21 import subprocess
22 import re
23 import shutil
24
25 srcdir = "../.."
26 gnunet_pyexpect_dir = os.path.join(srcdir, "contrib/scripts")
27 if gnunet_pyexpect_dir not in sys.path:
28     sys.path.append(gnunet_pyexpect_dir)
29
30 from gnunet_pyexpect import pexpect
31
32 if os.name == 'posix':
33     download = './gnunet-download'
34     gnunetarm = 'gnunet-arm'
35     publish = './gnunet-publish'
36     unindex = './gnunet-unindex'
37 elif os.name == 'nt':
38     download = './gnunet-download.exe'
39     gnunetarm = 'gnunet-arm.exe'
40     publish = './gnunet-publish.exe'
41     unindex = './gnunet-unindex.exe'
42
43 if os.name == "nt":
44     shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-idx"), True)
45 else:
46     shutil.rmtree("/tmp/gnunet-test-fs-py-idx", True)
47
48 arm = subprocess.Popen([gnunetarm, '-sq', '-c', 'test_gnunet_fs_idx_data.conf'])
49 arm.communicate()
50
51 try:
52     pub = pexpect()
53
54     pub.spawn(None, [publish, '-c', 'test_gnunet_fs_idx_data.conf', '-m', "description:Test archive", '-k', 'tst', 'test_gnunet_fs_rec_data.tgz'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
55     pub.expect("stdout", re.compile(r"URI is `gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822'\.\r?\n"))
56
57     down = pexpect()
58     down.spawn(None, [download, '-c', 'test_gnunet_fs_idx_data.conf', '-o', 'test_gnunet_fs_rec_data.tar.gz', 'gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG.17822'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
59     down.expect("stdout", re.compile(r"Downloading `test_gnunet_fs_rec_data.tar.gz' done (.*).\r?\n"))
60     os.remove("test_gnunet_fs_rec_data.tar.gz")
61
62     un = pexpect()
63     un.spawn(None, [unindex, '-c', 'test_gnunet_fs_idx_data.conf', 'test_gnunet_fs_rec_data.tgz'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
64     un.expect("stdout", re.compile(r'Unindexing done\.\r?\n'))
65
66 finally:
67     arm = subprocess.Popen([gnunetarm, '-eq', '-c', 'test_gnunet_fs_idx_data.conf'])
68     arm.communicate()
69     if os.name == "nt":
70         shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-idx"), True)
71     else:
72         shutil.rmtree("/tmp/gnunet-test-fs-py-idx", True)