aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-12-08 13:16:31 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-12-08 13:16:31 +0000
commita02a9b0b8fed4032d4fc9f59688ccc92e1a4ce94 (patch)
tree31015764f3c3cb41b6e3da60f23f17a096853dec /src/integration-tests
parenta0667a255bc450bf716139a7afd8e45057b8ea30 (diff)
downloadgnunet-a02a9b0b8fed4032d4fc9f59688ccc92e1a4ce94.tar.gz
gnunet-a02a9b0b8fed4032d4fc9f59688ccc92e1a4ce94.zip
basics for integration tests
Diffstat (limited to 'src/integration-tests')
-rw-r--r--src/integration-tests/Makefile.am38
-rwxr-xr-xsrc/integration-tests/test_integration_clique.py.in85
2 files changed, 123 insertions, 0 deletions
diff --git a/src/integration-tests/Makefile.am b/src/integration-tests/Makefile.am
new file mode 100644
index 000000000..9813318a5
--- /dev/null
+++ b/src/integration-tests/Makefile.am
@@ -0,0 +1,38 @@
1INCLUDES = -I$(top_srcdir)/src/include
2
3if MINGW
4 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
5endif
6
7if USE_COVERAGE
8 AM_CFLAGS = --coverage -O0
9 XLIB = -lgcov
10endif
11
12bin_PROGRAMS =
13
14check_PROGRAMS =
15
16
17if HAVE_PYTHON_PEXPECT
18check_SCRIPTS = \
19 test_integration_clique.py
20endif
21
22
23if ENABLE_TEST_RUN
24TESTS = \
25 $(check_SCRIPTS)
26endif
27
28do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
29
30test_integration_clique.py: test_integration_clique.py.in Makefile
31 $(do_subst) < $(srcdir)/test_integration_clique.py.in > test_integration_clique.py
32 chmod +x test_integration_clique.py
33
34
35EXTRA_DIST = \
36 test_integration_clique.py.in
37
38CLEANFILES = $(check_SCRIPTS)
diff --git a/src/integration-tests/test_integration_clique.py.in b/src/integration-tests/test_integration_clique.py.in
new file mode 100755
index 000000000..1f1cf1f1d
--- /dev/null
+++ b/src/integration-tests/test_integration_clique.py.in
@@ -0,0 +1,85 @@
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# Testcase for file-sharing command-line tools (namespaces)
21import sys
22import os
23import subprocess
24import re
25import shutil
26
27srcdir = "../.."
28gnunet_pyexpect_dir = os.path.join (srcdir, "contrib")
29if gnunet_pyexpect_dir not in sys.path:
30 sys.path.append (gnunet_pyexpect_dir)
31
32from gnunet_pyexpect import pexpect
33
34exit ()
35
36
37# dummy copied from fs
38
39if os.name == 'posix':
40 pseudonym = 'gnunet-pseudonym'
41 gnunetarm = 'gnunet-arm'
42 publish = 'gnunet-publish'
43 unindex = 'gnunet-unindex'
44 search = 'gnunet-search'
45elif os.name == 'nt':
46 pseudonym = 'gnunet-pseudonym.exe'
47 gnunetarm = 'gnunet-arm.exe'
48 publish = 'gnunet-publish.exe'
49 unindex = 'gnunet-unindex.exe'
50 search = 'gnunet-search.exe'
51
52if os.name == "nt":
53 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-ns"), True)
54else:
55 shutil.rmtree ("/tmp/gnunet-test-fs-py-ns", True)
56
57arm = subprocess.Popen ([gnunetarm, '-sq', '-c', 'test_gnunet_fs_ns_data.conf'])
58arm.communicate ()
59
60try:
61 pseu = pexpect ()
62 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)
63 pseu.spawn (None, [pseudonym, '-c', 'test_gnunet_fs_ns_data.conf', '-o'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
64 pseu.expect ("stdout", re.compile (r"licenses (.*)\r?\n"))
65
66 pub = pexpect ()
67 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)
68
69 s = pexpect ()
70 s.spawn (None, [search, '-V', '-t', '1000', '-N', '1', '-c', 'test_gnunet_fs_ns_data.conf', 'gplad'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
71 s.expect ("stdout", re.compile (r'#0:\r?\n'))
72 s.expect ("stdout", re.compile (r'gnunet-download gnunet://fs/sks/.*/myroot\r?\n'))
73 s.expect ("stdout", re.compile (r'\s*description: Free Software Licenses\r?\n'))
74
75 pseu = pexpect ()
76 pseu.spawn (None, [pseudonym, '-c', 'test_gnunet_fs_ns_data.conf'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
77 pseu.expect ("stdout", re.compile (r'Free Software Licenses.*:\r?\n'))
78
79finally:
80 arm = subprocess.Popen ([gnunetarm, '-eq', '-c', 'test_gnunet_fs_ns_data.conf'])
81 arm.communicate ()
82 if os.name == "nt":
83 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-ns"), True)
84 else:
85 shutil.rmtree ("/tmp/gnunet-test-fs-py-ns", True)