test_gnunet_fs_ns.py.in 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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)
  21. import pexpect
  22. import os
  23. import signal
  24. import re
  25. os.system ('rm -rf /tmp/gnunet-test-fs-py-ns/')
  26. os.system ('gnunet-arm -sq -c test_gnunet_fs_ns_data.conf')
  27. try:
  28. pseu = pexpect.spawn ('gnunet-pseudonym -c test_gnunet_fs_ns_data.conf -C licenses -k gplad -m "description:Free Software Licenses" -R myroot')
  29. pseu.expect (pexpect.EOF)
  30. pseu = pexpect.spawn ('gnunet-pseudonym -c test_gnunet_fs_ns_data.conf -o')
  31. pseu.expect (re.compile("licenses \(.*\)\r"))
  32. pseu.expect (pexpect.EOF)
  33. pub = pexpect.spawn ('gnunet-publish -c test_gnunet_fs_ns_data.conf -k licenses -P licenses -u gnunet://fs/chk/PC0M19QMQC0BPSHR6BGA228PP6INER1D610MGEMOMEM87222FN8HVUO7PQGO0O9HD2GVLHF2N5IDHEQUNK6LKE428FPO96SKQEA486O.PG7K85JGQ6N599MD5HEP3CHEVFPKQD9JB6NPSLVA3T1SKDS66CFI499VS6MGQ88B0QUAVT1282TCRD4GGFVUKDLGI8F0SPIANA3J2LG.35147 -t gpl -N gpl3')
  34. pub.expect (pexpect.EOF)
  35. search = pexpect.spawn ('gnunet-search -V -c test_gnunet_fs_ns_data.conf gplad')
  36. search.expect (re.compile ("gnunet-download gnunet://fs/sks/.*/myroot\r"))
  37. search.expect (re.compile (" *description: Free Software Licenses\r"))
  38. search.kill (signal.SIGTERM)
  39. search.expect (pexpect.EOF)
  40. pseu = pexpect.spawn ('gnunet-pseudonym -c test_gnunet_fs_ns_data.conf')
  41. pseu.expect (re.compile ("Free Software Licenses.*:\r"))
  42. pseu.expect (pexpect.EOF)
  43. finally:
  44. os.system ('gnunet-arm -c test_gnunet_fs_ns_data.conf -eq')
  45. os.system ('rm -rf /tmp/gnunet-test-fs-py-ns/')