summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2020-01-20 12:27:04 +0100
committerAlvaro Neira Ayuso <aneira@soleta.eu>2020-01-21 17:32:39 +0100
commit434bb272b53858e9a9df80986f7617adc80a2f43 (patch)
tree8d1217e1afb5eec61797aee3d2edec8aec52568d /tests
parent8a9a32fa6b8323663587291285e5846ddbaa99f1 (diff)
Add /hardware tests
This tests covers a correct request.
Diffstat (limited to 'tests')
-rw-r--r--tests/units/test_0004_hardware.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/units/test_0004_hardware.py b/tests/units/test_0004_hardware.py
new file mode 100644
index 0000000..6cfaf77
--- /dev/null
+++ b/tests/units/test_0004_hardware.py
@@ -0,0 +1,32 @@
+#
+# Copyright (C) 2020 Soleta Networks <info@soleta.eu>
+#
+# This program is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the
+# Free Software Foundation, version 3.
+#
+
+from server import Server
+from client import Client
+import unittest
+import json
+
+class TestHardwareMethods(unittest.TestCase):
+
+ def test_get(self):
+ req = 'GET /hardware HTTP/1.0\r\nContent-Length:0\r\n' + \
+ 'Content-Type:application/json\r\n\r\n '
+ c = Client()
+ s = Server()
+ s.connect()
+ s.send(req)
+ client_response = s.recv()
+ s.stop()
+ c.stop()
+ self.assertRegex(client_response, '^HTTP/1.0 200 OK\r\n*')
+ client_response = client_response.split('\r\n\r\n')
+ response_json = json.loads(client_response[1])
+ self.assertIn('hardware', response_json)
+
+if __name__ == '__main__':
+ unittest.main()