aboutsummaryrefslogtreecommitdiff
path: root/test/requests/test_registration.py
diff options
context:
space:
mode:
authorMuriithi Frederick Muriuki2018-02-19 12:46:47 +0300
committerPjotr Prins2018-03-26 09:29:29 +0000
commit0f1197ce8afdc2a869e4cc6f78122641df009e42 (patch)
treee8b793a0bcfbac9357f74468369c071d1c463b65 /test/requests/test_registration.py
parentc5b1028a15c771508b2b88994869912330c1148e (diff)
downloadgenenetwork2-0f1197ce8afdc2a869e4cc6f78122641df009e42.tar.gz
Rename file and move common code
* Rename the file to make it an importable module * Refactor the test to move common code out to a super class.
Diffstat (limited to 'test/requests/test_registration.py')
-rw-r--r--test/requests/test_registration.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/requests/test_registration.py b/test/requests/test_registration.py
new file mode 100644
index 00000000..0047e8a6
--- /dev/null
+++ b/test/requests/test_registration.py
@@ -0,0 +1,41 @@
+import sys
+import requests
+from parametrized_test import ParametrizedTest
+
+class TestRegistration(ParametrizedTest):
+
+ def tearDown(self):
+ for item in self.es_cleanup:
+ self.es.delete(index="users", doc_type="local", id=item["_id"])
+
+ def testRegistrationPage(self):
+ if self.es.ping():
+ data = {
+ "email_address": "test@user.com",
+ "full_name": "Test User",
+ "organization": "Test Organisation",
+ "password": "test_password",
+ "password_confirm": "test_password"
+ }
+ requests.post(self.gn2_url+"/n/register", data)
+ response = self.es.search(
+ index="users"
+ , doc_type="local"
+ , body={
+ "query": {"match": {"email_address": "test@user.com"}}})
+ self.assertEqual(len(response["hits"]["hits"]), 1)
+ else:
+ self.skipTest("The elasticsearch server is down")
+
+def main(gn2, es):
+ import unittest
+ suite = unittest.TestSuite()
+ suite.addTest(TestRegistration(methodName="testRegistrationPage", gn2_url=gn2, es_url=es))
+ runner = unittest.TextTestRunner()
+ runner.run(suite)
+
+if __name__ == "__main__":
+ if len(sys.argv) < 3:
+ raise Exception("Required arguments missing")
+ else:
+ main(sys.argv[1], sys.argv[2])