2020-06-11 00:54:34 +02:00
|
|
|
import datetime
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
import urllib
|
|
|
|
from io import StringIO
|
|
|
|
from unittest import mock
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2016-04-14 16:26:01 +02:00
|
|
|
from django.conf import settings
|
2021-08-10 15:17:44 +02:00
|
|
|
from django.http.response import StreamingHttpResponse
|
2021-11-02 15:42:58 +01:00
|
|
|
from django.test import override_settings
|
2020-06-11 00:54:34 +02:00
|
|
|
from django.utils.timezone import now as timezone_now
|
|
|
|
from PIL import Image
|
2022-07-27 22:54:31 +02:00
|
|
|
from urllib3 import encode_multipart_formdata
|
2023-04-04 01:42:32 +02:00
|
|
|
from urllib3.fields import RequestField
|
2016-04-14 16:26:01 +02:00
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
import zerver.lib.upload
|
2022-04-14 23:58:15 +02:00
|
|
|
from zerver.actions.create_realm import do_create_realm
|
2022-07-17 13:00:21 +02:00
|
|
|
from zerver.actions.message_delete import do_delete_messages
|
2022-04-14 23:50:10 +02:00
|
|
|
from zerver.actions.message_send import internal_send_private_message
|
2022-04-14 23:39:22 +02:00
|
|
|
from zerver.actions.realm_icon import do_change_icon_source
|
2022-04-14 23:37:16 +02:00
|
|
|
from zerver.actions.realm_logo import do_change_logo_source
|
2022-04-14 23:57:15 +02:00
|
|
|
from zerver.actions.realm_settings import do_change_realm_plan_type, do_set_realm_property
|
2022-04-14 23:43:26 +02:00
|
|
|
from zerver.actions.uploads import do_delete_old_unclaimed_attachments
|
2022-04-14 23:49:26 +02:00
|
|
|
from zerver.actions.user_settings import do_delete_avatar_image
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.avatar import avatar_url, get_avatar_field
|
|
|
|
from zerver.lib.cache import cache_get, get_realm_used_upload_space_cache_key
|
2021-06-29 18:08:42 +02:00
|
|
|
from zerver.lib.create_user import copy_default_settings
|
2020-03-06 18:40:46 +01:00
|
|
|
from zerver.lib.initial_password import initial_password
|
2021-11-02 15:42:58 +01:00
|
|
|
from zerver.lib.rate_limiter import add_ratelimit_rule, remove_ratelimit_rule
|
2017-02-21 03:41:20 +01:00
|
|
|
from zerver.lib.realm_icon import realm_icon_url
|
2019-08-19 19:46:45 +02:00
|
|
|
from zerver.lib.realm_logo import get_realm_logo_url
|
2022-05-18 22:07:15 +02:00
|
|
|
from zerver.lib.retention import clean_archived_data
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.test_classes import UploadSerializeMixin, ZulipTestCase
|
2023-04-04 01:42:32 +02:00
|
|
|
from zerver.lib.test_helpers import avatar_disk_path, get_test_image_file, read_test_image_file
|
|
|
|
from zerver.lib.upload import delete_message_attachment, upload_message_attachment
|
|
|
|
from zerver.lib.upload.base import BadImageError, ZulipUploadBackend, resize_emoji, sanitize_name
|
2023-02-28 16:32:43 +01:00
|
|
|
from zerver.lib.upload.local import LocalUploadBackend
|
2022-12-14 21:51:37 +01:00
|
|
|
from zerver.lib.upload.s3 import S3UploadBackend
|
2018-08-01 10:53:40 +02:00
|
|
|
from zerver.lib.users import get_api_key
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.models import (
|
2022-05-18 22:07:15 +02:00
|
|
|
ArchivedAttachment,
|
2020-06-11 00:54:34 +02:00
|
|
|
Attachment,
|
|
|
|
Message,
|
|
|
|
Realm,
|
|
|
|
RealmDomain,
|
|
|
|
UserProfile,
|
|
|
|
get_realm,
|
|
|
|
get_system_bot,
|
|
|
|
get_user_by_delivery_email,
|
|
|
|
validate_attachment_request,
|
|
|
|
)
|
2017-03-08 19:47:42 +01:00
|
|
|
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
class FileUploadTest(UploadSerializeMixin, ZulipTestCase):
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_rest_endpoint(self) -> None:
|
2016-06-25 11:05:59 +02:00
|
|
|
"""
|
2020-10-23 02:43:28 +02:00
|
|
|
Tests the /api/v1/user_uploads API endpoint. Here a single file is uploaded
|
2016-06-25 11:05:59 +02:00
|
|
|
and downloaded using a username and api_key
|
|
|
|
"""
|
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
|
|
|
|
|
|
|
# Upload file via API
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.api_post(self.example_user("hamlet"), "/api/v1/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("uri", response_dict)
|
|
|
|
uri = response_dict["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
base = "/user_uploads/"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(base, uri[: len(base)])
|
2016-06-25 11:05:59 +02:00
|
|
|
|
2016-06-27 16:41:58 +02:00
|
|
|
# Download file via API
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2020-03-10 11:48:26 +01:00
|
|
|
response = self.api_get(self.example_user("hamlet"), uri)
|
2018-04-13 19:04:39 +02:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2016-06-27 16:41:58 +02:00
|
|
|
|
2020-03-28 01:25:56 +01:00
|
|
|
# Files uploaded through the API should be accessible via the web client
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(self.client_get(uri), b"zulip!")
|
2016-06-25 11:05:59 +02:00
|
|
|
|
2018-04-13 19:04:39 +02:00
|
|
|
def test_mobile_api_endpoint(self) -> None:
|
|
|
|
"""
|
2020-10-23 02:43:28 +02:00
|
|
|
Tests the /api/v1/user_uploads API endpoint with ?api_key
|
2018-04-13 19:04:39 +02:00
|
|
|
auth. Here a single file is uploaded and downloaded using a
|
|
|
|
username and api_key
|
|
|
|
"""
|
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
|
|
|
|
|
|
|
# Upload file via API
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.api_post(self.example_user("hamlet"), "/api/v1/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("uri", response_dict)
|
|
|
|
uri = response_dict["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
base = "/user_uploads/"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(base, uri[: len(base)])
|
2018-04-13 19:04:39 +02:00
|
|
|
|
|
|
|
self.logout()
|
|
|
|
|
|
|
|
# Try to download file via API, passing URL and invalid API key
|
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get(uri, {"api_key": "invalid"})
|
2019-01-05 20:18:18 +01:00
|
|
|
self.assertEqual(response.status_code, 401)
|
2018-04-13 19:04:39 +02:00
|
|
|
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get(uri, {"api_key": get_api_key(user_profile)})
|
2018-04-13 19:04:39 +02:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-04-13 19:04:39 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_too_big_failure(self) -> None:
|
2016-09-16 16:41:04 +02:00
|
|
|
"""
|
|
|
|
Attempting to upload big files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-09-16 16:41:04 +02:00
|
|
|
fp = StringIO("bah!")
|
|
|
|
fp.name = "a.txt"
|
|
|
|
|
|
|
|
# Use MAX_FILE_UPLOAD_SIZE of 0, because the next increment
|
|
|
|
# would be 1MB.
|
|
|
|
with self.settings(MAX_FILE_UPLOAD_SIZE=0):
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"f1": fp})
|
|
|
|
self.assert_json_error(result, "Uploaded file is larger than the allowed limit of 0 MiB")
|
2016-09-16 16:41:04 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_multiple_upload_failure(self) -> None:
|
2016-04-14 16:26:01 +02:00
|
|
|
"""
|
|
|
|
Attempting to upload two files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-04-14 16:26:01 +02:00
|
|
|
fp = StringIO("bah!")
|
|
|
|
fp.name = "a.txt"
|
|
|
|
fp2 = StringIO("pshaw!")
|
|
|
|
fp2.name = "b.txt"
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"f1": fp, "f2": fp2})
|
2016-04-14 16:26:01 +02:00
|
|
|
self.assert_json_error(result, "You may only upload one file at a time")
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_no_file_upload_failure(self) -> None:
|
2016-04-14 16:26:01 +02:00
|
|
|
"""
|
|
|
|
Calling this endpoint with no files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-04-14 16:26:01 +02:00
|
|
|
|
2017-07-31 20:52:17 +02:00
|
|
|
result = self.client_post("/json/user_uploads")
|
2016-04-14 16:26:01 +02:00
|
|
|
self.assert_json_error(result, "You must specify a file to upload")
|
|
|
|
|
2022-07-27 22:54:31 +02:00
|
|
|
def test_guess_content_type_from_filename(self) -> None:
|
|
|
|
"""
|
|
|
|
Test coverage for files without content-type in the metadata;
|
|
|
|
in which case we try to guess the content-type from the filename.
|
|
|
|
"""
|
2023-04-04 01:42:32 +02:00
|
|
|
field = RequestField("file", b"zulip!", filename="somefile")
|
|
|
|
field.make_multipart()
|
|
|
|
data, content_type = encode_multipart_formdata([field])
|
2022-07-27 22:54:31 +02:00
|
|
|
result = self.api_post(
|
|
|
|
self.example_user("hamlet"), "/api/v1/user_uploads", data, content_type=content_type
|
|
|
|
)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2023-04-04 01:42:32 +02:00
|
|
|
field = RequestField("file", b"zulip!", filename="somefile.txt")
|
|
|
|
field.make_multipart()
|
|
|
|
data, content_type = encode_multipart_formdata([field])
|
2022-07-27 22:54:31 +02:00
|
|
|
result = self.api_post(
|
|
|
|
self.example_user("hamlet"), "/api/v1/user_uploads", data, content_type=content_type
|
|
|
|
)
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2016-03-24 20:24:01 +01:00
|
|
|
# This test will go through the code path for uploading files onto LOCAL storage
|
2020-10-23 02:43:28 +02:00
|
|
|
# when Zulip is in DEVELOPMENT mode.
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_upload_authed(self) -> None:
|
2016-04-14 23:44:39 +02:00
|
|
|
"""
|
2017-07-31 20:52:17 +02:00
|
|
|
A call to /json/user_uploads should return a uri and actually create an
|
2016-03-24 20:24:01 +01:00
|
|
|
entry in the database. This entry will be marked unclaimed till a message
|
|
|
|
refers it.
|
2016-04-14 23:44:39 +02:00
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-04-14 23:44:39 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("uri", response_dict)
|
|
|
|
uri = response_dict["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
base = "/user_uploads/"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(base, uri[: len(base)])
|
2016-04-14 23:44:39 +02:00
|
|
|
|
2016-03-24 20:24:01 +01:00
|
|
|
# In the future, local file requests will follow the same style as S3
|
2022-02-08 00:13:33 +01:00
|
|
|
# requests; they will be first authenticated and redirected
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(self.client_get(uri), b"zulip!")
|
2016-04-14 23:44:39 +02:00
|
|
|
|
2022-03-22 04:38:18 +01:00
|
|
|
# Check the download endpoint
|
|
|
|
download_uri = uri.replace("/user_uploads/", "/user_uploads/download/")
|
|
|
|
result = self.client_get(download_uri)
|
|
|
|
self.assert_streaming_content(result, b"zulip!")
|
|
|
|
self.assertIn("attachment;", result.headers["Content-Disposition"])
|
|
|
|
|
2016-03-24 20:24:01 +01:00
|
|
|
# check if DB has attachment marked as unclaimed
|
2021-02-12 08:20:45 +01:00
|
|
|
entry = Attachment.objects.get(file_name="zulip.txt")
|
2016-12-16 02:01:34 +01:00
|
|
|
self.assertEqual(entry.is_claimed(), False)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2022-05-18 21:31:18 +02:00
|
|
|
hamlet = self.example_user("hamlet")
|
|
|
|
self.subscribe(hamlet, "Denmark")
|
|
|
|
body = f"First message ...[zulip.txt]({hamlet.realm.host}{uri})"
|
|
|
|
self.send_stream_message(hamlet, "Denmark", body, "test")
|
2016-06-14 04:38:30 +02:00
|
|
|
|
2020-10-23 02:43:28 +02:00
|
|
|
# Now try the endpoint that's supposed to return a temporary URL for access
|
2020-04-08 00:27:24 +02:00
|
|
|
# to the file.
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_get("/json" + uri)
|
2022-06-07 01:37:01 +02:00
|
|
|
data = self.assert_json_success(result)
|
2021-02-12 08:20:45 +01:00
|
|
|
url_only_url = data["url"]
|
2020-04-08 00:27:24 +02:00
|
|
|
# Ensure this is different from the original uri:
|
|
|
|
self.assertNotEqual(url_only_url, uri)
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assertIn("user_uploads/temporary/", url_only_url)
|
|
|
|
self.assertTrue(url_only_url.endswith("zulip.txt"))
|
2020-10-23 02:43:28 +02:00
|
|
|
# The generated URL has a token authorizing the requestor to access the file
|
2020-04-08 00:27:24 +02:00
|
|
|
# without being logged in.
|
|
|
|
self.logout()
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(self.client_get(url_only_url), b"zulip!")
|
2020-04-08 00:27:24 +02:00
|
|
|
# The original uri shouldn't work when logged out:
|
|
|
|
result = self.client_get(uri)
|
2021-11-02 15:42:58 +01:00
|
|
|
self.assertEqual(result.status_code, 403)
|
|
|
|
|
|
|
|
@override_settings(RATE_LIMITING=True)
|
|
|
|
def test_serve_file_unauthed(self) -> None:
|
|
|
|
self.login("hamlet")
|
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip_web_public.txt"
|
|
|
|
|
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-11-02 15:42:58 +01:00
|
|
|
|
|
|
|
add_ratelimit_rule(86400, 1000, domain="spectator_attachment_access_by_file")
|
2022-04-28 05:15:11 +02:00
|
|
|
# Deny file access for non-web-public stream
|
2021-11-02 15:42:58 +01:00
|
|
|
self.subscribe(self.example_user("hamlet"), "Denmark")
|
|
|
|
host = self.example_user("hamlet").realm.host
|
|
|
|
body = f"First message ...[zulip.txt](http://{host}" + uri + ")"
|
|
|
|
self.send_stream_message(self.example_user("hamlet"), "Denmark", body, "test")
|
|
|
|
|
|
|
|
self.logout()
|
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
|
2022-04-28 05:05:04 +02:00
|
|
|
# Allow file access for web-public stream
|
2021-11-02 15:42:58 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
self.make_stream("web-public-stream", is_web_public=True)
|
|
|
|
self.subscribe(self.example_user("hamlet"), "web-public-stream")
|
|
|
|
body = f"First message ...[zulip.txt](http://{host}" + uri + ")"
|
|
|
|
self.send_stream_message(self.example_user("hamlet"), "web-public-stream", body, "test")
|
|
|
|
|
|
|
|
self.logout()
|
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
remove_ratelimit_rule(86400, 1000, domain="spectator_attachment_access_by_file")
|
|
|
|
|
|
|
|
# Deny file access since rate limited
|
|
|
|
add_ratelimit_rule(86400, 0, domain="spectator_attachment_access_by_file")
|
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
remove_ratelimit_rule(86400, 0, domain="spectator_attachment_access_by_file")
|
|
|
|
|
|
|
|
# Deny random file access
|
|
|
|
response = self.client_get(
|
|
|
|
"/user_uploads/2/71/QYB7LA-ULMYEad-QfLMxmI2e/zulip-non-existent.txt"
|
|
|
|
)
|
|
|
|
self.assertEqual(response.status_code, 404)
|
2020-04-08 00:27:24 +02:00
|
|
|
|
|
|
|
def test_serve_local_file_unauthed_invalid_token(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_get("/user_uploads/temporary/badtoken/file.png")
|
2020-04-08 00:27:24 +02:00
|
|
|
self.assert_json_error(result, "Invalid token")
|
|
|
|
|
2020-04-18 16:11:13 +02:00
|
|
|
def test_serve_local_file_unauthed_altered_filename(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2020-04-18 16:11:13 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
url = "/json" + response_dict["uri"]
|
2020-04-18 16:11:13 +02:00
|
|
|
|
|
|
|
result = self.client_get(url)
|
2022-06-07 01:37:01 +02:00
|
|
|
data = self.assert_json_success(result)
|
2021-02-12 08:20:45 +01:00
|
|
|
url_only_url = data["url"]
|
2020-04-18 16:11:13 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assertTrue(url_only_url.endswith("zulip.txt"))
|
|
|
|
url_only_url_changed_filename = url_only_url.split("zulip.txt")[0] + "differentname.exe"
|
2020-04-18 16:11:13 +02:00
|
|
|
result = self.client_get(url_only_url_changed_filename)
|
|
|
|
self.assert_json_error(result, "Invalid filename")
|
|
|
|
|
2020-04-08 00:27:24 +02:00
|
|
|
def test_serve_local_file_unauthed_token_expires(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2020-04-08 00:27:24 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
url = "/json" + response_dict["uri"]
|
2020-04-08 00:27:24 +02:00
|
|
|
|
|
|
|
start_time = time.time()
|
2021-02-12 08:20:45 +01:00
|
|
|
with mock.patch("django.core.signing.time.time", return_value=start_time):
|
2020-04-08 00:27:24 +02:00
|
|
|
result = self.client_get(url)
|
2022-06-07 01:37:01 +02:00
|
|
|
data = self.assert_json_success(result)
|
2021-02-12 08:20:45 +01:00
|
|
|
url_only_url = data["url"]
|
2020-04-08 00:27:24 +02:00
|
|
|
|
|
|
|
self.logout()
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(self.client_get(url_only_url), b"zulip!")
|
2020-04-08 00:27:24 +02:00
|
|
|
|
|
|
|
# After over 60 seconds, the token should become invalid:
|
2021-02-12 08:20:45 +01:00
|
|
|
with mock.patch("django.core.signing.time.time", return_value=start_time + 61):
|
2020-04-08 00:27:24 +02:00
|
|
|
result = self.client_get(url_only_url)
|
|
|
|
self.assert_json_error(result, "Invalid token")
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_download_unauthed(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-06-17 19:48:17 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
uri = response_dict["uri"]
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
response = self.client_get(uri)
|
2021-11-02 15:42:58 +01:00
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
self.assert_in_response("<p>You are not authorized to view this file.</p>", response)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_removed_file_download(self) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
"""
|
2016-06-17 19:48:17 +02:00
|
|
|
Trying to download deleted files should return 404 error
|
2021-02-12 08:19:30 +01:00
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-06-17 19:48:17 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2023-03-24 16:43:53 +01:00
|
|
|
assert settings.LOCAL_UPLOADS_DIR is not None
|
|
|
|
self.rm_tree(settings.LOCAL_UPLOADS_DIR)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2022-06-07 01:37:01 +02:00
|
|
|
response = self.client_get(response_dict["uri"])
|
2016-06-17 19:48:17 +02:00
|
|
|
self.assertEqual(response.status_code, 404)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_non_existing_file_download(self) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
"""
|
2016-06-17 19:48:17 +02:00
|
|
|
Trying to download a file that was never uploaded will return a json_error
|
2021-02-12 08:19:30 +01:00
|
|
|
"""
|
2019-07-24 07:34:48 +02:00
|
|
|
hamlet = self.example_user("hamlet")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2021-02-12 08:19:30 +01:00
|
|
|
response = self.client_get(
|
2022-05-18 21:31:18 +02:00
|
|
|
f"http://{hamlet.realm.host}/user_uploads/{hamlet.realm_id}/ff/gg/abc.py"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-06-17 19:48:17 +02:00
|
|
|
self.assertEqual(response.status_code, 404)
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assert_in_response("File not found.", response)
|
2016-06-27 21:09:56 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_delete_old_unclaimed_attachments(self) -> None:
|
2022-02-08 00:13:33 +01:00
|
|
|
# Upload some files and make them older than a week
|
2022-05-18 22:07:15 +02:00
|
|
|
hamlet = self.example_user("hamlet")
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-03-24 20:24:01 +01:00
|
|
|
d1 = StringIO("zulip!")
|
|
|
|
d1.name = "dummy_1.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d1})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
d1_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-03-24 20:24:01 +01:00
|
|
|
|
|
|
|
d2 = StringIO("zulip!")
|
|
|
|
d2.name = "dummy_2.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d2})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
d2_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2022-05-18 22:07:15 +02:00
|
|
|
d3 = StringIO("zulip!")
|
|
|
|
d3.name = "dummy_3.txt"
|
|
|
|
result = self.client_post("/json/user_uploads", {"file": d3})
|
|
|
|
d3_path_id = re.sub("/user_uploads/", "", result.json()["uri"])
|
|
|
|
|
2017-04-15 04:03:56 +02:00
|
|
|
two_week_ago = timezone_now() - datetime.timedelta(weeks=2)
|
2022-05-18 22:07:15 +02:00
|
|
|
# This Attachment will have a message linking to it:
|
2021-02-12 08:19:30 +01:00
|
|
|
d1_attachment = Attachment.objects.get(path_id=d1_path_id)
|
2016-03-24 20:24:01 +01:00
|
|
|
d1_attachment.create_time = two_week_ago
|
|
|
|
d1_attachment.save()
|
2023-03-08 22:18:59 +01:00
|
|
|
self.assertEqual(repr(d1_attachment), "<Attachment: dummy_1.txt>")
|
2022-05-18 22:07:15 +02:00
|
|
|
# This Attachment won't have any messages.
|
2021-02-12 08:19:30 +01:00
|
|
|
d2_attachment = Attachment.objects.get(path_id=d2_path_id)
|
2016-03-24 20:24:01 +01:00
|
|
|
d2_attachment.create_time = two_week_ago
|
|
|
|
d2_attachment.save()
|
2022-05-18 22:07:15 +02:00
|
|
|
# This Attachment will have a message that gets archived. The file
|
|
|
|
# should not be deleted until the message is deleted from the archive.
|
|
|
|
d3_attachment = Attachment.objects.get(path_id=d3_path_id)
|
|
|
|
d3_attachment.create_time = two_week_ago
|
|
|
|
d3_attachment.save()
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-09 16:26:38 +01:00
|
|
|
# Send message referring only dummy_1
|
2022-05-18 21:31:18 +02:00
|
|
|
self.subscribe(hamlet, "Denmark")
|
2021-02-12 08:19:30 +01:00
|
|
|
body = (
|
2022-05-18 21:31:18 +02:00
|
|
|
f"Some files here ...[zulip.txt](http://{hamlet.realm.host}/user_uploads/"
|
|
|
|
+ d1_path_id
|
|
|
|
+ ")"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2022-05-18 21:31:18 +02:00
|
|
|
self.send_stream_message(hamlet, "Denmark", body, "test")
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2022-05-18 22:07:15 +02:00
|
|
|
# Send message referecing dummy_3 - it will be archived next.
|
|
|
|
body = (
|
|
|
|
f"Some more files here ...[zulip.txt](http://{hamlet.realm.host}/user_uploads/"
|
|
|
|
+ d3_path_id
|
|
|
|
+ ")"
|
|
|
|
)
|
|
|
|
message_id = self.send_stream_message(hamlet, "Denmark", body, "test")
|
2023-01-06 01:18:13 +01:00
|
|
|
assert settings.LOCAL_FILES_DIR
|
|
|
|
d3_local_path = os.path.join(settings.LOCAL_FILES_DIR, d3_path_id)
|
2022-05-18 22:07:15 +02:00
|
|
|
self.assertTrue(os.path.exists(d3_local_path))
|
|
|
|
|
|
|
|
do_delete_messages(hamlet.realm, [Message.objects.get(id=message_id)])
|
2016-03-24 20:24:01 +01:00
|
|
|
# dummy_2 should not exist in database or the uploads folder
|
|
|
|
do_delete_old_unclaimed_attachments(2)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertTrue(not Attachment.objects.filter(path_id=d2_path_id).exists())
|
2021-02-12 08:20:45 +01:00
|
|
|
with self.assertLogs(level="WARNING") as warn_log:
|
2023-02-28 03:49:04 +01:00
|
|
|
self.assertTrue(not delete_message_attachment(d2_path_id))
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
|
|
|
warn_log.output,
|
2021-02-12 08:20:45 +01:00
|
|
|
["WARNING:root:dummy_2.txt does not exist. Its entry in the database will be removed."],
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2022-05-18 22:07:15 +02:00
|
|
|
# dummy_3 file should still exist, because the attachment has been moved to the archive.
|
|
|
|
self.assertTrue(os.path.exists(d3_local_path))
|
|
|
|
|
|
|
|
# After the archive gets emptied, do_delete_old_unclaimed_attachments should result
|
|
|
|
# in deleting the file, since it is now truly no longer referenced.
|
|
|
|
with self.settings(ARCHIVED_DATA_VACUUMING_DELAY_DAYS=0):
|
|
|
|
clean_archived_data()
|
|
|
|
do_delete_old_unclaimed_attachments(2)
|
|
|
|
self.assertFalse(os.path.exists(d3_local_path))
|
|
|
|
self.assertTrue(not Attachment.objects.filter(path_id=d3_path_id).exists())
|
|
|
|
self.assertTrue(not ArchivedAttachment.objects.filter(path_id=d3_path_id).exists())
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_attachment_url_without_upload(self) -> None:
|
2019-07-24 07:34:48 +02:00
|
|
|
hamlet = self.example_user("hamlet")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2022-05-18 21:31:18 +02:00
|
|
|
with self.assertLogs(level="WARNING") as warn_log:
|
|
|
|
body = f"Test message ...[zulip.txt](http://{hamlet.realm.host}/user_uploads/{hamlet.realm_id}/64/fake_path_id.txt)"
|
|
|
|
message_id = self.send_stream_message(
|
|
|
|
self.example_user("hamlet"), "Denmark", body, "test"
|
|
|
|
)
|
|
|
|
self.assertFalse(
|
|
|
|
Attachment.objects.filter(path_id=f"{hamlet.realm_id}/64/fake_path_id.txt").exists()
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
warn_log.output,
|
|
|
|
[
|
|
|
|
f"WARNING:root:User {hamlet.id} tried to share upload {hamlet.realm_id}/64/fake_path_id.txt in message {message_id}, but lacks permission"
|
|
|
|
],
|
|
|
|
)
|
2017-04-14 01:15:46 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_multiple_claim_attachments(self) -> None:
|
2016-03-24 20:24:01 +01:00
|
|
|
"""
|
|
|
|
This test tries to claim the same attachment twice. The messages field in
|
|
|
|
the Attachment model should have both the messages in its entry.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-03-24 20:24:01 +01:00
|
|
|
d1 = StringIO("zulip!")
|
|
|
|
d1.name = "dummy_1.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d1})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
d1_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-08-25 06:01:29 +02:00
|
|
|
self.subscribe(self.example_user("hamlet"), "Denmark")
|
2021-02-12 08:20:45 +01:00
|
|
|
host = self.example_user("hamlet").realm.host
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"First message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(self.example_user("hamlet"), "Denmark", body, "test")
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"Second message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(self.example_user("hamlet"), "Denmark", body, "test")
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2016-12-16 02:01:34 +01:00
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 2)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_multiple_claim_attachments_different_owners(self) -> None:
|
2017-04-14 00:59:59 +02:00
|
|
|
"""This test tries to claim the same attachment more than once, first
|
2017-11-09 16:26:38 +01:00
|
|
|
with a private stream and then with different recipients."""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2017-04-14 00:59:59 +02:00
|
|
|
d1 = StringIO("zulip!")
|
|
|
|
d1.name = "dummy_1.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d1})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
d1_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2021-02-12 08:20:45 +01:00
|
|
|
host = self.example_user("hamlet").realm.host
|
2017-04-14 00:59:59 +02:00
|
|
|
|
|
|
|
self.make_stream("private_stream", invite_only=True)
|
2017-08-25 06:01:29 +02:00
|
|
|
self.subscribe(self.example_user("hamlet"), "private_stream")
|
2017-04-14 00:59:59 +02:00
|
|
|
|
2019-12-13 03:56:59 +01:00
|
|
|
# First, send the message to the new private stream.
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"First message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(self.example_user("hamlet"), "private_stream", body, "test")
|
2017-04-14 00:59:59 +02:00
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_realm_public)
|
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 1)
|
|
|
|
|
|
|
|
# Then, try having a user who didn't receive the message try to publish it, and fail
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"Illegal message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
2021-07-10 09:26:03 +02:00
|
|
|
cordelia = self.example_user("cordelia")
|
2021-02-12 08:20:45 +01:00
|
|
|
with self.assertLogs(level="WARNING") as warn_log:
|
tests: Ensure stream senders get a UserMessage row.
We now complain if a test author sends a stream message
that does not result in the sender getting a
UserMessage row for the message.
This is basically 100% equivalent to complaining that
the author failed to subscribe the sender to the stream
as part of the test setup, as far as I can tell, so the
AssertionError instructs the author to subscribe the
sender to the stream.
We exempt bots from this check, although it is
plausible we should only exempt the system bots like
the notification bot.
I considered auto-subscribing the sender to the stream,
but that can be a little more expensive than the
current check, and we generally want test setup to be
explicit.
If there is some legitimate way than a subscribed human
sender can't get a UserMessage, then we probably want
an explicit test for that, or we may want to change the
backend to just write a UserMessage row in that
hypothetical situation.
For most tests, including almost all the ones fixed
here, the author just wants their test setup to
realistically reflect normal operation, and often devs
may not realize that Cordelia is not subscribed to
Denmark or not realize that Hamlet is not subscribed to
Scotland.
Some of us don't remember our Shakespeare from high
school, and our stream subscriptions don't even
necessarily reflect which countries the Bard placed his
characters in.
There may also be some legitimate use case where an
author wants to simulate sending a message to an
unsubscribed stream, but for those edge cases, they can
always set allow_unsubscribed_sender to True.
2021-12-10 13:55:48 +01:00
|
|
|
self.send_stream_message(cordelia, "Verona", body, "test")
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertTrue(
|
2021-07-10 09:26:03 +02:00
|
|
|
f"WARNING:root:User {cordelia.id} tried to share upload" in warn_log.output[0]
|
2021-02-12 08:20:45 +01:00
|
|
|
and "but lacks permission" in warn_log.output[0]
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2017-04-14 00:59:59 +02:00
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 1)
|
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_realm_public)
|
2020-08-01 03:17:21 +02:00
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_web_public)
|
2017-04-14 00:59:59 +02:00
|
|
|
|
|
|
|
# Then, have the owner PM it to another user, giving that other user access.
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"Second message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_personal_message(self.example_user("hamlet"), self.example_user("othello"), body)
|
2017-04-14 00:59:59 +02:00
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 2)
|
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_realm_public)
|
2020-08-01 03:17:21 +02:00
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_web_public)
|
2017-04-14 00:59:59 +02:00
|
|
|
|
|
|
|
# Then, have that new recipient user publish it.
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"Third message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
tests: Ensure stream senders get a UserMessage row.
We now complain if a test author sends a stream message
that does not result in the sender getting a
UserMessage row for the message.
This is basically 100% equivalent to complaining that
the author failed to subscribe the sender to the stream
as part of the test setup, as far as I can tell, so the
AssertionError instructs the author to subscribe the
sender to the stream.
We exempt bots from this check, although it is
plausible we should only exempt the system bots like
the notification bot.
I considered auto-subscribing the sender to the stream,
but that can be a little more expensive than the
current check, and we generally want test setup to be
explicit.
If there is some legitimate way than a subscribed human
sender can't get a UserMessage, then we probably want
an explicit test for that, or we may want to change the
backend to just write a UserMessage row in that
hypothetical situation.
For most tests, including almost all the ones fixed
here, the author just wants their test setup to
realistically reflect normal operation, and often devs
may not realize that Cordelia is not subscribed to
Denmark or not realize that Hamlet is not subscribed to
Scotland.
Some of us don't remember our Shakespeare from high
school, and our stream subscriptions don't even
necessarily reflect which countries the Bard placed his
characters in.
There may also be some legitimate use case where an
author wants to simulate sending a message to an
unsubscribed stream, but for those edge cases, they can
always set allow_unsubscribed_sender to True.
2021-12-10 13:55:48 +01:00
|
|
|
self.send_stream_message(self.example_user("othello"), "Verona", body, "test")
|
2017-04-14 00:59:59 +02:00
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 3)
|
|
|
|
self.assertTrue(Attachment.objects.get(path_id=d1_path_id).is_realm_public)
|
2020-08-01 03:17:21 +02:00
|
|
|
self.assertFalse(Attachment.objects.get(path_id=d1_path_id).is_web_public)
|
|
|
|
|
|
|
|
# Finally send to Rome, the web-public stream, and confirm it's now web-public
|
|
|
|
body = f"Fourth message ...[zulip.txt](http://{host}/user_uploads/" + d1_path_id + ")"
|
tests: Ensure stream senders get a UserMessage row.
We now complain if a test author sends a stream message
that does not result in the sender getting a
UserMessage row for the message.
This is basically 100% equivalent to complaining that
the author failed to subscribe the sender to the stream
as part of the test setup, as far as I can tell, so the
AssertionError instructs the author to subscribe the
sender to the stream.
We exempt bots from this check, although it is
plausible we should only exempt the system bots like
the notification bot.
I considered auto-subscribing the sender to the stream,
but that can be a little more expensive than the
current check, and we generally want test setup to be
explicit.
If there is some legitimate way than a subscribed human
sender can't get a UserMessage, then we probably want
an explicit test for that, or we may want to change the
backend to just write a UserMessage row in that
hypothetical situation.
For most tests, including almost all the ones fixed
here, the author just wants their test setup to
realistically reflect normal operation, and often devs
may not realize that Cordelia is not subscribed to
Denmark or not realize that Hamlet is not subscribed to
Scotland.
Some of us don't remember our Shakespeare from high
school, and our stream subscriptions don't even
necessarily reflect which countries the Bard placed his
characters in.
There may also be some legitimate use case where an
author wants to simulate sending a message to an
unsubscribed stream, but for those edge cases, they can
always set allow_unsubscribed_sender to True.
2021-12-10 13:55:48 +01:00
|
|
|
self.subscribe(self.example_user("othello"), "Rome")
|
2020-08-01 03:17:21 +02:00
|
|
|
self.send_stream_message(self.example_user("othello"), "Rome", body, "test")
|
|
|
|
self.assertEqual(Attachment.objects.get(path_id=d1_path_id).messages.count(), 4)
|
|
|
|
self.assertTrue(Attachment.objects.get(path_id=d1_path_id).is_realm_public)
|
|
|
|
self.assertTrue(Attachment.objects.get(path_id=d1_path_id).is_web_public)
|
2017-04-14 00:59:59 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_check_attachment_reference_update(self) -> None:
|
2016-07-07 09:47:15 +02:00
|
|
|
f1 = StringIO("file1")
|
|
|
|
f1.name = "file1.txt"
|
|
|
|
f2 = StringIO("file2")
|
|
|
|
f2.name = "file2.txt"
|
|
|
|
f3 = StringIO("file3")
|
|
|
|
f3.name = "file3.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
hamlet = self.example_user("hamlet")
|
2019-12-13 03:56:59 +01:00
|
|
|
host = hamlet.realm.host
|
2016-07-07 09:47:15 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": f1})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
f1_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-07-07 09:47:15 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": f2})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
f2_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-07-07 09:47:15 +02:00
|
|
|
|
2019-12-13 03:56:59 +01:00
|
|
|
self.subscribe(hamlet, "test")
|
2021-02-12 08:19:30 +01:00
|
|
|
body = (
|
|
|
|
f"[f1.txt](http://{host}/user_uploads/" + f1_path_id + ") "
|
|
|
|
"[f2.txt](http://{}/user_uploads/".format(host) + f2_path_id + ")"
|
|
|
|
)
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(hamlet, "test", body, "test")
|
2016-07-07 09:47:15 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": f3})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
f3_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2016-07-07 09:47:15 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
new_body = (
|
|
|
|
f"[f3.txt](http://{host}/user_uploads/" + f3_path_id + ") "
|
|
|
|
"[f2.txt](http://{}/user_uploads/".format(host) + f2_path_id + ")"
|
|
|
|
)
|
|
|
|
result = self.client_patch(
|
|
|
|
"/json/messages/" + str(msg_id),
|
|
|
|
{
|
2021-02-12 08:20:45 +01:00
|
|
|
"content": new_body,
|
2021-02-12 08:19:30 +01:00
|
|
|
},
|
|
|
|
)
|
2016-07-07 09:47:15 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
message = Message.objects.get(id=msg_id)
|
|
|
|
f1_attachment = Attachment.objects.get(path_id=f1_path_id)
|
|
|
|
f2_attachment = Attachment.objects.get(path_id=f2_path_id)
|
2016-07-24 22:03:22 +02:00
|
|
|
f3_attachment = Attachment.objects.get(path_id=f3_path_id)
|
2016-07-07 09:47:15 +02:00
|
|
|
|
|
|
|
self.assertTrue(message not in f1_attachment.messages.all())
|
|
|
|
self.assertTrue(message in f2_attachment.messages.all())
|
|
|
|
self.assertTrue(message in f3_attachment.messages.all())
|
|
|
|
|
2016-07-23 07:06:13 +02:00
|
|
|
# Delete all the attachments from the message
|
|
|
|
new_body = "(deleted)"
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_patch(
|
|
|
|
"/json/messages/" + str(msg_id),
|
|
|
|
{
|
2021-02-12 08:20:45 +01:00
|
|
|
"content": new_body,
|
2021-02-12 08:19:30 +01:00
|
|
|
},
|
|
|
|
)
|
2016-07-23 07:06:13 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
message = Message.objects.get(id=msg_id)
|
|
|
|
f1_attachment = Attachment.objects.get(path_id=f1_path_id)
|
|
|
|
f2_attachment = Attachment.objects.get(path_id=f2_path_id)
|
|
|
|
f3_attachment = Attachment.objects.get(path_id=f3_path_id)
|
|
|
|
self.assertTrue(message not in f1_attachment.messages.all())
|
|
|
|
self.assertTrue(message not in f2_attachment.messages.all())
|
|
|
|
self.assertTrue(message not in f3_attachment.messages.all())
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_name(self) -> None:
|
2016-09-20 11:02:15 +02:00
|
|
|
"""
|
|
|
|
Unicode filenames should be processed correctly.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-09-20 11:02:15 +02:00
|
|
|
for expected in ["Здравейте.txt", "test"]:
|
|
|
|
fp = StringIO("bah!")
|
|
|
|
fp.name = urllib.parse.quote(expected)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"f1": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
assert sanitize_name(expected) in response_dict["uri"]
|
2016-09-20 11:02:15 +02:00
|
|
|
|
2018-01-26 16:13:33 +01:00
|
|
|
def test_realm_quota(self) -> None:
|
|
|
|
"""
|
|
|
|
Realm quota for uploading should not be exceeded.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2018-01-26 16:13:33 +01:00
|
|
|
|
|
|
|
d1 = StringIO("zulip!")
|
|
|
|
d1.name = "dummy_1.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d1})
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
d1_path_id = re.sub("/user_uploads/", "", response_dict["uri"])
|
2021-02-12 08:19:30 +01:00
|
|
|
d1_attachment = Attachment.objects.get(path_id=d1_path_id)
|
2018-01-26 16:13:33 +01:00
|
|
|
|
|
|
|
realm = get_realm("zulip")
|
|
|
|
realm.upload_quota_gb = 1
|
2021-02-12 08:20:45 +01:00
|
|
|
realm.save(update_fields=["upload_quota_gb"])
|
2018-01-26 16:13:33 +01:00
|
|
|
|
|
|
|
# The size of StringIO("zulip!") is 6 bytes. Setting the size of
|
|
|
|
# d1_attachment to realm.upload_quota_bytes() - 11 should allow
|
|
|
|
# us to upload only one more attachment.
|
2018-02-19 06:39:38 +01:00
|
|
|
quota = realm.upload_quota_bytes()
|
2021-02-12 08:19:30 +01:00
|
|
|
assert quota is not None
|
2018-02-19 06:39:38 +01:00
|
|
|
d1_attachment.size = quota - 11
|
2021-02-12 08:20:45 +01:00
|
|
|
d1_attachment.save(update_fields=["size"])
|
2018-01-26 16:13:33 +01:00
|
|
|
|
|
|
|
d2 = StringIO("zulip!")
|
|
|
|
d2.name = "dummy_2.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d2})
|
2018-01-26 16:13:33 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
d3 = StringIO("zulip!")
|
|
|
|
d3.name = "dummy_3.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": d3})
|
2018-01-26 16:13:33 +01:00
|
|
|
self.assert_json_error(result, "Upload would exceed your organization's upload quota.")
|
|
|
|
|
|
|
|
realm.upload_quota_gb = None
|
2021-02-12 08:20:45 +01:00
|
|
|
realm.save(update_fields=["upload_quota_gb"])
|
|
|
|
result = self.client_post("/json/user_uploads", {"file": d3})
|
2018-01-26 16:13:33 +01:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_cross_realm_file_access(self) -> None:
|
2018-05-11 01:39:38 +02:00
|
|
|
def create_user(email: str, realm_id: str) -> UserProfile:
|
2020-03-06 18:40:46 +01:00
|
|
|
password = initial_password(email)
|
|
|
|
if password is not None:
|
|
|
|
self.register(email, password, subdomain=realm_id)
|
2022-01-23 20:30:46 +01:00
|
|
|
# self.register has the side-effect of ending up with a logged in session
|
|
|
|
# for the new user. We don't want that in these tests.
|
|
|
|
self.logout()
|
2020-03-12 14:17:25 +01:00
|
|
|
return get_user_by_delivery_email(email, get_realm(realm_id))
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2017-08-26 01:20:47 +02:00
|
|
|
test_subdomain = "uploadtest.example.com"
|
2021-02-12 08:20:45 +01:00
|
|
|
user1_email = "user1@uploadtest.example.com"
|
|
|
|
user2_email = "test-og-bot@zulip.com"
|
|
|
|
user3_email = "other-user@uploadtest.example.com"
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2021-03-08 13:22:43 +01:00
|
|
|
r1 = do_create_realm(string_id=test_subdomain, name=test_subdomain)
|
2021-03-01 11:33:24 +01:00
|
|
|
do_set_realm_property(r1, "invite_required", False, acting_user=None)
|
2017-08-26 01:20:47 +02:00
|
|
|
RealmDomain.objects.create(realm=r1, domain=test_subdomain)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
user_1 = create_user(user1_email, test_subdomain)
|
2021-02-12 08:20:45 +01:00
|
|
|
user_2 = create_user(user2_email, "zulip")
|
2019-12-13 03:56:59 +01:00
|
|
|
user_3 = create_user(user3_email, test_subdomain)
|
|
|
|
host = user_3.realm.host
|
2016-06-17 19:48:17 +02:00
|
|
|
|
|
|
|
# Send a message from @zulip.com -> @uploadtest.example.com
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user_2)
|
2016-06-17 19:48:17 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"First message ...[zulip.txt](http://{host}/user_uploads/" + fp_path_id + ")"
|
2021-02-12 08:19:30 +01:00
|
|
|
with self.settings(CROSS_REALM_BOT_EMAILS={user_2.email, user_3.email}):
|
2017-08-18 12:26:43 +02:00
|
|
|
internal_send_private_message(
|
2021-03-08 11:54:39 +01:00
|
|
|
sender=get_system_bot(user_2.email, user_2.realm_id),
|
2020-03-12 14:17:25 +01:00
|
|
|
recipient_user=user_1,
|
2017-08-18 12:26:43 +02:00
|
|
|
content=body,
|
|
|
|
)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user_1)
|
2017-08-26 01:20:47 +02:00
|
|
|
response = self.client_get(uri, subdomain=test_subdomain)
|
2016-06-17 19:48:17 +02:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
|
|
|
|
# Confirm other cross-realm users can't read it.
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user_3)
|
2017-08-26 01:20:47 +02:00
|
|
|
response = self.client_get(uri, subdomain=test_subdomain)
|
2016-06-17 19:48:17 +02:00
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
self.assert_in_response("You are not authorized to view this file.", response)
|
|
|
|
|
2021-11-02 15:42:58 +01:00
|
|
|
# Verify that cross-realm access to files for spectators is denied.
|
|
|
|
self.logout()
|
|
|
|
response = self.client_get(uri, subdomain=test_subdomain)
|
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_download_authorization_invite_only(self) -> None:
|
2020-03-06 18:40:46 +01:00
|
|
|
hamlet = self.example_user("hamlet")
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-03-06 18:40:46 +01:00
|
|
|
realm = hamlet.realm
|
|
|
|
subscribed_users = [hamlet, cordelia]
|
2020-03-10 11:48:26 +01:00
|
|
|
unsubscribed_users = [self.example_user("othello"), self.example_user("prospero")]
|
2018-06-05 21:12:28 +02:00
|
|
|
stream_name = "test-subscribe"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.make_stream(
|
|
|
|
stream_name, realm=realm, invite_only=True, history_public_to_subscribers=False
|
|
|
|
)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
for subscribed_user in subscribed_users:
|
|
|
|
self.subscribe(subscribed_user, stream_name)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2016-06-17 19:48:17 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"First message ...[zulip.txt](http://{realm.host}/user_uploads/" + fp_path_id + ")"
|
2020-03-06 18:40:46 +01:00
|
|
|
self.send_stream_message(hamlet, stream_name, body, "test")
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2018-06-05 21:12:28 +02:00
|
|
|
# Owner user should be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(5):
|
2016-06-17 19:48:17 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
2020-03-28 01:25:56 +01:00
|
|
|
# Subscribed user who received the message should be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(cordelia)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(6):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
2020-03-10 11:48:26 +01:00
|
|
|
def assert_cannot_access_file(user: UserProfile) -> None:
|
|
|
|
response = self.api_get(user, uri)
|
2018-06-05 21:12:28 +02:00
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
self.assert_in_response("You are not authorized to view this file.", response)
|
|
|
|
|
|
|
|
late_subscribed_user = self.example_user("aaron")
|
|
|
|
self.subscribe(late_subscribed_user, stream_name)
|
2020-03-10 11:48:26 +01:00
|
|
|
assert_cannot_access_file(late_subscribed_user)
|
2016-06-17 19:48:17 +02:00
|
|
|
|
|
|
|
# Unsubscribed user should not be able to view file
|
2020-03-10 11:48:26 +01:00
|
|
|
for unsubscribed_user in unsubscribed_users:
|
2018-06-05 21:12:28 +02:00
|
|
|
assert_cannot_access_file(unsubscribed_user)
|
|
|
|
|
|
|
|
def test_file_download_authorization_invite_only_with_shared_history(self) -> None:
|
|
|
|
user = self.example_user("hamlet")
|
2021-02-12 08:20:45 +01:00
|
|
|
polonius = self.example_user("polonius")
|
2020-03-06 18:40:46 +01:00
|
|
|
subscribed_users = [user, polonius]
|
|
|
|
unsubscribed_users = [self.example_user("othello"), self.example_user("prospero")]
|
2018-06-05 21:12:28 +02:00
|
|
|
stream_name = "test-subscribe"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.make_stream(
|
|
|
|
stream_name, realm=user.realm, invite_only=True, history_public_to_subscribers=True
|
|
|
|
)
|
2018-06-05 21:12:28 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
for subscribed_user in subscribed_users:
|
|
|
|
self.subscribe(subscribed_user, stream_name)
|
2018-06-05 21:12:28 +02:00
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user)
|
2018-06-05 21:12:28 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
2021-02-12 08:19:30 +01:00
|
|
|
body = (
|
|
|
|
f"First message ...[zulip.txt](http://{user.realm.host}/user_uploads/"
|
|
|
|
+ fp_path_id
|
|
|
|
+ ")"
|
|
|
|
)
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(user, stream_name, body, "test")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
|
|
|
# Add aaron as a subscribed after the message was sent
|
|
|
|
late_subscribed_user = self.example_user("aaron")
|
|
|
|
self.subscribe(late_subscribed_user, stream_name)
|
2020-03-06 18:40:46 +01:00
|
|
|
subscribed_users.append(late_subscribed_user)
|
2018-06-05 21:12:28 +02:00
|
|
|
|
|
|
|
# Owner user should be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(5):
|
2016-06-17 19:48:17 +02:00
|
|
|
response = self.client_get(uri)
|
2018-06-05 21:12:28 +02:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
|
|
|
# Originally subscribed user should be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(polonius)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(6):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
|
|
|
# Subscribed user who did not receive the message should also be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(late_subscribed_user)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(9):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
# It takes a few extra queries to verify access because of shared history.
|
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
def assert_cannot_access_file(user: UserProfile) -> None:
|
|
|
|
self.login_user(user)
|
2022-10-15 22:47:40 +02:00
|
|
|
# It takes a few extra queries to verify lack of access with shared history.
|
|
|
|
with self.assert_database_query_count(8):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
2016-06-17 19:48:17 +02:00
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
self.assert_in_response("You are not authorized to view this file.", response)
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2018-06-05 21:12:28 +02:00
|
|
|
# Unsubscribed user should not be able to view file
|
2020-03-06 18:40:46 +01:00
|
|
|
for unsubscribed_user in unsubscribed_users:
|
2018-06-05 21:12:28 +02:00
|
|
|
assert_cannot_access_file(unsubscribed_user)
|
|
|
|
|
|
|
|
def test_multiple_message_attachment_file_download(self) -> None:
|
|
|
|
hamlet = self.example_user("hamlet")
|
|
|
|
for i in range(0, 5):
|
2020-06-10 06:41:04 +02:00
|
|
|
stream_name = f"test-subscribe {i}"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.make_stream(
|
|
|
|
stream_name,
|
|
|
|
realm=hamlet.realm,
|
|
|
|
invite_only=True,
|
|
|
|
history_public_to_subscribers=True,
|
|
|
|
)
|
2018-06-05 21:12:28 +02:00
|
|
|
self.subscribe(hamlet, stream_name)
|
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2018-06-05 21:12:28 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
2018-06-05 21:12:28 +02:00
|
|
|
for i in range(20):
|
2021-02-12 08:19:30 +01:00
|
|
|
body = (
|
|
|
|
f"First message ...[zulip.txt](http://{hamlet.realm.host}/user_uploads/"
|
|
|
|
+ fp_path_id
|
|
|
|
+ ")"
|
|
|
|
)
|
|
|
|
self.send_stream_message(
|
|
|
|
self.example_user("hamlet"), f"test-subscribe {i % 5}", body, "test"
|
|
|
|
)
|
2018-06-05 21:12:28 +02:00
|
|
|
self.logout()
|
|
|
|
|
|
|
|
user = self.example_user("aaron")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user)
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(8):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 403)
|
|
|
|
self.assert_in_response("You are not authorized to view this file.", response)
|
|
|
|
|
|
|
|
self.subscribe(user, "test-subscribe 1")
|
|
|
|
self.subscribe(user, "test-subscribe 2")
|
|
|
|
|
2022-10-15 22:47:40 +02:00
|
|
|
# If we were accidentally one query per message, this would be 20+
|
|
|
|
with self.assert_database_query_count(9):
|
2018-06-05 21:12:28 +02:00
|
|
|
response = self.client_get(uri)
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2018-06-05 21:12:28 +02:00
|
|
|
|
2022-10-15 22:47:40 +02:00
|
|
|
with self.assert_database_query_count(6):
|
2018-06-05 21:12:28 +02:00
|
|
|
self.assertTrue(validate_attachment_request(user, fp_path_id))
|
|
|
|
|
|
|
|
self.logout()
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_download_authorization_public(self) -> None:
|
2020-03-06 18:40:46 +01:00
|
|
|
subscribed_users = [self.example_user("hamlet"), self.example_user("iago")]
|
|
|
|
unsubscribed_users = [self.example_user("othello"), self.example_user("prospero")]
|
2017-08-25 06:01:29 +02:00
|
|
|
realm = get_realm("zulip")
|
2020-03-06 18:40:46 +01:00
|
|
|
for subscribed_user in subscribed_users:
|
|
|
|
self.subscribe(subscribed_user, "test-subscribe")
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-06-17 19:48:17 +02:00
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = "zulip.txt"
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
2022-06-07 01:37:01 +02:00
|
|
|
uri = self.assert_json_success(result)["uri"]
|
2021-02-12 08:20:45 +01:00
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
2020-06-09 00:25:09 +02:00
|
|
|
body = f"First message ...[zulip.txt](http://{realm.host}/user_uploads/" + fp_path_id + ")"
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(self.example_user("hamlet"), "test-subscribe", body, "test")
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
|
|
|
|
# Now all users should be able to access the files
|
|
|
|
for user in subscribed_users + unsubscribed_users:
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user)
|
2016-06-17 19:48:17 +02:00
|
|
|
response = self.client_get(uri)
|
2022-01-21 05:51:51 +01:00
|
|
|
self.assert_streaming_content(response, b"zulip!")
|
2017-04-18 03:23:32 +02:00
|
|
|
self.logout()
|
2016-06-17 19:48:17 +02:00
|
|
|
|
2018-02-12 18:18:03 +01:00
|
|
|
def test_serve_local(self) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_xsend_links(
|
2022-03-22 04:38:18 +01:00
|
|
|
name: str,
|
|
|
|
name_str_for_test: str,
|
|
|
|
content_disposition: str = "",
|
|
|
|
download: bool = False,
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> None:
|
2022-12-06 22:26:39 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
fp = StringIO("zulip!")
|
|
|
|
fp.name = name
|
|
|
|
result = self.client_post("/json/user_uploads", {"file": fp})
|
|
|
|
uri = self.assert_json_success(result)["uri"]
|
|
|
|
fp_path_id = re.sub("/user_uploads/", "", uri)
|
|
|
|
fp_path = os.path.split(fp_path_id)[0]
|
|
|
|
if download:
|
|
|
|
uri = uri.replace("/user_uploads/", "/user_uploads/download/")
|
|
|
|
with self.settings(DEVELOPMENT=False):
|
2018-02-12 18:18:03 +01:00
|
|
|
response = self.client_get(uri)
|
2022-12-06 22:26:39 +01:00
|
|
|
assert settings.LOCAL_UPLOADS_DIR is not None
|
|
|
|
test_run, worker = os.path.split(os.path.dirname(settings.LOCAL_UPLOADS_DIR))
|
|
|
|
self.assertEqual(
|
|
|
|
response["X-Accel-Redirect"],
|
uploads: Serve S3 uploads directly from nginx.
When file uploads are stored in S3, this means that Zulip serves as a
302 to S3. Because browsers do not cache redirects, this means that
no image contents can be cached -- and upon every page load or reload,
every recently-posted image must be re-fetched. This incurs extra
load on the Zulip server, as well as potentially excessive bandwidth
usage from S3, and on the client's connection.
Switch to fetching the content from S3 in nginx, and serving the
content from nginx. These have `Cache-control: private, immutable`
headers set on the response, allowing browsers to cache them locally.
Because nginx fetching from S3 can be slow, and requests for uploads
will generally be bunched around when a message containing them are
first posted, we instruct nginx to cache the contents locally. This
is safe because uploaded file contents are immutable; access control
is still mediated by Django. The nginx cache key is the URL without
query parameters, as those parameters include a time-limited signed
authentication parameter which lets nginx fetch the non-public file.
This adds a number of nginx-level configuration parameters to control
the caching which nginx performs, including the amount of in-memory
index for he cache, the maximum storage of the cache on disk, and how
long data is retained in the cache. The currently-chosen figures are
reasonable for small to medium deployments.
The most notable effect of this change is in allowing browsers to
cache uploaded image content; however, while there will be many fewer
requests, it also has an improvement on request latency. The
following tests were done with a non-AWS client in SFO, a server and
S3 storage in us-east-1, and with 100 requests after 10 requests of
warm-up (to fill the nginx cache). The mean and standard deviation
are shown.
| | Redirect to S3 | Caching proxy, hot | Caching proxy, cold |
| ----------------- | ------------------- | ------------------- | ------------------- |
| Time in Django | 263.0 ms ± 28.3 ms | 258.0 ms ± 12.3 ms | 258.0 ms ± 12.3 ms |
| Small file (842b) | 586.1 ms ± 21.1 ms | 266.1 ms ± 67.4 ms | 288.6 ms ± 17.7 ms |
| Large file (660k) | 959.6 ms ± 137.9 ms | 609.5 ms ± 13.0 ms | 648.1 ms ± 43.2 ms |
The hot-cache performance is faster for both large and small files,
since it saves the client the time having to make a second request to
a separate host. This performance improvement remains at least 100ms
even if the client is on the same coast as the server.
Cold nginx caches are only slightly slower than hot caches, because
VPC access to S3 endpoints is extremely fast (assuming it is in the
same region as the host), and nginx can pool connections to S3 and
reuse them.
However, all of the 648ms taken to serve a cold-cache large file is
occupied in nginx, as opposed to the only 263ms which was spent in
nginx when using redirects to S3. This means that to overall spend
less time responding to uploaded-file requests in nginx, clients will
need to find files in their local cache, and skip making an
uploaded-file request, at least 60% of the time. Modeling shows a
reduction in the number of client requests by about 70% - 80%.
The `Content-Disposition` header logic can now also be entirely shared
with the local-file codepath, as can the `url_only` path used by
mobile clients. While we could provide the direct-to-S3 temporary
signed URL to mobile clients, we choose to provide the
served-from-Zulip signed URL, to better control caching headers on it,
and greater consistency. In doing so, we adjust the salt used for the
URL; since these URLs are only valid for 60s, the effect of this salt
change is minimal.
2022-11-22 20:41:35 +01:00
|
|
|
"/internal/local/uploads/" + fp_path + "/" + name_str_for_test,
|
2022-12-06 22:26:39 +01:00
|
|
|
)
|
|
|
|
if content_disposition != "":
|
|
|
|
self.assertIn("attachment;", response["Content-disposition"])
|
|
|
|
self.assertIn(content_disposition, response["Content-disposition"])
|
|
|
|
else:
|
|
|
|
self.assertIn("inline;", response["Content-disposition"])
|
|
|
|
self.assertEqual(set(response["Cache-Control"].split(", ")), {"private", "immutable"})
|
2018-03-13 07:08:27 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
check_xsend_links("zulip.txt", "zulip.txt", 'filename="zulip.txt"')
|
2021-02-12 08:19:30 +01:00
|
|
|
check_xsend_links(
|
2021-02-12 08:20:45 +01:00
|
|
|
"áéБД.txt",
|
|
|
|
"%C3%A1%C3%A9%D0%91%D0%94.txt",
|
2022-11-30 19:11:35 +01:00
|
|
|
"filename*=utf-8''%C3%A1%C3%A9%D0%91%D0%94.txt",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
check_xsend_links("zulip.html", "zulip.html", 'filename="zulip.html"')
|
|
|
|
check_xsend_links("zulip.sh", "zulip.sh", 'filename="zulip.sh"')
|
|
|
|
check_xsend_links("zulip.jpeg", "zulip.jpeg")
|
2022-03-22 04:38:18 +01:00
|
|
|
check_xsend_links(
|
|
|
|
"zulip.jpeg", "zulip.jpeg", download=True, content_disposition='filename="zulip.jpeg"'
|
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
check_xsend_links("áéБД.pdf", "%C3%A1%C3%A9%D0%91%D0%94.pdf")
|
|
|
|
check_xsend_links("zulip", "zulip", 'filename="zulip"')
|
2018-02-12 18:18:03 +01:00
|
|
|
|
2018-05-14 23:47:19 +02:00
|
|
|
|
2017-02-16 10:10:37 +01:00
|
|
|
class AvatarTest(UploadSerializeMixin, ZulipTestCase):
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_avatar_field(self) -> None:
|
2017-10-10 03:53:25 +02:00
|
|
|
with self.settings(AVATAR_SALT="salt"):
|
|
|
|
url = get_avatar_field(
|
|
|
|
user_id=17,
|
|
|
|
realm_id=5,
|
2021-02-12 08:20:45 +01:00
|
|
|
email="foo@example.com",
|
2017-10-10 03:53:25 +02:00
|
|
|
avatar_source=UserProfile.AVATAR_FROM_USER,
|
|
|
|
avatar_version=2,
|
|
|
|
medium=True,
|
|
|
|
client_gravatar=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
url,
|
2021-10-14 00:50:26 +02:00
|
|
|
"/user_avatars/5/fc2b9f1a81f4508a4df2d95451a2a77e0524ca0e-medium.png?version=2",
|
2017-10-10 03:53:25 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
url = get_avatar_field(
|
|
|
|
user_id=9999,
|
|
|
|
realm_id=9999,
|
2021-02-12 08:20:45 +01:00
|
|
|
email="foo@example.com",
|
2017-10-10 03:53:25 +02:00
|
|
|
avatar_source=UserProfile.AVATAR_FROM_GRAVATAR,
|
|
|
|
avatar_version=2,
|
|
|
|
medium=True,
|
|
|
|
client_gravatar=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
url,
|
2021-02-12 08:20:45 +01:00
|
|
|
"https://secure.gravatar.com/avatar/b48def645758b95537d4424c84d1a9ff?d=identicon&s=500&version=2",
|
2017-10-10 03:53:25 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
url = get_avatar_field(
|
|
|
|
user_id=9999,
|
|
|
|
realm_id=9999,
|
2021-02-12 08:20:45 +01:00
|
|
|
email="foo@example.com",
|
2017-10-10 03:53:25 +02:00
|
|
|
avatar_source=UserProfile.AVATAR_FROM_GRAVATAR,
|
|
|
|
avatar_version=2,
|
|
|
|
medium=True,
|
|
|
|
client_gravatar=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(url, None)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_avatar_url(self) -> None:
|
2017-03-21 23:53:54 +01:00
|
|
|
"""Verifies URL schemes for avatars and realm icons."""
|
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
|
|
|
backend: ZulipUploadBackend = LocalUploadBackend()
|
2021-06-05 02:38:54 +02:00
|
|
|
self.assertEqual(backend.get_public_upload_root_url(), "/user_avatars/")
|
2021-10-14 00:50:26 +02:00
|
|
|
self.assertEqual(backend.get_avatar_url("hash", False), "/user_avatars/hash.png")
|
|
|
|
self.assertEqual(backend.get_avatar_url("hash", True), "/user_avatars/hash-medium.png")
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_icon_url(15, 1), "/user_avatars/15/realm/icon.png?version=1"
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_logo_url(15, 1, False), "/user_avatars/15/realm/logo.png?version=1"
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_logo_url(15, 1, True),
|
|
|
|
"/user_avatars/15/realm/night_logo.png?version=1",
|
|
|
|
)
|
2017-03-21 23:53:54 +01:00
|
|
|
|
|
|
|
with self.settings(S3_AVATAR_BUCKET="bucket"):
|
|
|
|
backend = S3UploadBackend()
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
2021-10-14 00:50:26 +02:00
|
|
|
backend.get_avatar_url("hash", False), "https://bucket.s3.amazonaws.com/hash"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_avatar_url("hash", True),
|
2021-10-14 00:50:26 +02:00
|
|
|
"https://bucket.s3.amazonaws.com/hash-medium.png",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_icon_url(15, 1),
|
|
|
|
"https://bucket.s3.amazonaws.com/15/realm/icon.png?version=1",
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_logo_url(15, 1, False),
|
|
|
|
"https://bucket.s3.amazonaws.com/15/realm/logo.png?version=1",
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
backend.get_realm_logo_url(15, 1, True),
|
|
|
|
"https://bucket.s3.amazonaws.com/15/realm/night_logo.png?version=1",
|
|
|
|
)
|
2017-03-21 23:53:54 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_multiple_upload_failure(self) -> None:
|
2016-04-17 23:51:49 +02:00
|
|
|
"""
|
|
|
|
Attempting to upload two files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
with get_test_image_file("img.png") as fp1, get_test_image_file("img.png") as fp2:
|
|
|
|
result = self.client_post("/json/users/me/avatar", {"f1": fp1, "f2": fp2})
|
2016-04-17 23:51:49 +02:00
|
|
|
self.assert_json_error(result, "You must upload exactly one avatar.")
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_no_file_upload_failure(self) -> None:
|
2016-04-17 23:51:49 +02:00
|
|
|
"""
|
|
|
|
Calling this endpoint with no files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-04-17 23:51:49 +02:00
|
|
|
|
2017-07-05 19:15:15 +02:00
|
|
|
result = self.client_post("/json/users/me/avatar")
|
2016-04-17 23:51:49 +02:00
|
|
|
self.assert_json_error(result, "You must upload exactly one avatar.")
|
|
|
|
|
2019-04-23 04:51:04 +02:00
|
|
|
def test_avatar_changes_disabled_failure(self) -> None:
|
|
|
|
"""
|
|
|
|
Attempting to upload avatar on a realm with avatar changes disabled should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("cordelia")
|
2021-03-01 11:33:24 +01:00
|
|
|
do_set_realm_property(
|
|
|
|
self.example_user("cordelia").realm,
|
|
|
|
"avatar_changes_disabled",
|
|
|
|
True,
|
|
|
|
acting_user=None,
|
|
|
|
)
|
2019-04-23 04:51:04 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
with get_test_image_file("img.png") as fp1:
|
|
|
|
result = self.client_post("/json/users/me/avatar", {"f1": fp1})
|
2019-04-23 04:51:04 +02:00
|
|
|
self.assert_json_error(result, "Avatar changes are disabled in this organization.")
|
|
|
|
|
2016-04-17 23:57:03 +02:00
|
|
|
correct_files = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("img.png", "png_resized.png"),
|
|
|
|
("img.jpg", None), # jpeg resizing is platform-dependent
|
|
|
|
("img.gif", "gif_resized.png"),
|
|
|
|
("img.tif", "tif_resized.png"),
|
|
|
|
("cmyk.jpg", None),
|
2016-04-17 23:57:03 +02:00
|
|
|
]
|
2021-02-12 08:20:45 +01:00
|
|
|
corrupt_files = ["text.txt", "corrupt.png", "corrupt.gif"]
|
2016-04-17 23:57:03 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_gravatar_avatar(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
cordelia = self.example_user("cordelia")
|
2020-03-12 14:17:25 +01:00
|
|
|
cordelia.email = cordelia.delivery_email
|
|
|
|
cordelia.save()
|
2016-07-13 01:56:59 +02:00
|
|
|
|
|
|
|
cordelia.avatar_source = UserProfile.AVATAR_FROM_GRAVATAR
|
|
|
|
cordelia.save()
|
|
|
|
with self.settings(ENABLE_GRAVATAR=True):
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertEqual(redirect_url, str(avatar_url(cordelia)) + "&foo=bar")
|
2016-07-13 01:56:59 +02:00
|
|
|
|
|
|
|
with self.settings(ENABLE_GRAVATAR=False):
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia)) + "&foo=bar"))
|
2016-07-13 01:56:59 +02:00
|
|
|
|
2023-01-25 00:30:24 +01:00
|
|
|
def test_get_settings_avatar(self) -> None:
|
|
|
|
self.login("hamlet")
|
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
cordelia.email = cordelia.delivery_email
|
|
|
|
cordelia.save()
|
|
|
|
with self.settings(
|
|
|
|
ENABLE_GRAVATAR=False, DEFAULT_AVATAR_URI="http://other.server/avatar.svg"
|
|
|
|
):
|
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertEqual(redirect_url, "http://other.server/avatar.svg?version=1&foo=bar")
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_user_avatar(self) -> None:
|
2020-03-10 11:48:26 +01:00
|
|
|
hamlet = self.example_user("hamlet")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-03-12 14:17:25 +01:00
|
|
|
cordelia.email = cordelia.delivery_email
|
|
|
|
cordelia.save()
|
|
|
|
|
2021-03-08 11:54:39 +01:00
|
|
|
internal_realm = get_realm(settings.SYSTEM_BOT_REALM)
|
|
|
|
cross_realm_bot = get_system_bot(settings.WELCOME_BOT, internal_realm.id)
|
2016-07-13 01:56:59 +02:00
|
|
|
|
|
|
|
cordelia.avatar_source = UserProfile.AVATAR_FROM_USER
|
|
|
|
cordelia.save()
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia)) + "&foo=bar"))
|
2016-07-13 01:56:59 +02:00
|
|
|
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia)) + "&foo=bar"))
|
2016-10-24 16:42:43 +02:00
|
|
|
|
2018-04-18 21:40:54 +02:00
|
|
|
response = self.client_get("/avatar/")
|
|
|
|
self.assertEqual(response.status_code, 404)
|
|
|
|
|
2018-08-13 19:09:09 +02:00
|
|
|
self.logout()
|
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
with self.settings(WEB_PUBLIC_STREAMS_ENABLED=False):
|
|
|
|
# Test /avatar/<email_or_id> endpoint with HTTP basic auth.
|
|
|
|
response = self.api_get(hamlet, "/avatar/cordelia@zulip.com", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia)) + "&foo=bar"))
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
response = self.api_get(hamlet, f"/avatar/{cordelia.id}", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia)) + "&foo=bar"))
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
# Test cross_realm_bot avatar access using email.
|
|
|
|
response = self.api_get(hamlet, "/avatar/welcome-bot@zulip.com", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cross_realm_bot)) + "&foo=bar"))
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
# Test cross_realm_bot avatar access using id.
|
|
|
|
response = self.api_get(hamlet, f"/avatar/{cross_realm_bot.id}", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cross_realm_bot)) + "&foo=bar"))
|
|
|
|
|
|
|
|
# Without spectators enabled, no unauthenticated access.
|
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
|
|
|
self.assert_json_error(
|
|
|
|
response,
|
|
|
|
"Not logged in: API authentication or user session required",
|
|
|
|
status_code=401,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Allow unauthenticated/spectator requests by ID.
|
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}", {"foo": "bar"})
|
|
|
|
self.assertEqual(302, response.status_code)
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
# Disallow unauthenticated/spectator requests by email.
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com", {"foo": "bar"})
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_json_error(
|
2021-11-01 12:21:17 +01:00
|
|
|
response,
|
|
|
|
"Not logged in: API authentication or user session required",
|
|
|
|
status_code=401,
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_user_avatar_medium(self) -> None:
|
2020-03-10 11:48:26 +01:00
|
|
|
hamlet = self.example_user("hamlet")
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(hamlet)
|
2021-02-12 08:20:45 +01:00
|
|
|
cordelia = self.example_user("cordelia")
|
2020-03-12 14:17:25 +01:00
|
|
|
cordelia.email = cordelia.delivery_email
|
|
|
|
cordelia.save()
|
2017-02-23 20:13:56 +01:00
|
|
|
|
|
|
|
cordelia.avatar_source = UserProfile.AVATAR_FROM_USER
|
|
|
|
cordelia.save()
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com/medium", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia, True)) + "&foo=bar"))
|
2017-02-23 20:13:56 +01:00
|
|
|
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}/medium", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia, True)) + "&foo=bar"))
|
2017-02-23 20:13:56 +01:00
|
|
|
|
2018-08-13 19:09:09 +02:00
|
|
|
self.logout()
|
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
with self.settings(WEB_PUBLIC_STREAMS_ENABLED=False):
|
|
|
|
# Test /avatar/<email_or_id>/medium endpoint with HTTP basic auth.
|
|
|
|
response = self.api_get(hamlet, "/avatar/cordelia@zulip.com/medium", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia, True)) + "&foo=bar"))
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
response = self.api_get(hamlet, f"/avatar/{cordelia.id}/medium", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(str(avatar_url(cordelia, True)) + "&foo=bar"))
|
|
|
|
|
|
|
|
# Without spectators enabled, no unauthenticated access.
|
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com/medium", {"foo": "bar"})
|
|
|
|
self.assert_json_error(
|
|
|
|
response,
|
|
|
|
"Not logged in: API authentication or user session required",
|
|
|
|
status_code=401,
|
|
|
|
)
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2021-11-01 12:21:17 +01:00
|
|
|
# Allow unauthenticated/spectator requests by ID.
|
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}/medium", {"foo": "bar"})
|
|
|
|
self.assertEqual(302, response.status_code)
|
|
|
|
|
|
|
|
# Disallow unauthenticated/spectator requests by email.
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/cordelia@zulip.com/medium", {"foo": "bar"})
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assert_json_error(
|
2021-11-01 12:21:17 +01:00
|
|
|
response,
|
|
|
|
"Not logged in: API authentication or user session required",
|
|
|
|
status_code=401,
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-13 19:09:09 +02:00
|
|
|
|
2022-03-28 09:42:58 +02:00
|
|
|
with self.settings(RATE_LIMITING=True):
|
|
|
|
# Allow unauthenticated/spectator requests by ID for a reasonable number of requests.
|
|
|
|
add_ratelimit_rule(86400, 1000, domain="spectator_attachment_access_by_file")
|
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}/medium", {"foo": "bar"})
|
|
|
|
self.assertEqual(302, response.status_code)
|
|
|
|
remove_ratelimit_rule(86400, 1000, domain="spectator_attachment_access_by_file")
|
|
|
|
|
|
|
|
# Deny file access since rate limited
|
|
|
|
add_ratelimit_rule(86400, 0, domain="spectator_attachment_access_by_file")
|
|
|
|
response = self.client_get(f"/avatar/{cordelia.id}/medium", {"foo": "bar"})
|
|
|
|
self.assertEqual(429, response.status_code)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_non_valid_user_avatar(self) -> None:
|
2016-07-13 01:56:59 +02:00
|
|
|
# It's debatable whether we should generate avatars for non-users,
|
|
|
|
# but this test just validates the current code's behavior.
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2016-07-13 01:56:59 +02:00
|
|
|
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/avatar/nonexistent_user@zulip.com", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
actual_url = "https://secure.gravatar.com/avatar/444258b521f152129eb0c162996e572d?d=identicon&version=1&foo=bar"
|
2016-07-13 01:56:59 +02:00
|
|
|
self.assertEqual(redirect_url, actual_url)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_valid_avatars(self) -> None:
|
2016-04-17 23:57:03 +02:00
|
|
|
"""
|
2020-10-23 02:43:28 +02:00
|
|
|
A PUT request to /json/users/me/avatar with a valid file should return a URL and actually create an avatar.
|
2016-04-17 23:57:03 +02:00
|
|
|
"""
|
2017-01-28 19:05:20 +01:00
|
|
|
version = 2
|
2016-04-17 23:57:03 +02:00
|
|
|
for fname, rfname in self.correct_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("hamlet")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post("/json/users/me/avatar", {"file": fp})
|
|
|
|
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("avatar_url", response_dict)
|
2022-01-22 03:04:54 +01:00
|
|
|
base = "/user_avatars/"
|
2022-06-07 01:37:01 +02:00
|
|
|
url = self.assert_json_success(result)["avatar_url"]
|
2022-01-22 03:04:54 +01:00
|
|
|
self.assertEqual(base, url[: len(base)])
|
|
|
|
|
|
|
|
if rfname is not None:
|
|
|
|
response = self.client_get(url)
|
|
|
|
assert isinstance(response, StreamingHttpResponse)
|
|
|
|
data = b"".join(response.streaming_content)
|
|
|
|
self.assertEqual(Image.open(io.BytesIO(data)).size, (100, 100))
|
|
|
|
|
|
|
|
# Verify that the medium-size avatar was created
|
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
medium_avatar_disk_path = avatar_disk_path(user_profile, medium=True)
|
|
|
|
self.assertTrue(os.path.exists(medium_avatar_disk_path))
|
|
|
|
|
|
|
|
# Verify that ensure_medium_avatar_url does not overwrite this file if it exists
|
2022-12-14 21:51:37 +01:00
|
|
|
with mock.patch(
|
|
|
|
"zerver.lib.upload.local.write_local_file"
|
|
|
|
) as mock_write_local_file:
|
2022-01-22 03:04:54 +01:00
|
|
|
zerver.lib.upload.upload_backend.ensure_avatar_image(
|
|
|
|
user_profile, is_medium=True
|
|
|
|
)
|
|
|
|
self.assertFalse(mock_write_local_file.called)
|
|
|
|
|
|
|
|
# Confirm that ensure_medium_avatar_url works to recreate
|
|
|
|
# medium size avatars from the original if needed
|
|
|
|
os.remove(medium_avatar_disk_path)
|
|
|
|
self.assertFalse(os.path.exists(medium_avatar_disk_path))
|
2021-03-17 17:54:23 +01:00
|
|
|
zerver.lib.upload.upload_backend.ensure_avatar_image(user_profile, is_medium=True)
|
2022-01-22 03:04:54 +01:00
|
|
|
self.assertTrue(os.path.exists(medium_avatar_disk_path))
|
2016-09-20 21:48:48 +02:00
|
|
|
|
2022-01-22 03:04:54 +01:00
|
|
|
# Verify whether the avatar_version gets incremented with every new upload
|
|
|
|
self.assertEqual(user_profile.avatar_version, version)
|
|
|
|
version += 1
|
2017-01-28 19:05:20 +01:00
|
|
|
|
2018-06-06 14:30:26 +02:00
|
|
|
def test_copy_avatar_image(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
with get_test_image_file("img.png") as image_file:
|
|
|
|
self.client_post("/json/users/me/avatar", {"file": image_file})
|
2018-06-06 14:30:26 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
source_user_profile = self.example_user("hamlet")
|
|
|
|
target_user_profile = self.example_user("iago")
|
2018-06-06 14:30:26 +02:00
|
|
|
|
2021-06-29 18:08:42 +02:00
|
|
|
copy_default_settings(source_user_profile, target_user_profile)
|
2018-06-06 14:30:26 +02:00
|
|
|
|
|
|
|
source_path_id = avatar_disk_path(source_user_profile)
|
|
|
|
target_path_id = avatar_disk_path(target_user_profile)
|
|
|
|
self.assertNotEqual(source_path_id, target_path_id)
|
2020-10-24 09:33:54 +02:00
|
|
|
with open(source_path_id, "rb") as source, open(target_path_id, "rb") as target:
|
|
|
|
self.assertEqual(source.read(), target.read())
|
2018-06-06 14:30:26 +02:00
|
|
|
|
|
|
|
source_original_path_id = avatar_disk_path(source_user_profile, original=True)
|
|
|
|
target_original_path_id = avatar_disk_path(target_user_profile, original=True)
|
2021-02-12 08:19:30 +01:00
|
|
|
with open(source_original_path_id, "rb") as source, open(
|
|
|
|
target_original_path_id, "rb"
|
|
|
|
) as target:
|
2020-10-24 09:33:54 +02:00
|
|
|
self.assertEqual(source.read(), target.read())
|
2018-06-06 14:30:26 +02:00
|
|
|
|
|
|
|
source_medium_path_id = avatar_disk_path(source_user_profile, medium=True)
|
|
|
|
target_medium_path_id = avatar_disk_path(target_user_profile, medium=True)
|
2021-02-12 08:19:30 +01:00
|
|
|
with open(source_medium_path_id, "rb") as source, open(
|
|
|
|
target_medium_path_id, "rb"
|
|
|
|
) as target:
|
2020-10-24 09:33:54 +02:00
|
|
|
self.assertEqual(source.read(), target.read())
|
2018-06-06 14:30:26 +02:00
|
|
|
|
2018-09-07 17:44:40 +02:00
|
|
|
def test_delete_avatar_image(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
with get_test_image_file("img.png") as image_file:
|
|
|
|
self.client_post("/json/users/me/avatar", {"file": image_file})
|
2018-09-07 17:44:40 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
user = self.example_user("hamlet")
|
2018-09-07 17:44:40 +02:00
|
|
|
|
|
|
|
avatar_path_id = avatar_disk_path(user)
|
|
|
|
avatar_original_path_id = avatar_disk_path(user, original=True)
|
|
|
|
avatar_medium_path_id = avatar_disk_path(user, medium=True)
|
|
|
|
|
|
|
|
self.assertEqual(user.avatar_source, UserProfile.AVATAR_FROM_USER)
|
|
|
|
self.assertTrue(os.path.isfile(avatar_path_id))
|
|
|
|
self.assertTrue(os.path.isfile(avatar_original_path_id))
|
|
|
|
self.assertTrue(os.path.isfile(avatar_medium_path_id))
|
|
|
|
|
2022-04-14 23:49:26 +02:00
|
|
|
do_delete_avatar_image(user, acting_user=user)
|
2018-09-07 17:44:40 +02:00
|
|
|
|
|
|
|
self.assertEqual(user.avatar_source, UserProfile.AVATAR_FROM_GRAVATAR)
|
|
|
|
self.assertFalse(os.path.isfile(avatar_path_id))
|
|
|
|
self.assertFalse(os.path.isfile(avatar_original_path_id))
|
|
|
|
self.assertFalse(os.path.isfile(avatar_medium_path_id))
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_invalid_avatars(self) -> None:
|
2016-04-17 23:57:03 +02:00
|
|
|
"""
|
2016-12-21 18:34:03 +01:00
|
|
|
A PUT request to /json/users/me/avatar with an invalid file should fail.
|
2016-04-17 23:57:03 +02:00
|
|
|
"""
|
|
|
|
for fname in self.corrupt_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("hamlet")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post("/json/users/me/avatar", {"file": fp})
|
2016-04-17 23:57:03 +02:00
|
|
|
|
2022-01-22 03:04:54 +01:00
|
|
|
self.assert_json_error(
|
|
|
|
result, "Could not decode image; did you upload an image file?"
|
|
|
|
)
|
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
self.assertEqual(user_profile.avatar_version, 1)
|
2016-04-17 23:57:03 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_delete_avatar(self) -> None:
|
2016-12-21 18:34:03 +01:00
|
|
|
"""
|
2019-03-09 17:43:48 +01:00
|
|
|
A DELETE request to /json/users/me/avatar should delete the profile picture and return gravatar URL
|
2016-12-21 18:34:03 +01:00
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("cordelia")
|
2019-04-23 04:51:04 +02:00
|
|
|
cordelia = self.example_user("cordelia")
|
|
|
|
cordelia.avatar_source = UserProfile.AVATAR_FROM_USER
|
|
|
|
cordelia.save()
|
|
|
|
|
2021-03-01 11:33:24 +01:00
|
|
|
do_set_realm_property(cordelia.realm, "avatar_changes_disabled", True, acting_user=None)
|
2019-04-23 04:51:04 +02:00
|
|
|
result = self.client_delete("/json/users/me/avatar")
|
|
|
|
self.assert_json_error(result, "Avatar changes are disabled in this organization.", 400)
|
2016-12-21 18:34:03 +01:00
|
|
|
|
2021-03-01 11:33:24 +01:00
|
|
|
do_set_realm_property(cordelia.realm, "avatar_changes_disabled", False, acting_user=None)
|
2016-12-21 18:34:03 +01:00
|
|
|
result = self.client_delete("/json/users/me/avatar")
|
2019-04-23 04:51:04 +02:00
|
|
|
user_profile = self.example_user("cordelia")
|
2016-12-21 18:34:03 +01:00
|
|
|
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("avatar_url", response_dict)
|
|
|
|
self.assertEqual(response_dict["avatar_url"], avatar_url(user_profile))
|
2016-12-21 18:34:03 +01:00
|
|
|
|
|
|
|
self.assertEqual(user_profile.avatar_source, UserProfile.AVATAR_FROM_GRAVATAR)
|
2017-01-28 19:05:20 +01:00
|
|
|
self.assertEqual(user_profile.avatar_version, 2)
|
2016-12-21 18:34:03 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_avatar_upload_file_size_error(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2017-03-06 06:22:28 +01:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-05-29 08:51:07 +02:00
|
|
|
with self.settings(MAX_AVATAR_FILE_SIZE_MIB=0):
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/users/me/avatar", {"file": fp})
|
2020-06-15 23:22:24 +02:00
|
|
|
self.assert_json_error(result, "Uploaded file is larger than the allowed limit of 0 MiB")
|
2017-03-06 06:22:28 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-04-15 13:20:36 +02:00
|
|
|
class EmojiTest(UploadSerializeMixin, ZulipTestCase):
|
2018-07-17 20:27:09 +02:00
|
|
|
# While testing GIF resizing, we can't test if the final GIF has the same
|
|
|
|
# number of frames as the original one because PIL drops duplicate frames
|
|
|
|
# with a corresponding increase in the duration of the previous frame.
|
2018-04-15 13:20:36 +02:00
|
|
|
def test_resize_emoji(self) -> None:
|
|
|
|
# Test unequal width and height of animated GIF image
|
2022-01-13 23:24:16 +01:00
|
|
|
animated_unequal_img_data = read_test_image_file("animated_unequal_img.gif")
|
2021-08-12 10:19:53 +02:00
|
|
|
resized_img_data, is_animated, still_img_data = resize_emoji(
|
|
|
|
animated_unequal_img_data, size=50
|
|
|
|
)
|
2018-07-17 20:27:09 +02:00
|
|
|
im = Image.open(io.BytesIO(resized_img_data))
|
|
|
|
self.assertEqual((50, 50), im.size)
|
2021-08-12 10:19:53 +02:00
|
|
|
self.assertTrue(is_animated)
|
|
|
|
assert still_img_data is not None
|
|
|
|
still_image = Image.open(io.BytesIO(still_img_data))
|
|
|
|
self.assertEqual((50, 50), still_image.size)
|
2018-04-15 13:20:36 +02:00
|
|
|
|
|
|
|
# Test corrupt image exception
|
2022-01-13 23:24:16 +01:00
|
|
|
corrupted_img_data = read_test_image_file("corrupt.gif")
|
2018-04-15 13:20:36 +02:00
|
|
|
with self.assertRaises(BadImageError):
|
|
|
|
resize_emoji(corrupted_img_data)
|
|
|
|
|
2022-02-17 01:07:58 +01:00
|
|
|
for img_format in ("gif", "png"):
|
|
|
|
animated_large_img_data = read_test_image_file(f"animated_large_img.{img_format}")
|
2022-02-17 01:04:51 +01:00
|
|
|
|
2022-02-17 01:07:58 +01:00
|
|
|
def test_resize(size: int = 50) -> None:
|
|
|
|
resized_img_data, is_animated, still_img_data = resize_emoji(
|
|
|
|
animated_large_img_data, size=50
|
|
|
|
)
|
|
|
|
im = Image.open(io.BytesIO(resized_img_data))
|
|
|
|
self.assertEqual((size, size), im.size)
|
|
|
|
self.assertTrue(is_animated)
|
|
|
|
assert still_img_data
|
|
|
|
still_image = Image.open(io.BytesIO(still_img_data))
|
|
|
|
self.assertEqual((50, 50), still_image.size)
|
|
|
|
|
|
|
|
# Test an image larger than max is resized
|
2022-12-14 21:51:37 +01:00
|
|
|
with patch("zerver.lib.upload.base.MAX_EMOJI_GIF_SIZE", 128):
|
2022-02-17 01:07:58 +01:00
|
|
|
test_resize()
|
|
|
|
|
|
|
|
# Test an image file larger than max is resized
|
2022-12-14 21:51:37 +01:00
|
|
|
with patch("zerver.lib.upload.base.MAX_EMOJI_GIF_FILE_SIZE_BYTES", 3 * 1024 * 1024):
|
2022-02-17 01:07:58 +01:00
|
|
|
test_resize()
|
|
|
|
|
|
|
|
# Test an image smaller than max and smaller than file size max is not resized
|
2022-12-14 21:51:37 +01:00
|
|
|
with patch("zerver.lib.upload.base.MAX_EMOJI_GIF_SIZE", 512):
|
2022-02-17 01:07:58 +01:00
|
|
|
test_resize(size=256)
|
|
|
|
|
|
|
|
# Test a non-animated GIF image which does need to be resized
|
upload: Fix resizing non-animated images.
5dab6e9d31be began honoring the list of disposals for every frame.
Unfortunately, passing a list of disposals for a non-animated image
raises an exception:
```
File "zerver/lib/upload.py", line 212, in resize_emoji
image_data = resize_gif(im, size)
File "zerver/lib/upload.py", line 165, in resize_gif
frames[0].save(
File "[...]/PIL/Image.py", line 2212, in save
save_handler(self, fp, filename)
File "[...]/PIL/GifImagePlugin.py", line 605, in _save
_write_single_frame(im, fp, palette)
File "[...]/PIL/GifImagePlugin.py", line 506, in _write_single_frame
_write_local_header(fp, im, (0, 0), flags)
File "[...]/PIL/GifImagePlugin.py", line 647, in _write_local_header
disposal = int(im.encoderinfo.get("disposal", 0))
TypeError: int() argument must be a string, a bytes-like object or a
number, not 'list'
```
`check_add_realm_emoji` calls this as:
```
try:
is_animated = upload_emoji_image(image_file, emoji_file_name, a
uthor)
emoji_uploaded_successfully = True
finally:
if not emoji_uploaded_successfully:
realm_emoji.delete()
return None
# ...
```
This is equivalent to dropping _all_ exceptions silently. As such,
Zulip has silently rejected all non-animated images larger than 64x64
since 5dab6e9d31be.
Adjust to only pass a single disposal if there are no additional
frames. Add a test for non-animated images, which requires also
fixing the incidental bug that all GIF images were being recorded as
animated, regardless of if they had more than 1 frame or not.
2022-02-16 23:26:31 +01:00
|
|
|
still_large_img_data = read_test_image_file("still_large_img.gif")
|
|
|
|
resized_img_data, is_animated, no_still_data = resize_emoji(still_large_img_data, size=50)
|
2022-02-17 01:07:58 +01:00
|
|
|
im = Image.open(io.BytesIO(resized_img_data))
|
|
|
|
self.assertEqual((50, 50), im.size)
|
|
|
|
self.assertFalse(is_animated)
|
|
|
|
assert no_still_data is None
|
|
|
|
|
|
|
|
# Test a non-animated and non-animatable image format which needs to be resized
|
|
|
|
still_large_img_data = read_test_image_file("img.jpg")
|
|
|
|
resized_img_data, is_animated, no_still_data = resize_emoji(still_large_img_data, size=50)
|
upload: Fix resizing non-animated images.
5dab6e9d31be began honoring the list of disposals for every frame.
Unfortunately, passing a list of disposals for a non-animated image
raises an exception:
```
File "zerver/lib/upload.py", line 212, in resize_emoji
image_data = resize_gif(im, size)
File "zerver/lib/upload.py", line 165, in resize_gif
frames[0].save(
File "[...]/PIL/Image.py", line 2212, in save
save_handler(self, fp, filename)
File "[...]/PIL/GifImagePlugin.py", line 605, in _save
_write_single_frame(im, fp, palette)
File "[...]/PIL/GifImagePlugin.py", line 506, in _write_single_frame
_write_local_header(fp, im, (0, 0), flags)
File "[...]/PIL/GifImagePlugin.py", line 647, in _write_local_header
disposal = int(im.encoderinfo.get("disposal", 0))
TypeError: int() argument must be a string, a bytes-like object or a
number, not 'list'
```
`check_add_realm_emoji` calls this as:
```
try:
is_animated = upload_emoji_image(image_file, emoji_file_name, a
uthor)
emoji_uploaded_successfully = True
finally:
if not emoji_uploaded_successfully:
realm_emoji.delete()
return None
# ...
```
This is equivalent to dropping _all_ exceptions silently. As such,
Zulip has silently rejected all non-animated images larger than 64x64
since 5dab6e9d31be.
Adjust to only pass a single disposal if there are no additional
frames. Add a test for non-animated images, which requires also
fixing the incidental bug that all GIF images were being recorded as
animated, regardless of if they had more than 1 frame or not.
2022-02-16 23:26:31 +01:00
|
|
|
im = Image.open(io.BytesIO(resized_img_data))
|
|
|
|
self.assertEqual((50, 50), im.size)
|
|
|
|
self.assertFalse(is_animated)
|
|
|
|
assert no_still_data is None
|
|
|
|
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
class RealmIconTest(UploadSerializeMixin, ZulipTestCase):
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_multiple_upload_failure(self) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
"""
|
|
|
|
Attempting to upload two files should fail.
|
|
|
|
"""
|
|
|
|
# Log in as admin
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file("img.png") as fp1, get_test_image_file("img.png") as fp2:
|
|
|
|
result = self.client_post("/json/realm/icon", {"f1": fp1, "f2": fp2})
|
2017-02-21 03:41:20 +01:00
|
|
|
self.assert_json_error(result, "You must upload exactly one icon.")
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_no_file_upload_failure(self) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
"""
|
|
|
|
Calling this endpoint with no files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-07-05 19:02:54 +02:00
|
|
|
result = self.client_post("/json/realm/icon")
|
2017-02-21 03:41:20 +01:00
|
|
|
self.assert_json_error(result, "You must upload exactly one icon.")
|
|
|
|
|
|
|
|
correct_files = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("img.png", "png_resized.png"),
|
|
|
|
("img.jpg", None), # jpeg resizing is platform-dependent
|
|
|
|
("img.gif", "gif_resized.png"),
|
|
|
|
("img.tif", "tif_resized.png"),
|
|
|
|
("cmyk.jpg", None),
|
2017-02-21 03:41:20 +01:00
|
|
|
]
|
2021-02-12 08:20:45 +01:00
|
|
|
corrupt_files = ["text.txt", "corrupt.png", "corrupt.gif"]
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_no_admin_user_upload(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2017-02-21 03:41:20 +01:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/realm/icon", {"file": fp})
|
|
|
|
self.assert_json_error(result, "Must be an organization administrator")
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_get_gravatar_icon(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
|
|
|
realm = get_realm("zulip")
|
2021-04-08 10:42:55 +02:00
|
|
|
do_change_icon_source(realm, Realm.ICON_FROM_GRAVATAR, acting_user=None)
|
2017-02-21 03:41:20 +01:00
|
|
|
with self.settings(ENABLE_GRAVATAR=True):
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/json/realm/icon", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertEqual(redirect_url, realm_icon_url(realm) + "&foo=bar")
|
2017-02-21 03:41:20 +01:00
|
|
|
|
|
|
|
with self.settings(ENABLE_GRAVATAR=False):
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/json/realm/icon", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(realm_icon_url(realm) + "&foo=bar"))
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2023-01-25 00:30:24 +01:00
|
|
|
def test_get_settings_realm_icon(self) -> None:
|
|
|
|
self.login("hamlet")
|
|
|
|
with self.settings(
|
|
|
|
ENABLE_GRAVATAR=False, DEFAULT_AVATAR_URI="http://other.server/icon.svg"
|
|
|
|
):
|
|
|
|
response = self.client_get("/json/realm/icon", {"foo": "bar"})
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertEqual(redirect_url, "http://other.server/icon.svg?foo=bar")
|
|
|
|
|
|
|
|
def test_get_uploaded_realm_icon(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
realm = get_realm("zulip")
|
2021-04-08 10:42:55 +02:00
|
|
|
do_change_icon_source(realm, Realm.ICON_UPLOADED, acting_user=None)
|
2020-09-13 00:11:30 +02:00
|
|
|
response = self.client_get("/json/realm/icon", {"foo": "bar"})
|
2021-02-12 08:20:45 +01:00
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertTrue(redirect_url.endswith(realm_icon_url(realm) + "&foo=bar"))
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_valid_icons(self) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
"""
|
2020-10-23 02:43:28 +02:00
|
|
|
A PUT request to /json/realm/icon with a valid file should return a URL
|
2017-02-21 03:41:20 +01:00
|
|
|
and actually create an realm icon.
|
|
|
|
"""
|
|
|
|
for fname, rfname in self.correct_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post("/json/realm/icon", {"file": fp})
|
|
|
|
realm = get_realm("zulip")
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("icon_url", response_dict)
|
2022-01-22 03:04:54 +01:00
|
|
|
base = f"/user_avatars/{realm.id}/realm/icon.png"
|
2022-06-07 01:37:01 +02:00
|
|
|
url = response_dict["icon_url"]
|
2022-01-22 03:04:54 +01:00
|
|
|
self.assertEqual(base, url[: len(base)])
|
|
|
|
|
|
|
|
if rfname is not None:
|
|
|
|
response = self.client_get(url)
|
|
|
|
assert isinstance(response, StreamingHttpResponse)
|
|
|
|
data = b"".join(response.streaming_content)
|
|
|
|
self.assertEqual(Image.open(io.BytesIO(data)).size, (100, 100))
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_invalid_icons(self) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
"""
|
|
|
|
A PUT request to /json/realm/icon with an invalid file should fail.
|
|
|
|
"""
|
|
|
|
for fname in self.corrupt_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post("/json/realm/icon", {"file": fp})
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2022-01-22 03:04:54 +01:00
|
|
|
self.assert_json_error(
|
|
|
|
result, "Could not decode image; did you upload an image file?"
|
|
|
|
)
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_delete_icon(self) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
"""
|
|
|
|
A DELETE request to /json/realm/icon should delete the realm icon and return gravatar URL
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
|
|
|
realm = get_realm("zulip")
|
2021-04-08 10:42:55 +02:00
|
|
|
do_change_icon_source(realm, Realm.ICON_UPLOADED, acting_user=None)
|
2017-02-21 03:41:20 +01:00
|
|
|
|
|
|
|
result = self.client_delete("/json/realm/icon")
|
|
|
|
|
2022-06-07 01:37:01 +02:00
|
|
|
response_dict = self.assert_json_success(result)
|
|
|
|
self.assertIn("icon_url", response_dict)
|
2021-02-12 08:20:45 +01:00
|
|
|
realm = get_realm("zulip")
|
2022-06-07 01:37:01 +02:00
|
|
|
self.assertEqual(response_dict["icon_url"], realm_icon_url(realm))
|
2017-02-21 03:41:20 +01:00
|
|
|
self.assertEqual(realm.icon_source, Realm.ICON_FROM_GRAVATAR)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_realm_icon_version(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
|
|
|
realm = get_realm("zulip")
|
2017-02-21 03:41:20 +01:00
|
|
|
icon_version = realm.icon_version
|
|
|
|
self.assertEqual(icon_version, 1)
|
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.client_post("/json/realm/icon", {"file": fp})
|
|
|
|
realm = get_realm("zulip")
|
2017-02-21 03:41:20 +01:00
|
|
|
self.assertEqual(realm.icon_version, icon_version + 1)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_realm_icon_upload_file_size_error(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2017-03-06 06:22:28 +01:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-05-29 08:55:34 +02:00
|
|
|
with self.settings(MAX_ICON_FILE_SIZE_MIB=0):
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/realm/icon", {"file": fp})
|
2020-06-15 23:22:24 +02:00
|
|
|
self.assert_json_error(result, "Uploaded file is larger than the allowed limit of 0 MiB")
|
2017-03-06 06:22:28 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-08-16 01:26:55 +02:00
|
|
|
class RealmLogoTest(UploadSerializeMixin, ZulipTestCase):
|
2019-01-27 08:25:10 +01:00
|
|
|
night = False
|
2018-08-16 01:26:55 +02:00
|
|
|
|
|
|
|
def test_multiple_upload_failure(self) -> None:
|
|
|
|
"""
|
|
|
|
Attempting to upload two files should fail.
|
|
|
|
"""
|
|
|
|
# Log in as admin
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file("img.png") as fp1, get_test_image_file("img.png") as fp2:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
|
|
|
"/json/realm/logo",
|
2021-02-12 08:20:45 +01:00
|
|
|
{"f1": fp1, "f2": fp2, "night": orjson.dumps(self.night).decode()},
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-16 01:26:55 +02:00
|
|
|
self.assert_json_error(result, "You must upload exactly one logo.")
|
|
|
|
|
|
|
|
def test_no_file_upload_failure(self) -> None:
|
|
|
|
"""
|
|
|
|
Calling this endpoint with no files should fail.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post("/json/realm/logo", {"night": orjson.dumps(self.night).decode()})
|
2018-08-16 01:26:55 +02:00
|
|
|
self.assert_json_error(result, "You must upload exactly one logo.")
|
|
|
|
|
|
|
|
correct_files = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("img.png", "png_resized.png"),
|
|
|
|
("img.jpg", None), # jpeg resizing is platform-dependent
|
|
|
|
("img.gif", "gif_resized.png"),
|
|
|
|
("img.tif", "tif_resized.png"),
|
|
|
|
("cmyk.jpg", None),
|
2018-08-16 01:26:55 +02:00
|
|
|
]
|
2021-02-12 08:20:45 +01:00
|
|
|
corrupt_files = ["text.txt", "corrupt.png", "corrupt.gif"]
|
2018-08-16 01:26:55 +02:00
|
|
|
|
|
|
|
def test_no_admin_user_upload(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("hamlet")
|
2018-08-16 01:26:55 +02:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
2021-02-12 08:20:45 +01:00
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assert_json_error(result, "Must be an organization administrator")
|
2018-08-16 01:26:55 +02:00
|
|
|
|
|
|
|
def test_upload_limited_plan_type(self) -> None:
|
|
|
|
user_profile = self.example_user("iago")
|
2021-12-01 02:10:40 +01:00
|
|
|
do_change_realm_plan_type(user_profile.realm, Realm.PLAN_TYPE_LIMITED, acting_user=None)
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user_profile)
|
2018-08-16 01:26:55 +02:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
2021-02-12 08:20:45 +01:00
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2022-02-05 08:29:54 +01:00
|
|
|
self.assert_json_error(result, "Available on Zulip Cloud Standard. Upgrade to access.")
|
2018-08-16 01:26:55 +02:00
|
|
|
|
|
|
|
def test_get_default_logo(self) -> None:
|
2020-06-29 12:35:58 +02:00
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
self.login_user(user_profile)
|
|
|
|
realm = user_profile.realm
|
|
|
|
do_change_logo_source(realm, Realm.LOGO_DEFAULT, self.night, acting_user=user_profile)
|
2021-02-12 08:20:45 +01:00
|
|
|
response = self.client_get("/json/realm/logo", {"night": orjson.dumps(self.night).decode()})
|
|
|
|
redirect_url = response["Location"]
|
2020-06-08 11:53:24 +02:00
|
|
|
is_night_str = str(self.night).lower()
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
2023-01-25 00:30:24 +01:00
|
|
|
redirect_url,
|
|
|
|
f"http://testserver/static/images/logo/zulip-org-logo.svg?version=0&night={is_night_str}",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2023-01-25 00:30:24 +01:00
|
|
|
def test_get_settings_logo(self) -> None:
|
|
|
|
self.login("hamlet")
|
|
|
|
with self.settings(DEFAULT_LOGO_URI="http://other.server/logo.svg"):
|
|
|
|
response = self.client_get(
|
|
|
|
"/json/realm/logo", {"night": orjson.dumps(self.night).decode()}
|
|
|
|
)
|
|
|
|
redirect_url = response["Location"]
|
|
|
|
self.assertEqual(
|
|
|
|
redirect_url,
|
|
|
|
f"http://other.server/logo.svg?night={str(self.night).lower()}",
|
|
|
|
)
|
|
|
|
|
2020-06-29 12:35:58 +02:00
|
|
|
def test_get_realm_logo(self) -> None:
|
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
self.login_user(user_profile)
|
|
|
|
realm = user_profile.realm
|
|
|
|
do_change_logo_source(realm, Realm.LOGO_UPLOADED, self.night, acting_user=user_profile)
|
2021-02-12 08:20:45 +01:00
|
|
|
response = self.client_get("/json/realm/logo", {"night": orjson.dumps(self.night).decode()})
|
|
|
|
redirect_url = response["Location"]
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertTrue(
|
|
|
|
redirect_url.endswith(
|
2021-02-12 08:20:45 +01:00
|
|
|
get_realm_logo_url(realm, self.night) + f"&night={str(self.night).lower()}"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2020-06-08 11:53:24 +02:00
|
|
|
is_night_str = str(self.night).lower()
|
|
|
|
|
|
|
|
if self.night:
|
|
|
|
file_name = "night_logo.png"
|
|
|
|
else:
|
|
|
|
file_name = "logo.png"
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
|
|
|
redirect_url,
|
|
|
|
f"/user_avatars/{realm.id}/realm/{file_name}?version=2&night={is_night_str}",
|
|
|
|
)
|
2020-06-08 11:53:24 +02:00
|
|
|
|
2021-12-01 02:10:40 +01:00
|
|
|
do_change_realm_plan_type(realm, Realm.PLAN_TYPE_LIMITED, acting_user=user_profile)
|
2020-06-08 11:53:24 +02:00
|
|
|
if self.night:
|
|
|
|
self.assertEqual(realm.night_logo_source, Realm.LOGO_UPLOADED)
|
|
|
|
else:
|
|
|
|
self.assertEqual(realm.logo_source, Realm.LOGO_UPLOADED)
|
2021-02-12 08:20:45 +01:00
|
|
|
response = self.client_get("/json/realm/logo", {"night": orjson.dumps(self.night).decode()})
|
|
|
|
redirect_url = response["Location"]
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
2023-01-25 00:30:24 +01:00
|
|
|
redirect_url,
|
|
|
|
f"http://testserver/static/images/logo/zulip-org-logo.svg?version=0&night={is_night_str}",
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2020-06-08 11:53:24 +02:00
|
|
|
|
2018-08-16 01:26:55 +02:00
|
|
|
def test_valid_logos(self) -> None:
|
|
|
|
"""
|
2020-10-23 02:43:28 +02:00
|
|
|
A PUT request to /json/realm/logo with a valid file should return a URL
|
2018-08-16 01:26:55 +02:00
|
|
|
and actually create an realm logo.
|
|
|
|
"""
|
|
|
|
for fname, rfname in self.correct_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post(
|
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
|
|
|
)
|
|
|
|
realm = get_realm("zulip")
|
|
|
|
self.assert_json_success(result)
|
|
|
|
logo_url = get_realm_logo_url(realm, self.night)
|
|
|
|
|
|
|
|
if rfname is not None:
|
|
|
|
response = self.client_get(logo_url)
|
|
|
|
assert isinstance(response, StreamingHttpResponse)
|
|
|
|
data = b"".join(response.streaming_content)
|
|
|
|
# size should be 100 x 100 because thumbnail keeps aspect ratio
|
|
|
|
# while trying to fit in a 800 x 100 box without losing part of the image
|
|
|
|
self.assertEqual(Image.open(io.BytesIO(data)).size, (100, 100))
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
def test_invalid_logo_upload(self) -> None:
|
2018-08-16 01:26:55 +02:00
|
|
|
"""
|
|
|
|
A PUT request to /json/realm/logo with an invalid file should fail.
|
|
|
|
"""
|
|
|
|
for fname in self.corrupt_files:
|
2022-01-22 03:04:54 +01:00
|
|
|
with self.subTest(fname=fname):
|
|
|
|
self.login("iago")
|
|
|
|
with get_test_image_file(fname) as fp:
|
|
|
|
result = self.client_post(
|
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assert_json_error(
|
|
|
|
result, "Could not decode image; did you upload an image file?"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
|
|
|
def test_delete_logo(self) -> None:
|
|
|
|
"""
|
|
|
|
A DELETE request to /json/realm/logo should delete the realm logo and return gravatar URL
|
|
|
|
"""
|
2020-06-29 12:35:58 +02:00
|
|
|
user_profile = self.example_user("iago")
|
|
|
|
self.login_user(user_profile)
|
|
|
|
realm = user_profile.realm
|
|
|
|
do_change_logo_source(realm, Realm.LOGO_UPLOADED, self.night, acting_user=user_profile)
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_delete(
|
2021-02-12 08:20:45 +01:00
|
|
|
"/json/realm/logo", {"night": orjson.dumps(self.night).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-08-16 01:26:55 +02:00
|
|
|
self.assert_json_success(result)
|
2021-02-12 08:20:45 +01:00
|
|
|
realm = get_realm("zulip")
|
2019-01-27 08:25:10 +01:00
|
|
|
if self.night:
|
|
|
|
self.assertEqual(realm.night_logo_source, Realm.LOGO_DEFAULT)
|
|
|
|
else:
|
|
|
|
self.assertEqual(realm.logo_source, Realm.LOGO_DEFAULT)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
def test_logo_version(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
|
|
|
realm = get_realm("zulip")
|
2019-01-27 08:25:10 +01:00
|
|
|
if self.night:
|
|
|
|
version = realm.night_logo_version
|
|
|
|
else:
|
|
|
|
version = realm.logo_version
|
|
|
|
self.assertEqual(version, 1)
|
2018-08-16 01:26:55 +02:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.client_post(
|
2021-02-12 08:20:45 +01:00
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
realm = get_realm("zulip")
|
2019-01-27 08:25:10 +01:00
|
|
|
if self.night:
|
|
|
|
self.assertEqual(realm.night_logo_version, version + 1)
|
|
|
|
else:
|
|
|
|
self.assertEqual(realm.logo_version, version + 1)
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
def test_logo_upload_file_size_error(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2018-08-16 01:26:55 +02:00
|
|
|
with get_test_image_file(self.correct_files[0][0]) as fp:
|
2021-05-29 08:59:21 +02:00
|
|
|
with self.settings(MAX_LOGO_FILE_SIZE_MIB=0):
|
2021-02-12 08:19:30 +01:00
|
|
|
result = self.client_post(
|
2021-02-12 08:20:45 +01:00
|
|
|
"/json/realm/logo", {"file": fp, "night": orjson.dumps(self.night).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2020-06-15 23:22:24 +02:00
|
|
|
self.assert_json_error(result, "Uploaded file is larger than the allowed limit of 0 MiB")
|
2018-08-16 01:26:55 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-01-27 08:25:10 +01:00
|
|
|
class RealmNightLogoTest(RealmLogoTest):
|
2021-11-26 08:32:40 +01:00
|
|
|
# Run the same tests as for RealmLogoTest, just with dark theme enabled
|
2019-01-27 08:25:10 +01:00
|
|
|
night = True
|
|
|
|
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2020-07-01 04:19:54 +02:00
|
|
|
class SanitizeNameTests(ZulipTestCase):
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_file_name(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.assertEqual(sanitize_name("test.txt"), "test.txt")
|
|
|
|
self.assertEqual(sanitize_name(".hidden"), ".hidden")
|
|
|
|
self.assertEqual(sanitize_name(".hidden.txt"), ".hidden.txt")
|
|
|
|
self.assertEqual(sanitize_name("tarball.tar.gz"), "tarball.tar.gz")
|
|
|
|
self.assertEqual(sanitize_name(".hidden_tarball.tar.gz"), ".hidden_tarball.tar.gz")
|
|
|
|
self.assertEqual(sanitize_name("Testing{}*&*#().ta&&%$##&&r.gz"), "Testing.tar.gz")
|
|
|
|
self.assertEqual(sanitize_name("*testingfile?*.txt"), "testingfile.txt")
|
|
|
|
self.assertEqual(sanitize_name("snowman☃.txt"), "snowman.txt")
|
|
|
|
self.assertEqual(sanitize_name("테스트.txt"), "테스트.txt")
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
2021-02-12 08:20:45 +01:00
|
|
|
sanitize_name('~/."\\`\\?*"u0`000ssh/test.t**{}ar.gz'), ".u0000sshtest.tar.gz"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-05-14 21:33:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
class UploadSpaceTests(UploadSerializeMixin, ZulipTestCase):
|
|
|
|
def setUp(self) -> None:
|
2019-10-19 20:47:00 +02:00
|
|
|
super().setUp()
|
2018-05-14 21:33:51 +02:00
|
|
|
self.realm = get_realm("zulip")
|
2021-02-12 08:20:45 +01:00
|
|
|
self.user_profile = self.example_user("hamlet")
|
2018-05-14 21:33:51 +02:00
|
|
|
|
|
|
|
def test_currently_used_upload_space(self) -> None:
|
2019-01-14 07:46:31 +01:00
|
|
|
self.assertEqual(None, cache_get(get_realm_used_upload_space_cache_key(self.realm)))
|
2019-01-11 13:41:52 +01:00
|
|
|
self.assertEqual(0, self.realm.currently_used_upload_space_bytes())
|
2019-01-14 07:46:31 +01:00
|
|
|
self.assertEqual(0, cache_get(get_realm_used_upload_space_cache_key(self.realm))[0])
|
2018-05-14 21:33:51 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
data = b"zulip!"
|
2023-02-28 03:46:41 +01:00
|
|
|
upload_message_attachment("dummy.txt", len(data), "text/plain", data, self.user_profile)
|
2019-01-17 12:05:09 +01:00
|
|
|
# notify_attachment_update function calls currently_used_upload_space_bytes which
|
|
|
|
# updates the cache.
|
2021-05-17 05:41:32 +02:00
|
|
|
self.assert_length(data, cache_get(get_realm_used_upload_space_cache_key(self.realm))[0])
|
|
|
|
self.assert_length(data, self.realm.currently_used_upload_space_bytes())
|
2018-05-14 21:33:51 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
data2 = b"more-data!"
|
2023-02-28 03:46:41 +01:00
|
|
|
upload_message_attachment("dummy2.txt", len(data2), "text/plain", data2, self.user_profile)
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
|
|
|
len(data) + len(data2), cache_get(get_realm_used_upload_space_cache_key(self.realm))[0]
|
|
|
|
)
|
2019-01-17 12:05:09 +01:00
|
|
|
self.assertEqual(len(data) + len(data2), self.realm.currently_used_upload_space_bytes())
|
2019-01-14 07:46:31 +01:00
|
|
|
|
|
|
|
attachment = Attachment.objects.get(file_name="dummy.txt")
|
|
|
|
attachment.file_name = "dummy1.txt"
|
|
|
|
attachment.save(update_fields=["file_name"])
|
2021-02-12 08:19:30 +01:00
|
|
|
self.assertEqual(
|
|
|
|
len(data) + len(data2), cache_get(get_realm_used_upload_space_cache_key(self.realm))[0]
|
|
|
|
)
|
2019-01-14 07:46:31 +01:00
|
|
|
self.assertEqual(len(data) + len(data2), self.realm.currently_used_upload_space_bytes())
|
|
|
|
|
|
|
|
attachment.delete()
|
|
|
|
self.assertEqual(None, cache_get(get_realm_used_upload_space_cache_key(self.realm)))
|
2021-05-17 05:41:32 +02:00
|
|
|
self.assert_length(data2, self.realm.currently_used_upload_space_bytes())
|
2019-01-17 12:04:54 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-01-13 07:27:30 +01:00
|
|
|
class DecompressionBombTests(ZulipTestCase):
|
|
|
|
def setUp(self) -> None:
|
2019-10-19 20:47:00 +02:00
|
|
|
super().setUp()
|
2022-02-17 00:01:27 +01:00
|
|
|
self.test_urls = [
|
|
|
|
"/json/users/me/avatar",
|
|
|
|
"/json/realm/logo",
|
|
|
|
"/json/realm/icon",
|
|
|
|
"/json/realm/emoji/bomb_emoji",
|
|
|
|
]
|
2019-01-13 07:27:30 +01:00
|
|
|
|
|
|
|
def test_decompression_bomb(self) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.login("iago")
|
2019-01-13 07:27:30 +01:00
|
|
|
with get_test_image_file("bomb.png") as fp:
|
2022-02-17 00:01:27 +01:00
|
|
|
for url in self.test_urls:
|
2019-01-13 07:27:30 +01:00
|
|
|
fp.seek(0, 0)
|
2021-02-12 08:19:30 +01:00
|
|
|
if url == "/json/realm/logo":
|
|
|
|
result = self.client_post(
|
2021-02-12 08:20:45 +01:00
|
|
|
url, {"f1": fp, "night": orjson.dumps(False).decode()}
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2019-01-27 08:25:10 +01:00
|
|
|
else:
|
2021-02-12 08:20:45 +01:00
|
|
|
result = self.client_post(url, {"f1": fp})
|
2022-02-17 00:01:27 +01:00
|
|
|
self.assert_json_error(result, "Image size exceeds limit.")
|