test_shell.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import os
  2. import unittest
  3. import time
  4. from core.NeuronModule import MissingParameterException
  5. from neurons.shell.shell import Shell
  6. class TestShell(unittest.TestCase):
  7. def setUp(self):
  8. self.cmd = "cmd"
  9. self.random = "random"
  10. self.test_file = "/tmp/kalliope_text_shell.txt"
  11. def testParameters(self):
  12. def run_test(parameters_to_test):
  13. with self.assertRaises(MissingParameterException):
  14. Shell(**parameters_to_test)
  15. # empty
  16. parameters = dict()
  17. run_test(parameters)
  18. # missing cmd
  19. parameters = {
  20. "random": self.random
  21. }
  22. run_test(parameters)
  23. def test_shell_returned_code(self):
  24. """
  25. To test that the shell neuron works, we ask it to create a file
  26. """
  27. parameters = {
  28. "cmd": "touch %s" % self.test_file
  29. }
  30. shell = Shell(**parameters)
  31. self.assertTrue(os.path.isfile(self.test_file))
  32. self.assertEqual(shell.returncode, 0)
  33. # remove the test file
  34. os.remove(self.test_file)
  35. def test_shell_content(self):
  36. """
  37. Test we can get a content from the launched command
  38. """
  39. text_to_write = 'kalliope'
  40. # we write a content into a file
  41. with open(self.test_file, 'w') as myFile:
  42. myFile.write(text_to_write)
  43. # get the output with the neuron
  44. parameters = {
  45. "cmd": "cat %s" % self.test_file
  46. }
  47. shell = Shell(**parameters)
  48. self.assertEqual(shell.output, text_to_write)
  49. self.assertEqual(shell.returncode, 0)
  50. # remove the test file
  51. os.remove(self.test_file)
  52. def test_async_shell(self):
  53. """
  54. Test that the neuron can run a shell command asynchronously
  55. """
  56. parameters = {
  57. "cmd": "touch %s" % self.test_file,
  58. "async": True
  59. }
  60. Shell(**parameters)
  61. # let the time the the thread to perform the action
  62. time.sleep(0.5)
  63. self.assertTrue(os.path.isfile(self.test_file))
  64. # remove the test file
  65. os.remove(self.test_file)
  66. if __name__ == '__main__':
  67. unittest.main()