test_gnunet_fs_idx.py.in 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 (indexing and unindexing)
  21. import sys
  22. import os
  23. import subprocess
  24. import re
  25. import shutil
  26. srcdir = "../.."
  27. gnunet_pyexpect_dir = os.path.join (srcdir, "contrib")
  28. if gnunet_pyexpect_dir not in sys.path:
  29. sys.path.append (gnunet_pyexpect_dir)
  30. from gnunet_pyexpect import pexpect
  31. if os.name == 'posix':
  32. download = './gnunet-download'
  33. gnunetarm = 'gnunet-arm'
  34. publish = './gnunet-publish'
  35. unindex = './gnunet-unindex'
  36. elif os.name == 'nt':
  37. download = './gnunet-download.exe'
  38. gnunetarm = 'gnunet-arm.exe'
  39. publish = './gnunet-publish.exe'
  40. unindex = './gnunet-unindex.exe'
  41. if os.name == "nt":
  42. shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True)
  43. else:
  44. shutil.rmtree ("/tmp/gnunet-test-fs-py-idx", True)
  45. arm = subprocess.Popen ([gnunetarm, '-sq', '-c', 'test_gnunet_fs_idx_data.conf'])
  46. arm.communicate ()
  47. try:
  48. pub = pexpect ()
  49. pub.spawn (None, [publish, '-c', 'test_gnunet_fs_idx_data.conf', '-m', "description:Test archive", '-k', 'tst', 'test_gnunet_fs_rec_data.tgz'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  50. pub.expect ("stdout", re.compile (r"URI is `gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR\.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG\.17822'\.\r?\n"))
  51. down = pexpect ()
  52. down.spawn (None, [download, '-c', 'test_gnunet_fs_idx_data.conf', '-o', 'test_gnunet_fs_rec_data.tar.gz', 'gnunet://fs/chk/2ZMHKPV74CB6GB1GFKQRR95BXJQA2SER25FN48GAW7WSBPA0GDEM5Y74V1ZJHM0NA6919TVW376BHTFDRE3RYS0KRY92M1QJVKPHFCR.49BT3V5C10KA1695JF71FCT8ZZG4JMJSH04BD9CT22R6KEM915A7CEST17RD0QYTHXV5M4HHEGJMEZSFRDB7JAYC0EMJAN2V781E9DG.17822'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  53. down.expect ("stdout", re.compile (r"Downloading `test_gnunet_fs_rec_data.tar.gz' done (.*).\r?\n"))
  54. os.remove ("test_gnunet_fs_rec_data.tar.gz")
  55. un = pexpect ()
  56. un.spawn (None, [unindex, '-c', 'test_gnunet_fs_idx_data.conf', 'test_gnunet_fs_rec_data.tgz'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  57. un.expect ("stdout", re.compile (r'Unindexing done\.\r?\n'))
  58. finally:
  59. arm = subprocess.Popen ([gnunetarm, '-eq', '-c', 'test_gnunet_fs_idx_data.conf'])
  60. arm.communicate ()
  61. if os.name == "nt":
  62. shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True)
  63. else:
  64. shutil.rmtree ("/tmp/gnunet-test-fs-py-idx", True)