test_openweathermap.py 835 B

123456789101112131415161718192021222324252627282930313233343536
  1. import unittest
  2. from core.NeuronModule import MissingParameterException
  3. from neurons.openweathermap.openweathermap import Openweathermap
  4. class TestOpenWeatherMap(unittest.TestCase):
  5. def setUp(self):
  6. self.location="location"
  7. self.api_key="api_key"
  8. def testParameters(self):
  9. def run_test(parameters_to_test):
  10. with self.assertRaises(MissingParameterException):
  11. Openweathermap(**parameters_to_test)
  12. # empty
  13. parameters = dict()
  14. run_test(parameters)
  15. # missing api_key
  16. parameters = {
  17. "location": self.location
  18. }
  19. run_test(parameters)
  20. # missing location
  21. parameters = {
  22. "api_key": self.api_key
  23. }
  24. run_test(parameters)
  25. if __name__ == '__main__':
  26. unittest.main()