2017-03-08 12:41:46 +01:00
|
|
|
import importlib
|
|
|
|
import os
|
2020-06-11 00:54:34 +02:00
|
|
|
from typing import List, Optional
|
2017-03-08 12:41:46 +01:00
|
|
|
|
2018-01-30 06:05:25 +01:00
|
|
|
import django.urls.resolvers
|
2020-06-11 00:54:34 +02:00
|
|
|
import ujson
|
|
|
|
from django.test import Client, TestCase
|
2017-03-08 12:41:46 +01:00
|
|
|
|
|
|
|
from zerver.lib.test_classes import ZulipTestCase
|
|
|
|
from zerver.models import Stream
|
2016-02-08 04:00:12 +01:00
|
|
|
from zproject import urls
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-03-08 12:41:46 +01:00
|
|
|
class PublicURLTest(ZulipTestCase):
|
|
|
|
"""
|
|
|
|
Account creation URLs are accessible even when not logged in. Authenticated
|
|
|
|
URLs redirect to a page.
|
|
|
|
"""
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def fetch(self, method: str, urls: List[str], expected_status: int) -> None:
|
2017-03-08 12:41:46 +01:00
|
|
|
for url in urls:
|
|
|
|
# e.g. self.client_post(url) if method is "post"
|
|
|
|
response = getattr(self, method)(url)
|
|
|
|
self.assertEqual(response.status_code, expected_status,
|
2020-06-13 08:59:37 +02:00
|
|
|
msg=f"Expected {expected_status}, received {response.status_code} for {method} to {url}")
|
2017-03-08 12:41:46 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_public_urls(self) -> None:
|
2017-03-08 12:41:46 +01:00
|
|
|
"""
|
|
|
|
Test which views are accessible when not logged in.
|
|
|
|
"""
|
|
|
|
# FIXME: We should also test the Tornado URLs -- this codepath
|
|
|
|
# can't do so because this Django test mechanism doesn't go
|
|
|
|
# through Tornado.
|
|
|
|
denmark_stream_id = Stream.objects.get(name='Denmark').id
|
2019-08-27 05:45:37 +02:00
|
|
|
get_urls = {200: ["/accounts/home/", "/accounts/login/",
|
2017-03-08 12:41:46 +01:00
|
|
|
"/en/accounts/home/", "/ru/accounts/home/",
|
|
|
|
"/en/accounts/login/", "/ru/accounts/login/",
|
|
|
|
"/help/"],
|
|
|
|
302: ["/", "/en/", "/ru/"],
|
2020-06-13 08:59:37 +02:00
|
|
|
401: [f"/json/streams/{denmark_stream_id}/members",
|
2017-03-08 12:41:46 +01:00
|
|
|
"/api/v1/users/me/subscriptions",
|
|
|
|
"/api/v1/messages",
|
|
|
|
"/json/messages",
|
|
|
|
"/api/v1/streams",
|
|
|
|
],
|
2018-12-03 23:03:19 +01:00
|
|
|
404: ["/help/nonexistent", "/help/include/admin",
|
|
|
|
"/help/" + "z" * 1000],
|
2017-03-08 12:41:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Add all files in 'templates/zerver/help' directory (except for 'main.html' and
|
|
|
|
# 'index.md') to `get_urls['200']` list.
|
|
|
|
for doc in os.listdir('./templates/zerver/help'):
|
|
|
|
if doc.startswith(".") or '~' in doc or '#' in doc:
|
|
|
|
continue # nocoverage -- just here for convenience
|
2018-12-03 23:03:19 +01:00
|
|
|
if doc not in {'main.html', 'index.md', 'include', 'missing.md'}:
|
2017-05-17 21:56:24 +02:00
|
|
|
get_urls[200].append('/help/' + os.path.splitext(doc)[0]) # Strip the extension.
|
2017-03-08 12:41:46 +01:00
|
|
|
|
|
|
|
post_urls = {200: ["/accounts/login/"],
|
|
|
|
302: ["/accounts/logout/"],
|
|
|
|
401: ["/json/messages",
|
2017-07-31 20:55:57 +02:00
|
|
|
"/json/invites",
|
2017-03-08 12:41:46 +01:00
|
|
|
"/json/subscriptions/exists",
|
2017-05-09 07:01:42 +02:00
|
|
|
"/api/v1/users/me/subscriptions/properties",
|
2017-03-08 12:41:46 +01:00
|
|
|
"/json/fetch_api_key",
|
|
|
|
"/json/users/me/subscriptions",
|
|
|
|
"/api/v1/users/me/subscriptions",
|
2019-03-27 00:57:33 +01:00
|
|
|
"/json/export/realm",
|
2017-03-08 12:41:46 +01:00
|
|
|
],
|
|
|
|
400: ["/api/v1/external/github",
|
|
|
|
"/api/v1/fetch_api_key",
|
|
|
|
],
|
|
|
|
}
|
2017-07-31 20:44:52 +02:00
|
|
|
patch_urls = {
|
|
|
|
401: ["/json/settings"],
|
|
|
|
}
|
2020-06-26 19:51:10 +02:00
|
|
|
|
2017-09-27 10:11:59 +02:00
|
|
|
for status_code, url_set in get_urls.items():
|
2017-03-08 12:41:46 +01:00
|
|
|
self.fetch("client_get", url_set, status_code)
|
2017-09-27 10:11:59 +02:00
|
|
|
for status_code, url_set in post_urls.items():
|
2017-03-08 12:41:46 +01:00
|
|
|
self.fetch("client_post", url_set, status_code)
|
2017-09-27 10:11:59 +02:00
|
|
|
for status_code, url_set in patch_urls.items():
|
2017-07-31 20:44:52 +02:00
|
|
|
self.fetch("client_patch", url_set, status_code)
|
2017-03-08 12:41:46 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_gcid_when_not_configured(self) -> None:
|
2017-03-08 12:41:46 +01:00
|
|
|
with self.settings(GOOGLE_CLIENT_ID=None):
|
|
|
|
resp = self.client_get("/api/v1/fetch_google_client_id")
|
|
|
|
self.assertEqual(400, resp.status_code,
|
2020-06-13 08:59:37 +02:00
|
|
|
msg=f"Expected 400, received {resp.status_code} for GET /api/v1/fetch_google_client_id")
|
2017-08-16 09:52:31 +02:00
|
|
|
self.assertEqual('error', resp.json()['result'])
|
2017-03-08 12:41:46 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_gcid_when_configured(self) -> None:
|
2017-03-08 12:41:46 +01:00
|
|
|
with self.settings(GOOGLE_CLIENT_ID="ABCD"):
|
|
|
|
resp = self.client_get("/api/v1/fetch_google_client_id")
|
|
|
|
self.assertEqual(200, resp.status_code,
|
2020-06-13 08:59:37 +02:00
|
|
|
msg=f"Expected 200, received {resp.status_code} for GET /api/v1/fetch_google_client_id")
|
2017-03-08 12:41:46 +01:00
|
|
|
data = ujson.loads(resp.content)
|
|
|
|
self.assertEqual('success', data['result'])
|
|
|
|
self.assertEqual('ABCD', data['google_client_id'])
|
|
|
|
|
2016-02-08 04:00:12 +01:00
|
|
|
class URLResolutionTest(TestCase):
|
2018-02-02 05:43:18 +01:00
|
|
|
def get_callback_string(self, pattern: django.urls.resolvers.URLPattern) -> Optional[str]:
|
2017-03-09 09:20:38 +01:00
|
|
|
callback_str = hasattr(pattern, 'lookup_str') and 'lookup_str'
|
|
|
|
callback_str = callback_str or '_callback_str'
|
|
|
|
return getattr(pattern, callback_str, None)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def check_function_exists(self, module_name: str, view: str) -> None:
|
2016-02-08 04:00:12 +01:00
|
|
|
module = importlib.import_module(module_name)
|
2020-06-10 06:41:04 +02:00
|
|
|
self.assertTrue(hasattr(module, view), f"View {module_name}.{view} does not exist")
|
2016-02-08 04:00:12 +01:00
|
|
|
|
|
|
|
# Tests that all views in urls.v1_api_and_json_patterns exist
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_rest_api_url_resolution(self) -> None:
|
2016-02-08 04:00:12 +01:00
|
|
|
for pattern in urls.v1_api_and_json_patterns:
|
2017-03-09 09:20:38 +01:00
|
|
|
callback_str = self.get_callback_string(pattern)
|
|
|
|
if callback_str and hasattr(pattern, "default_args"):
|
|
|
|
for func_string in pattern.default_args.values():
|
2017-08-22 19:01:17 +02:00
|
|
|
if isinstance(func_string, tuple):
|
|
|
|
func_string = func_string[0]
|
2017-03-09 09:20:38 +01:00
|
|
|
module_name, view = func_string.rsplit('.', 1)
|
|
|
|
self.check_function_exists(module_name, view)
|
2016-02-08 04:00:12 +01:00
|
|
|
|
|
|
|
# Tests function-based views declared in urls.urlpatterns for
|
|
|
|
# whether the function exists. We at present do not test the
|
|
|
|
# class-based views.
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_non_api_url_resolution(self) -> None:
|
2016-02-08 04:00:12 +01:00
|
|
|
for pattern in urls.urlpatterns:
|
2017-03-09 09:20:38 +01:00
|
|
|
callback_str = self.get_callback_string(pattern)
|
|
|
|
if callback_str:
|
|
|
|
(module_name, base_view) = callback_str.rsplit(".", 1)
|
|
|
|
self.check_function_exists(module_name, base_view)
|
errors: Force a super-simpler handler for 400 errors.
This works around a bug in Django in handling the error case of a
client sending an inappropriate HTTP `Host:` header. Various
internal Django machinery expects to be able to casually call
`request.get_host()`, which will attempt to parse that header, so an
exception will be raised. The exception-handling machinery attempts
to catch that exception and just turn it into a 400 response... but
in a certain case, that machinery itself ends up trying to call
`request.get_host()`, and we end up with an uncaught exception that
causes a 500 response, a chain of tracebacks in the logs, and an email
to the server admins. See example below.
That `request.get_host` call comes in the midst of some CSRF-related
middleware, which doesn't even serve any function unless you have a
form in your 400 response page that you want CSRF protection for.
We use the default 400 response page, which is a 26-byte static
HTML error message. So, just send that with no further ado.
Example exception from server logs (lightly edited):
2017-10-08 09:51:50.835 ERR [django.security.DisallowedHost] Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
2017-10-08 09:51:50.835 ERR [django.request] Internal Server Error: /loginWithSetCookie
Traceback (most recent call last):
File ".../django/core/handlers/exception.py", line 41, in inner
response = get_response(request)
File ".../django/utils/deprecation.py", line 138, in __call__
response = self.process_request(request)
File ".../django/middleware/common.py", line 57, in process_request
host = request.get_host()
File ".../django/http/request.py", line 113, in get_host
raise DisallowedHost(msg)
django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File ".../django/core/handlers/exception.py", line 109, in get_exception_response
response = callback(request, **dict(param_dict, exception=exception))
File ".../django/utils/decorators.py", line 145, in _wrapped_view
result = middleware.process_view(request, view_func, args, kwargs)
File ".../django/middleware/csrf.py", line 276, in process_view
good_referer = request.get_host()
File ".../django/http/request.py", line 113, in get_host
raise DisallowedHost(msg)
django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
2017-10-10 06:39:36 +02:00
|
|
|
|
|
|
|
class ErrorPageTest(TestCase):
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_bogus_http_host(self) -> None:
|
errors: Force a super-simpler handler for 400 errors.
This works around a bug in Django in handling the error case of a
client sending an inappropriate HTTP `Host:` header. Various
internal Django machinery expects to be able to casually call
`request.get_host()`, which will attempt to parse that header, so an
exception will be raised. The exception-handling machinery attempts
to catch that exception and just turn it into a 400 response... but
in a certain case, that machinery itself ends up trying to call
`request.get_host()`, and we end up with an uncaught exception that
causes a 500 response, a chain of tracebacks in the logs, and an email
to the server admins. See example below.
That `request.get_host` call comes in the midst of some CSRF-related
middleware, which doesn't even serve any function unless you have a
form in your 400 response page that you want CSRF protection for.
We use the default 400 response page, which is a 26-byte static
HTML error message. So, just send that with no further ado.
Example exception from server logs (lightly edited):
2017-10-08 09:51:50.835 ERR [django.security.DisallowedHost] Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
2017-10-08 09:51:50.835 ERR [django.request] Internal Server Error: /loginWithSetCookie
Traceback (most recent call last):
File ".../django/core/handlers/exception.py", line 41, in inner
response = get_response(request)
File ".../django/utils/deprecation.py", line 138, in __call__
response = self.process_request(request)
File ".../django/middleware/common.py", line 57, in process_request
host = request.get_host()
File ".../django/http/request.py", line 113, in get_host
raise DisallowedHost(msg)
django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File ".../django/core/handlers/exception.py", line 109, in get_exception_response
response = callback(request, **dict(param_dict, exception=exception))
File ".../django/utils/decorators.py", line 145, in _wrapped_view
result = middleware.process_view(request, view_func, args, kwargs)
File ".../django/middleware/csrf.py", line 276, in process_view
good_referer = request.get_host()
File ".../django/http/request.py", line 113, in get_host
raise DisallowedHost(msg)
django.core.exceptions.DisallowedHost: Invalid HTTP_HOST header: 'example.com'. You may need to add 'example.com' to ALLOWED_HOSTS.
2017-10-10 06:39:36 +02:00
|
|
|
# This tests that we've successfully worked around a certain bug in
|
|
|
|
# Django's exception handling. The enforce_csrf_checks=True,
|
|
|
|
# secure=True, and HTTP_REFERER with an `https:` scheme are all
|
|
|
|
# there to get us down just the right path for Django to blow up
|
|
|
|
# when presented with an HTTP_HOST that's not a valid DNS name.
|
|
|
|
client = Client(enforce_csrf_checks=True)
|
|
|
|
result = client.post('/json/users',
|
|
|
|
secure=True,
|
|
|
|
HTTP_REFERER='https://somewhere',
|
|
|
|
HTTP_HOST='$nonsense')
|
|
|
|
self.assertEqual(result.status_code, 400)
|