reduce loop counters to more practical levels
[oweals/gnunet.git] / src / fs / test_gnunet_fs_psd.py.in
1 #!@PYTHON@
2 #    This file is part of GNUnet.
3 #    (C) 2010, 2018 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., 51 Franklin Street, Fifth Floor,
18 #    Boston, MA 02110-1301, USA.
19 #
20 # Testcase for file-sharing command-line tools (publish, search, download)
21 import sys
22 import os
23 import subprocess
24 import re
25 import shutil
26 try:
27     reload
28 except NameError:
29     # python3.4:
30     from importlib import reload
31
32
33 # Force encoding to utf-8, as this test otherwise fails
34 # on some systems (see #5094).
35 reload(sys)
36 sys.setdefaultencoding('utf8')
37
38 srcdir = "../.."
39 gnunet_pyexpect_dir = os.path.join(srcdir, "contrib/scripts")
40 if gnunet_pyexpect_dir not in sys.path:
41     sys.path.append(gnunet_pyexpect_dir)
42
43 from gnunet_pyexpect import pexpect
44
45 if os.name == 'posix':
46     download = './gnunet-download'
47     gnunetarm = 'gnunet-arm'
48     publish = './gnunet-publish'
49     unindex = './gnunet-unindex'
50     search = './gnunet-search'
51 elif os.name == 'nt':
52     download = './gnunet-download.exe'
53     gnunetarm = 'gnunet-arm.exe'
54     publish = './gnunet-publish.exe'
55     unindex = './gnunet-unindex.exe'
56     search = './gnunet-search.exe'
57
58 if os.name == "nt":
59     shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-psd"), True)
60 else:
61     shutil.rmtree("/tmp/gnunet-test-fs-py-psd", True)
62
63 arm = subprocess.Popen([gnunetarm, '-sq', '-c', 'test_gnunet_fs_psd_data.conf'])
64 arm.communicate()
65
66 # first, basic publish-search-download run
67 try:
68     pub = pexpect()
69     pub.spawn(None, [publish, '-c', 'test_gnunet_fs_psd_data.conf', '-n', '-m', "description:Test archive", '-k', 'tst', 'test_gnunet_fs_rec_data.tgz'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
70     pub.expect("stdout", re.compile(r"Publishing `.+test_gnunet_fs_rec_data.tgz' done\.\r?\n"))
71     pub.expect("stdout", re.compile(r"URI is `gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822'\.\r?\n"))
72
73     s = pexpect()
74     s.spawn(None, [search, '-V', '-t', '1000 ms', '-N', '1', '-c', 'test_gnunet_fs_psd_data.conf', 'tst'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
75     s.expect("stdout", re.compile(r'gnunet-download -o "test_gnunet_fs_rec_data.tgz" gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822\r?\n'))
76
77     down = pexpect()
78     down.spawn(None, [download, '-c', 'test_gnunet_fs_psd_data.conf', '-o', 'test_gnunet_fs_rec_data.tar.gz', 'gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG.17822'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
79     down.expect("stdout", re.compile(r"Downloading `test_gnunet_fs_rec_data.tar.gz' done (.*).\r?\n"))
80     os.remove("test_gnunet_fs_rec_data.tar.gz")
81
82 finally:
83     arm = subprocess.Popen([gnunetarm, '-eq', '-c', 'test_gnunet_fs_psd_data.conf'])
84     arm.communicate()
85     if os.name == "nt":
86         shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-psd"), True)
87     else:
88         shutil.rmtree("/tmp/gnunet-test-fs-py-psd", True)