Browse Source

[Tests] Add openweathermap param tests

monf 8 years ago
parent
commit
a9e21e1f25

+ 4 - 4
neurons/openweathermap/openweathermap.py

@@ -1,6 +1,6 @@
 import pyowm
 
-from core.NeuronModule import NeuronModule
+from core.NeuronModule import NeuronModule, MissingParameterException
 
 
 class Openweathermap(NeuronModule):
@@ -120,8 +120,8 @@ class Openweathermap(NeuronModule):
         .. raises:: NotImplementedError
         """
         if self.api_key is None:
-            raise NotImplementedError("OpenWeatherMap neuron needs an api_key")
+            raise MissingParameterException("OpenWeatherMap neuron needs an api_key")
         if self.location is None:
-            raise NotImplementedError("OpenWeatherMap neuron needs a location")
+            raise MissingParameterException("OpenWeatherMap neuron needs a location")
 
-        return True
+        return True

+ 0 - 0
neurons/openweathermap/tests/__init__.py


+ 33 - 0
neurons/openweathermap/tests/test_openweathermap.py

@@ -0,0 +1,33 @@
+import unittest
+
+from core.NeuronModule import MissingParameterException
+from neurons.openweathermap.openweathermap import Openweathermap
+
+
+class TestOpenWeatherMap(unittest.TestCase):
+
+    def setUp(self):
+        self.location="location"
+        self.api_key="api_key"
+
+    def testParameters(self):
+        def run_test(parameters_to_test):
+            with self.assertRaises(MissingParameterException):
+                Openweathermap(**parameters_to_test)
+
+        # empty
+        parameters = dict()
+        run_test(parameters)
+
+        # missing api_key
+        parameters = {
+            "location": self.location
+        }
+        run_test(parameters)
+
+        # missing location
+        parameters = {
+           "api_key": self.api_key
+        }
+        run_test(parameters)
+