summaryrefslogtreecommitdiff
path: root/test/nagios/webapp_signup.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/nagios/webapp_signup.py')
-rwxr-xr-xtest/nagios/webapp_signup.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/nagios/webapp_signup.py b/test/nagios/webapp_signup.py
new file mode 100755
index 0000000..3e7283e
--- /dev/null
+++ b/test/nagios/webapp_signup.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+
+# Test Signup and Login with the webapp API works.
+
+from support.api import Api
+from support.config import Config
+from support.user import User
+
+def signup_successfully():
+ config = Config()
+ user = User()
+ api = Api(config, verify=False)
+ user.signup(api)
+ user.login(api)
+
+if __name__ == '__main__':
+ from support import nagios_test
+ exit_code = nagios_test.run(signup_successfully)
+ exit(exit_code)