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