test_script.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. text_to_write = "[kalliope-test] TestScript - testParameters"
  38. with open(tmp_file_path, 'w') as myFile:
  39. myFile.write(text_to_write)
  40. os.chmod(tmp_file_path, 0600)
  41. # test the user does not have access
  42. self.path = tmp_file_path
  43. parameters = {
  44. "path": self.path
  45. }
  46. run_test_invalid_param(parameters)
  47. # Remove the tmp file
  48. os.chmod(tmp_file_path, 0700)
  49. os.remove(tmp_file_path)
  50. if __name__ == '__main__':
  51. unittest.main()