Browse Source

add unit tests for script neuron

nico 8 years ago
parent
commit
fa18dc4893

+ 2 - 3
neurons/script/script.py

@@ -19,7 +19,7 @@ class AsyncShell(threading.Thread):
 
     def run(self):
         p = subprocess.Popen(self.path,
-                             shell=True,
+                             shell=False,
                              stdout=subprocess.PIPE,
                              stderr=subprocess.PIPE)
 
@@ -37,11 +37,10 @@ class Script(NeuronModule):
         if self._is_parameters_ok():
             # run the command
             if not self.async:
-                p = subprocess.Popen(self.path, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
+                p = subprocess.Popen(self.path, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=False)
                 (output, err) = p.communicate()
                 self.output = output
                 self.returncode = p.returncode
-
                 message = {
                     "output": self.output,
                     "returncode": self.returncode

+ 56 - 0
neurons/script/tests/test_script.py

@@ -1,6 +1,10 @@
 import unittest
 import os
 
+import time
+
+from core import OrderAnalyser
+from core.ConfigurationManager import BrainLoader
 from core.NeuronModule import MissingParameterException, InvalidParameterException
 from neurons.script.script import Script
 from core.FileManager import FileManager
@@ -11,6 +15,7 @@ class TestScript(unittest.TestCase):
     def setUp(self):
         self.path = "path"
         self.random = "random"
+        self.test_file = "/tmp/kalliope_text_shell.txt"
 
     def testParameters(self):
         def run_test_missing_param(parameters_to_test):
@@ -58,6 +63,57 @@ class TestScript(unittest.TestCase):
         os.chmod(tmp_file_path, 0700)
         os.remove(tmp_file_path)
 
+    def test_script_execution(self):
+        """
+        Test we can run a script
+        """
+        param = {
+            "path": "./test_script.sh"
+        }
+
+        Script(**param)
+        self.assertTrue(os.path.isfile(self.test_file))
+
+        # remove the tet file
+        os.remove(self.test_file)
+
+    def test_script_execution_async(self):
+        """
+        Test we can run a script asynchronously
+        """
+        param = {
+            "path": "./test_script.sh",
+            "async": True
+        }
+
+        Script(**param)
+        # let the time to the thread to do its job
+        time.sleep(0.5)
+        self.assertTrue(os.path.isfile(self.test_file))
+
+        # remove the tet file
+        os.remove(self.test_file)
+
+    def test_script_content(self):
+        """
+        Test we can get a content from the launched script
+        """
+        text_to_write = 'kalliope'
+        # we write a content into a file
+        with open(self.test_file, 'w') as myFile:
+            myFile.write(text_to_write)
+
+        # get the output with the neuron
+        parameters = {
+            "path": "./test_script_cat.sh",
+        }
+
+        script = Script(**parameters)
+        self.assertEqual(script.output, text_to_write)
+        self.assertEqual(script.returncode, 0)
+
+        # remove the tet file
+        os.remove(self.test_file)
 
 if __name__ == '__main__':
     unittest.main()

+ 3 - 1
neurons/script/tests/test_script.sh

@@ -1 +1,3 @@
-#!/usr/bin/env bash
+#!/bin/bash
+
+touch /tmp/kalliope_text_shell.txt

+ 3 - 0
neurons/script/tests/test_script_cat.sh

@@ -0,0 +1,3 @@
+#!/bin/bash
+
+cat /tmp/kalliope_text_shell.txt