test_script.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import unittest
  2. import os
  3. from core.NeuronModule import MissingParameterException, InvalidParameterException
  4. from neurons.script.script import Script
  5. from core.FileManager import FileManager
  6. class TestScript(unittest.TestCase):
  7. def setUp(self):
  8. self.path = "path"
  9. self.random = "random"
  10. def testParameters(self):
  11. def run_test_missing_param(parameters_to_test):
  12. with self.assertRaises(MissingParameterException):
  13. Script(**parameters_to_test)
  14. def run_test_invalid_param(parameters_to_test):
  15. with self.assertRaises(InvalidParameterException):
  16. Script(**parameters_to_test)
  17. # empty
  18. parameters = dict()
  19. run_test_missing_param(parameters)
  20. # missing path
  21. parameters = {
  22. "random": self.random
  23. }
  24. run_test_missing_param(parameters)
  25. # random path
  26. self.path = "/tmp/iamarandompath/anotherrandompath/kalliope"
  27. parameters = {
  28. "path": self.path
  29. }
  30. run_test_invalid_param(parameters)
  31. # Test Non executable file
  32. # Create the file and remove permissions to the user
  33. tmp_path = "/tmp/kalliope/tests/"
  34. tmp_file_path = tmp_path+"neuronScript"
  35. if not os.path.exists(tmp_path):
  36. os.makedirs(tmp_path)
  37. FileManager.write_in_file(tmp_file_path, "[kalliope-test] TestScript - testParameters")
  38. os.chmod(tmp_file_path, 0600)
  39. # test the user does not have access
  40. self.path = tmp_file_path
  41. parameters = {
  42. "path": self.path
  43. }
  44. run_test_invalid_param(parameters)
  45. # Remove the tmp file
  46. os.chmod(tmp_file_path, 0700)
  47. FileManager.remove_file(tmp_file_path)
  48. if __name__ == '__main__':
  49. unittest.main()