src: for every AGPL3.0 file, add SPDX identifier.
[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 #    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 #    SPDX-License-Identifier: AGPL3.0-or-later
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     # Python 2.7
28     reload
29 except NameError:
30     try:
31         # Python 3.4+:
32         from importlib import reload
33     except ImportError:
34         # Python 3.0 - 3.3
35         from imp import reload
36
37 reload(sys)
38
39 # Force encoding to utf-8, as this test otherwise fails
40 # on some systems (see #5094). In Python 3+ there is no attribute 
41 # sys.setdefaultencoding anymore. 
42 if (3 < sys.version_info[0]):
43     sys.setdefaultencoding('utf8')
44
45 srcdir = "../.."
46 gnunet_pyexpect_dir = os.path.join(srcdir, "contrib/scripts")
47 if gnunet_pyexpect_dir not in sys.path:
48     sys.path.append(gnunet_pyexpect_dir)
49
50 from gnunet_pyexpect import pexpect
51
52 if os.name == 'posix':
53     download = './gnunet-download'
54     gnunetarm = 'gnunet-arm'
55     publish = './gnunet-publish'
56     unindex = './gnunet-unindex'
57     search = './gnunet-search'
58 elif os.name == 'nt':
59     download = './gnunet-download.exe'
60     gnunetarm = 'gnunet-arm.exe'
61     publish = './gnunet-publish.exe'
62     unindex = './gnunet-unindex.exe'
63     search = './gnunet-search.exe'
64
65 if "GNUNET_PREFIX" in os.environ:
66     pass
67 else:
68     print("You need to export GNUNET_PREFIX")
69     sys.exit(1)
70     
71 if os.name == "nt":
72     shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-psd"), True)
73 else:
74     shutil.rmtree("/tmp/gnunet-test-fs-py-psd", True)
75
76 arm = subprocess.Popen([gnunetarm, '-sq', '-c', 'test_gnunet_fs_psd_data.conf'])
77 arm.communicate()
78
79 # first, basic publish-search-download run
80 try:
81     pub = pexpect()
82     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)
83     pub.expect("stdout", re.compile(r"Publishing `.+test_gnunet_fs_rec_data.tgz' done\.\r?\n"))
84     pub.expect("stdout", re.compile(r"URI is `gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822'\.\r?\n"))
85
86     s = pexpect()
87     s.spawn(None, [search, '-V', '-t', '1000 ms', '-N', '1', '-c', 'test_gnunet_fs_psd_data.conf', 'tst'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
88     s.expect("stdout", re.compile(r'gnunet-download -o "test_gnunet_fs_rec_data.tgz" gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822\r?\n'))
89
90     down = pexpect()
91     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)
92     down.expect("stdout", re.compile(r"Downloading `test_gnunet_fs_rec_data.tar.gz' done (.*).\r?\n"))
93     os.remove("test_gnunet_fs_rec_data.tar.gz")
94
95 finally:
96     arm = subprocess.Popen([gnunetarm, '-eq', '-c', 'test_gnunet_fs_psd_data.conf'])
97     arm.communicate()
98     if os.name == "nt":
99         shutil.rmtree(os.path.join(os.getenv("TEMP"), "gnunet-test-fs-py-psd"), True)
100     else:
101         shutil.rmtree("/tmp/gnunet-test-fs-py-psd", True)