892f809312ab114873b8bbb33423a5face211531
[oweals/gnunet.git] / src / integration-tests / test_integration_clique.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
21 import sys
22 import os
23 import subprocess
24 import re
25 import shutil
26
27
28 testname = "test_integration_clique"
29 verbose = True
30
31 srcdir = "../.."
32 gnunet_pyexpect_dir = os.path.join (srcdir, "contrib")
33 if gnunet_pyexpect_dir not in sys.path:
34   sys.path.append (gnunet_pyexpect_dir)
35
36 from gnunet_pyexpect import pexpect
37
38 if os.name == 'posix':
39   gnunetarm = 'gnunet-arm'
40 elif os.name == 'nt':
41   gnunetarm = 'gnunet-arm.exe'
42
43 if os.name == "nt":
44   shutil.rmtree (os.path.join (os.getenv ("TEMP"), testname), True)
45 else:
46   shutil.rmtree ("/tmp/" + testname, True)
47
48 if verbose == True:
49         print "Running " + testname
50
51
52
53
54 exit ()
55 # dummy copied from fs
56 arm = subprocess.Popen ([gnunetarm, '-sq', '-c', 'test_gnunet_fs_ns_data.conf'])
57 arm.communicate ()
58
59 try:
60   pseu = pexpect ()
61   pseu.spawn (None, [pseudonym, '-c', 'test_gnunet_fs_ns_data.conf', '-C', 'licenses', '-k', 'gplad', '-m', 'description:Free Software Licenses', '-R', 'myroot'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
62   pseu.spawn (None, [pseudonym, '-c', 'test_gnunet_fs_ns_data.conf', '-o'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
63   pseu.expect ("stdout", re.compile (r"licenses (.*)\r?\n"))
64
65   pub = pexpect ()
66   pub.spawn (None, [publish, '-c', 'test_gnunet_fs_ns_data.conf', '-k', 'licenses', '-P', 'licenses', '-u', 'gnunet://fs/chk/PC0M19QMQC0BPSHR6BGA228PP6INER1D610MGEMOMEM87222FN8HVUO7PQGO0O9HD2GVLHF2N5IDHEQUNK6LKE428FPO96SKQEA486O.PG7K85JGQ6N599MD5HEP3CHEVFPKQD9JB6NPSLVA3T1SKDS66CFI499VS6MGQ88B0QUAVT1282TCRD4GGFVUKDLGI8F0SPIANA3J2LG.35147', '-t', 'gpl', '-N', 'gpl3'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
67
68   s = pexpect ()
69   s.spawn (None, [search, '-V', '-t', '1000', '-N', '1', '-c', 'test_gnunet_fs_ns_data.conf', 'gplad'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
70   s.expect ("stdout", re.compile (r'#0:\r?\n'))
71   s.expect ("stdout", re.compile (r'gnunet-download gnunet://fs/sks/.*/myroot\r?\n'))
72   s.expect ("stdout", re.compile (r'\s*description: Free Software Licenses\r?\n'))
73
74   pseu = pexpect ()
75   pseu.spawn (None, [pseudonym, '-c', 'test_gnunet_fs_ns_data.conf'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
76   pseu.expect ("stdout", re.compile (r'Free Software Licenses.*:\r?\n'))
77
78 finally:
79   arm = subprocess.Popen ([gnunetarm, '-eq', '-c', 'test_gnunet_fs_ns_data.conf'])
80   arm.communicate ()
81   if os.name == "nt":
82     shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-ns"), True)
83   else:
84     shutil.rmtree ("/tmp/gnunet-test-fs-py-ns", True)