summaryrefslogtreecommitdiff
path: root/src/mailman/rest/tests/test_root.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-09-23 15:31:49 -0400
committerBarry Warsaw2011-09-23 15:31:49 -0400
commit416db276612ac6338524ce350e3b87216ffaffb7 (patch)
treeb29605f97447d5a4daf32f392b9c8f9d41981bd2 /src/mailman/rest/tests/test_root.py
parente4b34fefabd2ae3f14db83e96076fe741aa7c5b8 (diff)
downloadmailman-416db276612ac6338524ce350e3b87216ffaffb7.tar.gz
mailman-416db276612ac6338524ce350e3b87216ffaffb7.tar.zst
mailman-416db276612ac6338524ce350e3b87216ffaffb7.zip
Diffstat (limited to 'src/mailman/rest/tests/test_root.py')
-rw-r--r--src/mailman/rest/tests/test_root.py93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/mailman/rest/tests/test_root.py b/src/mailman/rest/tests/test_root.py
new file mode 100644
index 000000000..856767947
--- /dev/null
+++ b/src/mailman/rest/tests/test_root.py
@@ -0,0 +1,93 @@
+# Copyright (C) 2011 by the Free Software Foundation, Inc.
+#
+# This file is part of GNU Mailman.
+#
+# GNU Mailman is free software: you can redistribute it and/or modify it under
+# the terms of the GNU General Public License as published by the Free
+# Software Foundation, either version 3 of the License, or (at your option)
+# any later version.
+#
+# GNU Mailman is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
+
+"""REST root object tests."""
+
+from __future__ import absolute_import, unicode_literals
+
+__metaclass__ = type
+__all__ = [
+ 'test_suite',
+ ]
+
+
+import unittest
+
+from urllib2 import HTTPError
+
+from mailman.testing.helpers import call_api
+from mailman.testing.layers import RESTLayer
+
+
+
+class TestSystem(unittest.TestCase):
+ layer = RESTLayer
+
+ def test_system_url_too_long(self):
+ # /system/foo/bar is not allowed.
+ try:
+ # For Python 2.6.
+ call_api('http://localhost:9001/3.0/system/foo/bar')
+ except HTTPError as exc:
+ self.assertEqual(exc.code, 400)
+ else:
+ raise AssertionError('Expected HTTPError')
+
+ def test_system_url_not_preferences(self):
+ # /system/foo where `foo` is not `preferences`.
+ try:
+ # For Python 2.6.
+ call_api('http://localhost:9001/3.0/system/foo')
+ except HTTPError as exc:
+ self.assertEqual(exc.code, 400)
+ else:
+ raise AssertionError('Expected HTTPError')
+
+ def test_system_preferences_are_read_only(self):
+ # /system/preferences are read-only.
+ try:
+ # For Python 2.6.
+ call_api('http://localhost:9001/3.0/system/preferences', {
+ 'acknowledge_posts': True,
+ }, method='PATCH')
+ except HTTPError as exc:
+ self.assertEqual(exc.code, 405)
+ else:
+ raise AssertionError('Expected HTTPError')
+ # /system/preferences are read-only.
+ try:
+ # For Python 2.6.
+ call_api('http://localhost:9001/3.0/system/preferences', {
+ 'acknowledge_posts': False,
+ 'delivery_mode': 'regular',
+ 'delivery_status': 'enabled',
+ 'hide_address': True,
+ 'preferred_language': 'en',
+ 'receive_list_copy': True,
+ 'receive_own_postings': True,
+ }, method='PUT')
+ except HTTPError as exc:
+ self.assertEqual(exc.code, 405)
+ else:
+ raise AssertionError('Expected HTTPError')
+
+
+
+def test_suite():
+ suite = unittest.TestSuite()
+ suite.addTest(unittest.makeSuite(TestSystem))
+ return suite