2020-09-25 21:53:00 +02:00
|
|
|
# This module is a collection of testing helpers for validating the
|
|
|
|
# schema of "events" sent by Zulip's server-to-client push system.
|
|
|
|
#
|
|
|
|
# By policy, every event generated by Zulip's API should be validated
|
|
|
|
# by a test in test_events.py with a schema checker here (which is
|
|
|
|
# validated, in turn, against the OpenAPI documentation for GET
|
2021-05-14 00:16:30 +02:00
|
|
|
# /events in zulip.yaml and the fixtures used by the Zulip web app
|
2020-09-25 21:53:00 +02:00
|
|
|
# frontend).
|
|
|
|
#
|
|
|
|
# See https://zulip.readthedocs.io/en/latest/subsystems/events-system.html
|
2020-09-28 17:49:30 +02:00
|
|
|
#
|
|
|
|
# The general paradigm here is that if you have an event with type foo_bar
|
|
|
|
# then you declare foo_bar_event to be an instance of event_dict_type. And
|
|
|
|
# then you make a checker function by saying:
|
|
|
|
#
|
|
|
|
# check_foo_bar = make_checker(foo_bar_event)
|
|
|
|
#
|
|
|
|
# And then the caller can use the checker as follows:
|
|
|
|
#
|
|
|
|
# check_foo_bar(var_name, event)
|
|
|
|
#
|
|
|
|
# For more complicated events, you may write custom checkers that check
|
|
|
|
# aspects of the data that go beyond simply validating that the data
|
|
|
|
# matches an event_dict_type based schema. This typically happens with
|
|
|
|
# events where you either have a Union type or optional_keys.
|
|
|
|
#
|
|
|
|
# See check_delete_message and check_presence for examples of this
|
|
|
|
# paradigm.
|
2020-09-25 21:53:00 +02:00
|
|
|
|
2021-01-20 19:53:11 +01:00
|
|
|
from typing import Dict, List, Sequence, Set, Tuple, Union
|
2020-07-30 18:11:19 +02:00
|
|
|
|
|
|
|
from zerver.lib.data_types import (
|
|
|
|
DictType,
|
|
|
|
EnumType,
|
|
|
|
Equals,
|
|
|
|
ListType,
|
2020-08-05 19:56:34 +02:00
|
|
|
NumberType,
|
2020-07-30 18:11:19 +02:00
|
|
|
OptionalType,
|
2020-08-06 13:40:42 +02:00
|
|
|
StringDictType,
|
2020-08-06 20:31:12 +02:00
|
|
|
TupleType,
|
2020-07-30 18:11:19 +02:00
|
|
|
UnionType,
|
|
|
|
UrlType,
|
|
|
|
check_data,
|
|
|
|
event_dict_type,
|
|
|
|
make_checker,
|
2020-07-08 02:14:11 +02:00
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
from zerver.lib.topic import ORIG_TOPIC, TOPIC_LINKS, TOPIC_NAME
|
2022-07-05 16:42:29 +02:00
|
|
|
from zerver.models import Realm, RealmUserDefault, Stream, UserProfile
|
2020-06-30 18:38:42 +02:00
|
|
|
|
2020-07-08 12:53:52 +02:00
|
|
|
# These fields are used for "stream" events, and are included in the
|
|
|
|
# larger "subscription" events that also contain personal settings.
|
|
|
|
basic_stream_fields = [
|
2022-06-27 18:39:33 +02:00
|
|
|
("can_remove_subscribers_group_id", int),
|
2022-03-12 11:45:43 +01:00
|
|
|
("date_created", int),
|
2020-07-30 18:11:19 +02:00
|
|
|
("description", str),
|
|
|
|
("first_message_id", OptionalType(int)),
|
|
|
|
("history_public_to_subscribers", bool),
|
|
|
|
("invite_only", bool),
|
|
|
|
("is_announcement_only", bool),
|
|
|
|
("is_web_public", bool),
|
2020-08-05 11:57:45 +02:00
|
|
|
("message_retention_days", OptionalType(int)),
|
2020-07-30 18:11:19 +02:00
|
|
|
("name", str),
|
|
|
|
("rendered_description", str),
|
|
|
|
("stream_id", int),
|
|
|
|
("stream_post_policy", int),
|
2020-07-08 12:53:52 +02:00
|
|
|
]
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
subscription_fields: Sequence[Tuple[str, object]] = [
|
2020-07-08 14:13:16 +02:00
|
|
|
*basic_stream_fields,
|
2020-07-30 18:11:19 +02:00
|
|
|
("audible_notifications", OptionalType(bool)),
|
|
|
|
("color", str),
|
|
|
|
("desktop_notifications", OptionalType(bool)),
|
|
|
|
("email_address", str),
|
|
|
|
("email_notifications", OptionalType(bool)),
|
|
|
|
("in_home_view", bool),
|
|
|
|
("is_muted", bool),
|
|
|
|
("pin_to_top", bool),
|
|
|
|
("push_notifications", OptionalType(bool)),
|
|
|
|
("stream_weekly_traffic", OptionalType(int)),
|
2021-01-20 15:14:52 +01:00
|
|
|
# We may try to remove subscribers from some events in
|
|
|
|
# the future for clients that don't want subscriber
|
|
|
|
# info.
|
|
|
|
("subscribers", ListType(int)),
|
2020-07-30 18:11:19 +02:00
|
|
|
("wildcard_mentions_notify", OptionalType(bool)),
|
2020-07-08 14:13:16 +02:00
|
|
|
]
|
|
|
|
|
2020-06-30 18:38:42 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
value_type = UnionType(
|
2020-07-08 02:14:11 +02:00
|
|
|
[
|
|
|
|
# force vertical formatting
|
2020-07-30 18:11:19 +02:00
|
|
|
bool,
|
|
|
|
int,
|
|
|
|
str,
|
2020-07-08 02:14:11 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
optional_value_type = UnionType(
|
2020-07-08 13:35:37 +02:00
|
|
|
[
|
|
|
|
# force vertical formatting
|
2020-07-30 18:11:19 +02:00
|
|
|
bool,
|
|
|
|
int,
|
|
|
|
str,
|
|
|
|
Equals(None),
|
2020-07-08 13:35:37 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
alert_words_event = event_dict_type(
|
2020-07-18 17:11:41 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical formatting
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("alert_words")),
|
|
|
|
("alert_words", ListType(str)),
|
2020-07-18 17:11:41 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_alert_words = make_checker(alert_words_event)
|
2020-07-18 17:11:41 +02:00
|
|
|
|
2020-08-06 13:08:42 +02:00
|
|
|
attachment_message_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("id", int),
|
|
|
|
("date_sent", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
attachment_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("id", int),
|
|
|
|
("name", str),
|
|
|
|
("size", int),
|
|
|
|
("path_id", str),
|
|
|
|
("create_time", int),
|
|
|
|
("messages", ListType(attachment_message_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
attachment_add_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("attachment")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("attachment", attachment_type),
|
|
|
|
("upload_space_used", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_attachment_add = make_checker(attachment_add_event)
|
|
|
|
|
|
|
|
attachment_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("attachment")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("attachment", DictType([("id", int)])),
|
|
|
|
("upload_space_used", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_attachment_remove = make_checker(attachment_remove_event)
|
|
|
|
|
|
|
|
attachment_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("attachment")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("attachment", attachment_type),
|
|
|
|
("upload_space_used", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_attachment_update = make_checker(attachment_update_event)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
custom_profile_field_type = DictType(
|
2020-07-18 17:02:28 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("id", int),
|
|
|
|
("type", int),
|
|
|
|
("name", str),
|
|
|
|
("hint", str),
|
|
|
|
("field_data", str),
|
|
|
|
("order", int),
|
|
|
|
],
|
2020-07-18 17:02:28 +02:00
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
custom_profile_fields_event = event_dict_type(
|
2020-07-18 17:02:28 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("custom_profile_fields")),
|
|
|
|
("fields", ListType(custom_profile_field_type)),
|
2020-07-18 17:02:28 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_custom_profile_fields = make_checker(custom_profile_fields_event)
|
2020-07-18 17:02:28 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_stream_group = DictType(
|
2020-08-01 14:33:03 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("name", str),
|
|
|
|
("id", int),
|
|
|
|
("description", str),
|
|
|
|
("streams", ListType(DictType(basic_stream_fields))),
|
2020-08-01 14:33:03 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
default_stream_groups_event = event_dict_type(
|
2020-08-01 14:33:03 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("default_stream_groups")),
|
|
|
|
("default_stream_groups", ListType(_check_stream_group)),
|
2020-08-01 14:33:03 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_default_stream_groups = make_checker(default_stream_groups_event)
|
2020-08-01 14:33:03 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
default_streams_event = event_dict_type(
|
2020-08-01 14:36:13 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("default_streams")),
|
|
|
|
("default_streams", ListType(DictType(basic_stream_fields))),
|
2020-08-01 14:36:13 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_default_streams = make_checker(default_streams_event)
|
2020-08-01 14:36:13 +02:00
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# The event type has an unusual number of optional fields. The
|
|
|
|
# message_id/message_ids fields are conditional on the
|
|
|
|
# bulk_message_deletion client_capability, whereas the other fields
|
|
|
|
# are conditional on private vs. stream messages.
|
2020-08-14 15:12:27 +02:00
|
|
|
delete_message_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("delete_message")),
|
|
|
|
("message_type", EnumType(["private", "stream"])),
|
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
("message_id", int),
|
|
|
|
("message_ids", ListType(int)),
|
|
|
|
("stream_id", int),
|
|
|
|
("topic", str),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
_check_delete_message = make_checker(delete_message_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_delete_message(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
message_type: str,
|
|
|
|
num_message_ids: int,
|
|
|
|
is_legacy: bool,
|
|
|
|
) -> None:
|
|
|
|
_check_delete_message(var_name, event)
|
|
|
|
|
|
|
|
keys = {"id", "type", "message_type"}
|
|
|
|
|
|
|
|
assert event["message_type"] == message_type
|
|
|
|
|
|
|
|
if message_type == "stream":
|
|
|
|
keys |= {"stream_id", "topic"}
|
|
|
|
elif message_type == "private":
|
2021-06-12 16:35:17 +02:00
|
|
|
pass
|
2020-08-14 15:12:27 +02:00
|
|
|
else:
|
|
|
|
raise AssertionError("unexpected message_type")
|
|
|
|
|
|
|
|
if is_legacy:
|
|
|
|
assert num_message_ids == 1
|
|
|
|
keys.add("message_id")
|
|
|
|
else:
|
|
|
|
assert isinstance(event["message_ids"], list)
|
|
|
|
assert num_message_ids == len(event["message_ids"])
|
|
|
|
keys.add("message_ids")
|
|
|
|
|
|
|
|
assert set(event.keys()) == keys
|
|
|
|
|
|
|
|
|
2020-08-16 17:26:24 +02:00
|
|
|
has_zoom_token_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("has_zoom_token")),
|
|
|
|
("value", bool),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_has_zoom_token = make_checker(has_zoom_token_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_has_zoom_token(
|
|
|
|
# force vertical
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
value: bool,
|
|
|
|
) -> None:
|
|
|
|
_check_has_zoom_token(var_name, event)
|
|
|
|
assert event["value"] == value
|
|
|
|
|
|
|
|
|
2021-07-02 02:13:55 +02:00
|
|
|
heartbeat_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("heartbeat")),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_hearbeat = make_checker(heartbeat_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_heartbeat(
|
|
|
|
# force vertical
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
|
|
|
_check_hearbeat(var_name, event)
|
|
|
|
|
|
|
|
|
2020-08-05 19:56:34 +02:00
|
|
|
_hotspot = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("name", str),
|
|
|
|
("title", str),
|
|
|
|
("description", str),
|
|
|
|
("delay", NumberType()),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
hotspots_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("hotspots")),
|
2021-02-12 08:19:30 +01:00
|
|
|
(
|
|
|
|
"hotspots",
|
|
|
|
ListType(_hotspot),
|
|
|
|
),
|
2020-08-05 19:56:34 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
check_hotspots = make_checker(hotspots_event)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
invites_changed_event = event_dict_type(
|
2020-07-18 16:33:03 +02:00
|
|
|
required_keys=[
|
|
|
|
# the most boring event...no metadata
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("invites_changed")),
|
2020-07-18 16:33:03 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_invites_changed = make_checker(invites_changed_event)
|
2020-07-18 16:33:03 +02:00
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# This type, like other instances of TupleType, is a legacy feature of
|
|
|
|
# a very old Zulip API; we plan to replace it with an object as those
|
|
|
|
# are more extensible.
|
2020-08-06 20:31:12 +02:00
|
|
|
muted_topic_type = TupleType(
|
|
|
|
[
|
|
|
|
str, # stream name
|
|
|
|
str, # topic name
|
|
|
|
int, # timestamp
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
muted_topics_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("muted_topics")),
|
|
|
|
("muted_topics", ListType(muted_topic_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_muted_topics = make_checker(muted_topics_event)
|
|
|
|
|
2022-02-25 21:48:56 +01:00
|
|
|
user_topic_event = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("id", int),
|
|
|
|
("type", Equals("user_topic")),
|
|
|
|
("stream_id", int),
|
|
|
|
("topic_name", str),
|
|
|
|
("last_updated", int),
|
|
|
|
("visibility_policy", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
check_user_topic = make_checker(user_topic_event)
|
|
|
|
|
2021-03-27 12:23:32 +01:00
|
|
|
muted_user_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("id", int),
|
|
|
|
("timestamp", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
muted_users_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("muted_users")),
|
|
|
|
("muted_users", ListType(muted_user_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_muted_users = make_checker(muted_users_event)
|
|
|
|
|
2021-01-26 07:32:29 +01:00
|
|
|
_check_topic_links = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("text", str),
|
|
|
|
("url", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-10 16:10:58 +02:00
|
|
|
message_fields = [
|
2020-07-30 18:11:19 +02:00
|
|
|
("avatar_url", OptionalType(str)),
|
|
|
|
("client", str),
|
|
|
|
("content", str),
|
|
|
|
("content_type", Equals("text/html")),
|
|
|
|
("display_recipient", str),
|
|
|
|
("id", int),
|
|
|
|
("is_me_message", bool),
|
|
|
|
("reactions", ListType(dict)),
|
|
|
|
("recipient_id", int),
|
|
|
|
("sender_realm_str", str),
|
|
|
|
("sender_email", str),
|
|
|
|
("sender_full_name", str),
|
|
|
|
("sender_id", int),
|
|
|
|
("stream_id", int),
|
|
|
|
(TOPIC_NAME, str),
|
2021-01-26 07:32:29 +01:00
|
|
|
(TOPIC_LINKS, ListType(_check_topic_links)),
|
2020-07-30 18:11:19 +02:00
|
|
|
("submessages", ListType(dict)),
|
|
|
|
("timestamp", int),
|
|
|
|
("type", str),
|
2020-07-10 16:10:58 +02:00
|
|
|
]
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
message_event = event_dict_type(
|
2020-07-10 16:10:58 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("message")),
|
|
|
|
("flags", ListType(str)),
|
|
|
|
("message", DictType(message_fields)),
|
2020-07-10 16:10:58 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_message = make_checker(message_event)
|
2020-07-10 16:10:58 +02:00
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# This legacy presence structure is intended to be replaced by a more
|
|
|
|
# sensible data structure.
|
2020-08-13 19:29:07 +02:00
|
|
|
presence_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("status", EnumType(["active", "idle"])),
|
|
|
|
("timestamp", int),
|
|
|
|
("client", str),
|
|
|
|
("pushable", bool),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
presence_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("presence")),
|
|
|
|
("user_id", int),
|
|
|
|
("server_timestamp", NumberType()),
|
|
|
|
("presence", StringDictType(presence_type)),
|
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
|
|
|
("email", str),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
_check_presence = make_checker(presence_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_presence(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
has_email: bool,
|
|
|
|
presence_key: str,
|
|
|
|
status: str,
|
|
|
|
) -> None:
|
|
|
|
_check_presence(var_name, event)
|
|
|
|
|
|
|
|
assert ("email" in event) == has_email
|
|
|
|
|
|
|
|
assert isinstance(event["presence"], dict)
|
|
|
|
|
|
|
|
# Our tests only have one presence value.
|
|
|
|
assert len(event["presence"]) == 1
|
|
|
|
|
|
|
|
assert list(event["presence"].keys())[0] == presence_key
|
|
|
|
|
|
|
|
assert list(event["presence"].values())[0]["status"] == status
|
|
|
|
|
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# Type for the legacy user field; the `user_id` field is intended to
|
|
|
|
# replace this and we expect to remove this once clients have migrated
|
|
|
|
# to support the modern API.
|
|
|
|
reaction_legacy_user_type = DictType(
|
2020-07-17 09:23:12 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("email", str),
|
|
|
|
("full_name", str),
|
|
|
|
("user_id", int),
|
2020-07-17 09:23:12 +02:00
|
|
|
]
|
2020-09-25 21:53:00 +02:00
|
|
|
# We should probably declare is_mirror_dummy as an optional field here.
|
2020-07-17 09:23:12 +02:00
|
|
|
)
|
|
|
|
|
2020-08-17 15:11:19 +02:00
|
|
|
reaction_add_event = event_dict_type(
|
2020-07-17 09:23:12 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("reaction")),
|
2020-08-17 15:11:19 +02:00
|
|
|
("op", Equals("add")),
|
2020-07-30 18:11:19 +02:00
|
|
|
("message_id", int),
|
|
|
|
("emoji_name", str),
|
|
|
|
("emoji_code", str),
|
|
|
|
("reaction_type", str),
|
|
|
|
("user_id", int),
|
2020-09-25 21:53:00 +02:00
|
|
|
("user", reaction_legacy_user_type),
|
2020-07-17 09:23:12 +02:00
|
|
|
]
|
|
|
|
)
|
2020-08-17 15:11:19 +02:00
|
|
|
check_reaction_add = make_checker(reaction_add_event)
|
2020-07-17 09:23:12 +02:00
|
|
|
|
|
|
|
|
2020-08-17 15:11:19 +02:00
|
|
|
reaction_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("reaction")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("message_id", int),
|
|
|
|
("emoji_name", str),
|
|
|
|
("emoji_code", str),
|
|
|
|
("reaction_type", str),
|
|
|
|
("user_id", int),
|
2020-09-25 21:53:00 +02:00
|
|
|
("user", reaction_legacy_user_type),
|
2020-08-17 15:11:19 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
check_reaction_remove = make_checker(reaction_remove_event)
|
2020-07-17 09:23:12 +02:00
|
|
|
|
2021-03-13 20:00:05 +01:00
|
|
|
realm_deactivated_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm")),
|
|
|
|
("op", Equals("deactivated")),
|
|
|
|
("realm_id", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_deactivated = make_checker(realm_deactivated_event)
|
2020-07-17 09:23:12 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_services_outgoing_type = DictType(
|
2020-07-08 17:07:29 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("base_url", UrlType()),
|
|
|
|
("interface", int),
|
|
|
|
("token", str),
|
2020-07-08 17:07:29 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-08-13 18:12:22 +02:00
|
|
|
config_data_schema = StringDictType(str)
|
2020-07-08 17:07:29 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_services_embedded_type = DictType(
|
2020-07-08 17:07:29 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("service_name", str),
|
2020-08-06 13:40:42 +02:00
|
|
|
("config_data", config_data_schema),
|
2020-07-08 17:07:29 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
# Note that regular bots just get an empty list of services,
|
2020-07-30 18:11:19 +02:00
|
|
|
# so the sub_validator for ListType won't matter for them.
|
|
|
|
bot_services_type = ListType(
|
|
|
|
UnionType(
|
2020-07-08 17:07:29 +02:00
|
|
|
[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_services_outgoing_type,
|
|
|
|
bot_services_embedded_type,
|
2020-07-08 17:07:29 +02:00
|
|
|
]
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_type = DictType(
|
2020-07-08 17:07:29 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("user_id", int),
|
|
|
|
("api_key", str),
|
|
|
|
("avatar_url", str),
|
|
|
|
("bot_type", int),
|
|
|
|
("default_all_public_streams", bool),
|
|
|
|
("default_events_register_stream", OptionalType(str)),
|
|
|
|
("default_sending_stream", OptionalType(str)),
|
|
|
|
("email", str),
|
|
|
|
("full_name", str),
|
|
|
|
("is_active", bool),
|
|
|
|
("owner_id", int),
|
|
|
|
("services", bot_services_type),
|
2020-07-08 17:07:29 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_bot_add_event = event_dict_type(
|
2020-07-08 17:07:29 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm_bot")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("bot", bot_type),
|
2020-07-08 17:07:29 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_realm_bot_add = make_checker(realm_bot_add_event)
|
2020-07-08 17:07:29 +02:00
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_realm_bot_add(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
2020-07-08 17:07:29 +02:00
|
|
|
_check_realm_bot_add(var_name, event)
|
|
|
|
|
2020-08-08 13:41:21 +02:00
|
|
|
assert isinstance(event["bot"], dict)
|
2020-07-08 17:07:29 +02:00
|
|
|
bot_type = event["bot"]["bot_type"]
|
|
|
|
|
|
|
|
services_field = f"{var_name}['bot']['services']"
|
|
|
|
services = event["bot"]["services"]
|
|
|
|
|
|
|
|
if bot_type == UserProfile.DEFAULT_BOT:
|
2020-07-30 18:11:19 +02:00
|
|
|
check_data(Equals([]), services_field, services)
|
2020-07-08 17:07:29 +02:00
|
|
|
elif bot_type == UserProfile.OUTGOING_WEBHOOK_BOT:
|
2021-02-12 08:19:30 +01:00
|
|
|
check_data(ListType(bot_services_outgoing_type, length=1), services_field, services)
|
2020-07-08 17:07:29 +02:00
|
|
|
elif bot_type == UserProfile.EMBEDDED_BOT:
|
2021-02-12 08:19:30 +01:00
|
|
|
check_data(ListType(bot_services_embedded_type, length=1), services_field, services)
|
2020-07-08 17:07:29 +02:00
|
|
|
else:
|
|
|
|
raise AssertionError(f"Unknown bot_type: {bot_type}")
|
|
|
|
|
2020-07-08 02:14:11 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_type_for_delete = DictType(
|
2020-07-08 21:06:22 +02:00
|
|
|
required_keys=[
|
|
|
|
# for legacy reasons we have a dict here
|
|
|
|
# with only one key
|
2020-07-30 18:11:19 +02:00
|
|
|
("user_id", int),
|
2020-07-08 21:06:22 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_bot_delete_event = event_dict_type(
|
2020-07-08 21:06:22 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm_bot")),
|
|
|
|
("op", Equals("delete")),
|
|
|
|
("bot", bot_type_for_delete),
|
2020-07-08 21:06:22 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_realm_bot_delete = make_checker(realm_bot_delete_event)
|
2020-07-08 21:06:22 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_type_for_remove = DictType(
|
2020-07-08 21:06:22 +02:00
|
|
|
required_keys=[
|
|
|
|
# Why does remove have full_name but delete doesn't?
|
|
|
|
# Why do we have both a remove and a delete event
|
|
|
|
# for bots? I don't know the answer as I write this.
|
2020-07-30 18:11:19 +02:00
|
|
|
("full_name", str),
|
|
|
|
("user_id", int),
|
2020-07-08 21:06:22 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_bot_remove_event = event_dict_type(
|
2020-07-08 21:06:22 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm_bot")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("bot", bot_type_for_remove),
|
2020-07-08 21:06:22 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_realm_bot_remove = make_checker(realm_bot_remove_event)
|
2020-07-08 21:06:22 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
bot_type_for_update = DictType(
|
2020-07-08 17:47:56 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("user_id", int),
|
2020-07-08 17:47:56 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("api_key", str),
|
|
|
|
("avatar_url", str),
|
|
|
|
("default_all_public_streams", bool),
|
|
|
|
("default_events_register_stream", OptionalType(str)),
|
|
|
|
("default_sending_stream", OptionalType(str)),
|
|
|
|
("full_name", str),
|
|
|
|
("owner_id", int),
|
|
|
|
("services", bot_services_type),
|
2020-07-08 17:47:56 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_bot_update_event = event_dict_type(
|
2020-07-08 17:47:56 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm_bot")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("bot", bot_type_for_update),
|
2020-07-08 17:47:56 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_realm_bot_update = make_checker(realm_bot_update_event)
|
2020-07-08 17:47:56 +02:00
|
|
|
|
|
|
|
|
2020-08-08 13:41:21 +02:00
|
|
|
def check_realm_bot_update(
|
|
|
|
# Check schema plus the field.
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
field: str,
|
|
|
|
) -> None:
|
2020-07-08 17:47:56 +02:00
|
|
|
# Check the overall schema first.
|
|
|
|
_check_realm_bot_update(var_name, event)
|
|
|
|
|
2020-08-08 13:41:21 +02:00
|
|
|
assert isinstance(event["bot"], dict)
|
2020-07-08 17:47:56 +02:00
|
|
|
assert {"user_id", field} == set(event["bot"].keys())
|
|
|
|
|
|
|
|
|
2020-08-17 16:07:25 +02:00
|
|
|
realm_domain_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("domain", str),
|
|
|
|
("allow_subdomains", bool),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_domains_add_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_domains")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("realm_domain", realm_domain_type),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_domains_add = make_checker(realm_domains_add_event)
|
|
|
|
|
|
|
|
realm_domains_change_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_domains")),
|
|
|
|
("op", Equals("change")),
|
|
|
|
("realm_domain", realm_domain_type),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_domains_change = make_checker(realm_domains_change_event)
|
|
|
|
|
|
|
|
realm_domains_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_domains")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("domain", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_domains_remove = make_checker(realm_domains_remove_event)
|
|
|
|
|
2020-10-28 04:00:46 +01:00
|
|
|
realm_playground_type = DictType(
|
|
|
|
required_keys=[("id", int), ("name", str), ("pygments_language", str), ("url_prefix", str)]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_playgrounds_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_playgrounds")),
|
|
|
|
("realm_playgrounds", ListType(realm_playground_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_realm_playgrounds = make_checker(realm_playgrounds_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_realm_playgrounds(var_name: str, event: Dict[str, object]) -> None:
|
|
|
|
_check_realm_playgrounds(var_name, event)
|
|
|
|
assert isinstance(event["realm_playgrounds"], list)
|
|
|
|
|
|
|
|
|
2020-08-18 15:16:02 +02:00
|
|
|
realm_emoji_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("id", str),
|
|
|
|
("name", str),
|
|
|
|
("source_url", str),
|
|
|
|
("deactivated", bool),
|
|
|
|
("author_id", int),
|
2021-12-29 16:16:15 +01:00
|
|
|
("still_url", OptionalType(str)),
|
2021-08-12 10:19:53 +02:00
|
|
|
],
|
2020-08-18 15:16:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
realm_emoji_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_emoji")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("realm_emoji", StringDictType(realm_emoji_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_realm_emoji_update = make_checker(realm_emoji_update_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_realm_emoji_update(var_name: str, event: Dict[str, object]) -> None:
|
|
|
|
"""
|
|
|
|
The way we send realm emojis is kinda clumsy--we
|
|
|
|
send a dict mapping the emoji id to a sub_dict with
|
|
|
|
the fields (including the id). Ideally we can streamline
|
|
|
|
this and just send a list of dicts. The clients can make
|
|
|
|
a Map as needed.
|
|
|
|
"""
|
|
|
|
_check_realm_emoji_update(var_name, event)
|
|
|
|
|
|
|
|
assert isinstance(event["realm_emoji"], dict)
|
|
|
|
for k, v in event["realm_emoji"].items():
|
|
|
|
assert v["id"] == k
|
|
|
|
|
|
|
|
|
2020-08-05 23:54:26 +02:00
|
|
|
export_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("id", int),
|
|
|
|
("export_time", NumberType()),
|
|
|
|
("acting_user_id", int),
|
|
|
|
("export_url", OptionalType(str)),
|
|
|
|
("deleted_timestamp", OptionalType(NumberType())),
|
|
|
|
("failed_timestamp", OptionalType(NumberType())),
|
|
|
|
("pending", bool),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_export_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("realm_export")),
|
2021-02-12 08:19:30 +01:00
|
|
|
(
|
|
|
|
"exports",
|
|
|
|
ListType(export_type),
|
|
|
|
),
|
2020-08-05 23:54:26 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_realm_export = make_checker(realm_export_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_realm_export(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
has_export_url: bool,
|
|
|
|
has_deleted_timestamp: bool,
|
|
|
|
has_failed_timestamp: bool,
|
|
|
|
) -> None:
|
2020-09-25 21:53:00 +02:00
|
|
|
# Check the overall event first, knowing it has some
|
|
|
|
# optional types.
|
2020-08-05 23:54:26 +02:00
|
|
|
_check_realm_export(var_name, event)
|
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# It's possible to have multiple data exports, but the events tests do not
|
|
|
|
# exercise that case, so we do strict validation for a single export here.
|
2020-08-05 23:54:26 +02:00
|
|
|
assert isinstance(event["exports"], list)
|
|
|
|
assert len(event["exports"]) == 1
|
|
|
|
export = event["exports"][0]
|
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# Now verify which fields have non-None values.
|
2020-08-05 23:54:26 +02:00
|
|
|
assert has_export_url == (export["export_url"] is not None)
|
|
|
|
assert has_deleted_timestamp == (export["deleted_timestamp"] is not None)
|
|
|
|
assert has_failed_timestamp == (export["failed_timestamp"] is not None)
|
|
|
|
|
|
|
|
|
2021-03-30 12:51:54 +02:00
|
|
|
realm_linkifier_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("pattern", str),
|
|
|
|
("url_format", str),
|
|
|
|
("id", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_linkifiers_event = event_dict_type(
|
|
|
|
[
|
|
|
|
("type", Equals("realm_linkifiers")),
|
|
|
|
("realm_linkifiers", ListType(realm_linkifier_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_linkifiers = make_checker(realm_linkifiers_event)
|
|
|
|
|
|
|
|
|
|
|
|
# This is a legacy event type to ensure backwards compatibility
|
|
|
|
# for old clients. Newer clients should handle only the
|
|
|
|
# "realm_linkifiers" event above.
|
2020-08-08 15:08:29 +02:00
|
|
|
realm_filter_type = TupleType(
|
|
|
|
[
|
|
|
|
# we should make this an object
|
|
|
|
# see realm_filters_for_realm_remote_cache
|
|
|
|
str, # pattern
|
|
|
|
str, # format string
|
|
|
|
int, # id
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_filters_event = event_dict_type(
|
|
|
|
[
|
|
|
|
# force vertical
|
|
|
|
("type", Equals("realm_filters")),
|
|
|
|
("realm_filters", ListType(realm_filter_type)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_filters = make_checker(realm_filters_event)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
plan_type_extra_data_type = DictType(
|
2020-07-23 18:01:27 +02:00
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("upload_quota", int),
|
2020-07-23 18:01:27 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-08 02:14:11 +02:00
|
|
|
"""
|
|
|
|
realm/update events are flexible for values;
|
|
|
|
we will use a more strict checker to check
|
|
|
|
types in a context-specific manner
|
|
|
|
"""
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_update_event = event_dict_type(
|
2020-07-08 02:14:11 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("property", str),
|
|
|
|
("value", value_type),
|
2020-07-23 18:01:27 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("extra_data", plan_type_extra_data_type),
|
2020-07-23 18:01:27 +02:00
|
|
|
],
|
2020-07-08 02:14:11 +02:00
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_realm_update = make_checker(realm_update_event)
|
2020-07-08 02:14:11 +02:00
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_realm_update(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
prop: str,
|
|
|
|
) -> None:
|
2020-07-08 02:14:11 +02:00
|
|
|
"""
|
|
|
|
Realm updates have these two fields:
|
|
|
|
|
|
|
|
property
|
|
|
|
value
|
|
|
|
|
|
|
|
We check not only the basic schema, but also that
|
|
|
|
the value people actually matches the type from
|
|
|
|
Realm.property_types that we have configured
|
|
|
|
for the property.
|
|
|
|
"""
|
|
|
|
_check_realm_update(var_name, event)
|
2020-07-23 17:38:53 +02:00
|
|
|
|
|
|
|
assert prop == event["property"]
|
2020-07-08 02:14:11 +02:00
|
|
|
value = event["value"]
|
|
|
|
|
2020-07-23 18:01:27 +02:00
|
|
|
if prop == "plan_type":
|
|
|
|
assert isinstance(value, int)
|
|
|
|
assert "extra_data" in event.keys()
|
|
|
|
return
|
|
|
|
|
|
|
|
assert "extra_data" not in event.keys()
|
|
|
|
|
2022-04-11 19:26:16 +02:00
|
|
|
if prop in ["notifications_stream_id", "signup_notifications_stream_id", "org_type"]:
|
2020-07-23 17:38:53 +02:00
|
|
|
assert isinstance(value, int)
|
|
|
|
return
|
|
|
|
|
2020-07-08 02:14:11 +02:00
|
|
|
property_type = Realm.property_types[prop]
|
2020-07-23 17:38:53 +02:00
|
|
|
|
2020-07-08 02:14:11 +02:00
|
|
|
if property_type in (bool, int, str):
|
|
|
|
assert isinstance(value, property_type)
|
|
|
|
elif property_type == (int, type(None)):
|
|
|
|
assert isinstance(value, int)
|
|
|
|
elif property_type == (str, type(None)):
|
|
|
|
assert isinstance(value, str)
|
|
|
|
else:
|
|
|
|
raise AssertionError(f"Unexpected property type {property_type}")
|
2020-07-08 12:53:52 +02:00
|
|
|
|
|
|
|
|
2021-07-21 13:40:46 +02:00
|
|
|
realm_user_settings_defaults_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_user_settings_defaults")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("property", str),
|
|
|
|
("value", value_type),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
_check_realm_default_update = make_checker(realm_user_settings_defaults_update_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_realm_default_update(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
prop: str,
|
|
|
|
) -> None:
|
|
|
|
_check_realm_default_update(var_name, event)
|
|
|
|
|
|
|
|
assert prop == event["property"]
|
2021-09-17 18:11:37 +02:00
|
|
|
assert prop != "default_language"
|
2021-07-21 13:40:46 +02:00
|
|
|
assert prop in RealmUserDefault.property_types
|
|
|
|
|
|
|
|
prop_type = RealmUserDefault.property_types[prop]
|
|
|
|
assert isinstance(event["value"], prop_type)
|
|
|
|
|
|
|
|
|
2020-08-16 14:52:09 +02:00
|
|
|
authentication_dict = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("Google", bool),
|
|
|
|
("Dev", bool),
|
|
|
|
("LDAP", bool),
|
|
|
|
("GitHub", bool),
|
|
|
|
("Email", bool),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
authentication_data = DictType(
|
|
|
|
required_keys=[
|
2020-09-25 21:53:00 +02:00
|
|
|
# this single-key dictionary is an annoying consequence of us
|
|
|
|
# using property_type of "default" for legacy reasons
|
|
|
|
# (specifically, to avoid breaking old clients when we
|
|
|
|
# introduced the `update_dict` format).
|
2020-08-16 14:52:09 +02:00
|
|
|
("authentication_methods", authentication_dict),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
icon_data = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("icon_url", str),
|
|
|
|
("icon_source", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
logo_data = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("logo_url", str),
|
|
|
|
("logo_source", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
message_edit_data = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("allow_message_editing", bool),
|
|
|
|
("message_content_edit_limit_seconds", int),
|
2021-05-26 12:21:37 +02:00
|
|
|
("edit_topic_policy", int),
|
2020-08-16 14:52:09 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
night_logo_data = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("night_logo_url", str),
|
|
|
|
("night_logo_source", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
update_dict_data = UnionType(
|
|
|
|
[
|
|
|
|
# force vertical
|
|
|
|
authentication_data,
|
|
|
|
icon_data,
|
|
|
|
logo_data,
|
|
|
|
message_edit_data,
|
|
|
|
night_logo_data,
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_update_dict_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm")),
|
|
|
|
("op", Equals("update_dict")),
|
|
|
|
("property", EnumType(["default", "icon", "logo", "night_logo"])),
|
|
|
|
("data", update_dict_data),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_realm_update_dict = make_checker(realm_update_dict_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_realm_update_dict(
|
|
|
|
# handle union types
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
|
|
|
_check_realm_update_dict(var_name, event)
|
|
|
|
|
|
|
|
if event["property"] == "default":
|
|
|
|
assert isinstance(event["data"], dict)
|
|
|
|
|
|
|
|
if "allow_message_editing" in event["data"]:
|
|
|
|
sub_type = message_edit_data
|
|
|
|
elif "authentication_methods" in event["data"]:
|
|
|
|
sub_type = authentication_data
|
|
|
|
else:
|
|
|
|
raise AssertionError("unhandled fields in data")
|
|
|
|
|
|
|
|
elif event["property"] == "icon":
|
|
|
|
sub_type = icon_data
|
|
|
|
elif event["property"] == "logo":
|
|
|
|
sub_type = logo_data
|
|
|
|
elif event["property"] == "night_logo":
|
|
|
|
sub_type = night_logo_data
|
|
|
|
else:
|
|
|
|
raise AssertionError("unhandled property: {event['property']}")
|
|
|
|
|
|
|
|
check_data(sub_type, f"{var_name}['data']", event["data"])
|
|
|
|
|
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# TODO: This type is missing optional fields:
|
|
|
|
#
|
|
|
|
# * delivery_email
|
|
|
|
# * bot-related fields.
|
|
|
|
# * Users with custom profile fields, where profile_data will
|
|
|
|
# be nonempty.
|
|
|
|
#
|
|
|
|
# Only because our test_events.py tests don't cover the relevant cases.
|
2020-08-14 02:14:06 +02:00
|
|
|
realm_user_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
("user_id", int),
|
|
|
|
("email", str),
|
|
|
|
("avatar_url", OptionalType(str)),
|
|
|
|
("avatar_version", int),
|
|
|
|
("full_name", str),
|
|
|
|
("is_admin", bool),
|
2021-05-28 12:51:50 +02:00
|
|
|
("is_billing_admin", bool),
|
2020-08-14 02:14:06 +02:00
|
|
|
("is_owner", bool),
|
|
|
|
("is_bot", bool),
|
|
|
|
("is_guest", bool),
|
2021-04-11 07:38:09 +02:00
|
|
|
("role", EnumType(UserProfile.ROLE_TYPES)),
|
2020-08-14 02:14:06 +02:00
|
|
|
("is_active", bool),
|
|
|
|
("profile_data", StringDictType(dict)),
|
|
|
|
("timezone", str),
|
|
|
|
("date_joined", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_user_add_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_user")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("person", realm_user_type),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_realm_user_add = make_checker(realm_user_add_event)
|
|
|
|
|
2020-08-18 18:38:41 +02:00
|
|
|
removed_user_type = DictType(
|
|
|
|
required_keys=[
|
|
|
|
# force vertical
|
|
|
|
("user_id", int),
|
|
|
|
("full_name", str),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
realm_user_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("realm_user")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("person", removed_user_type),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
check_realm_user_remove = make_checker(realm_user_remove_event)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
custom_profile_field_type = DictType(
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
2020-07-30 18:11:19 +02:00
|
|
|
("id", int),
|
|
|
|
("value", str),
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# vertical formatting
|
2020-07-30 18:11:19 +02:00
|
|
|
("rendered_value", str),
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# This block of types, each named by the dictionary key, makes it
|
|
|
|
# possible to validate the type of all the realm_user update events.
|
2020-08-05 12:31:09 +02:00
|
|
|
realm_user_person_types = dict(
|
|
|
|
# Note that all flavors of person include user_id.
|
|
|
|
avatar_fields=DictType(
|
|
|
|
required_keys=[
|
|
|
|
("user_id", int),
|
|
|
|
("avatar_source", str),
|
|
|
|
("avatar_url", OptionalType(str)),
|
|
|
|
("avatar_url_medium", OptionalType(str)),
|
|
|
|
("avatar_version", int),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
bot_owner_id=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("bot_owner_id", int),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
custom_profile_field=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("custom_profile_field", custom_profile_field_type),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
delivery_email=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("delivery_email", str),
|
|
|
|
],
|
|
|
|
),
|
2021-10-04 18:52:57 +02:00
|
|
|
email=DictType(
|
|
|
|
required_keys=[
|
|
|
|
("user_id", int),
|
|
|
|
("new_email", str),
|
|
|
|
],
|
|
|
|
),
|
2020-08-05 12:31:09 +02:00
|
|
|
full_name=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("full_name", str),
|
|
|
|
],
|
|
|
|
),
|
2021-05-28 12:51:50 +02:00
|
|
|
is_billing_admin=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("is_billing_admin", bool),
|
|
|
|
],
|
|
|
|
),
|
2020-08-05 12:31:09 +02:00
|
|
|
role=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# vertical formatting
|
|
|
|
("user_id", int),
|
|
|
|
("role", EnumType(UserProfile.ROLE_TYPES)),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
timezone=DictType(
|
|
|
|
required_keys=[
|
|
|
|
# we should probably eliminate email here
|
|
|
|
("user_id", int),
|
|
|
|
("email", str),
|
|
|
|
("timezone", str),
|
|
|
|
],
|
|
|
|
),
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
realm_user_update_event = event_dict_type(
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("realm_user")),
|
|
|
|
("op", Equals("update")),
|
2020-08-05 12:31:09 +02:00
|
|
|
("person", UnionType(list(realm_user_person_types.values()))),
|
|
|
|
],
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_realm_user_update = make_checker(realm_user_update_event)
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
def check_realm_user_update(
|
2020-08-05 12:31:09 +02:00
|
|
|
# person_flavor tells us which extra fields we need
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
person_flavor: str,
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
) -> None:
|
|
|
|
_check_realm_user_update(var_name, event)
|
|
|
|
|
2020-08-05 12:31:09 +02:00
|
|
|
check_data(
|
|
|
|
realm_user_person_types[person_flavor],
|
|
|
|
f"{var_name}['person']",
|
|
|
|
event["person"],
|
|
|
|
)
|
event_schema: Extract check_realm_user_update.
This a pretty big commit, but I really wanted it
to be atomic.
All realm_user/update events look the same from
the top:
_check_realm_user_update = check_events_dict(
required_keys=[
("type", equals("realm_user")),
("op", equals("update")),
("person", _check_realm_user_person),
]
)
And then we have a bunch of fields for person that
are optional, and we usually only send user_id plus
one other field, with the exception of avatar-related
events:
_check_realm_user_person = check_dict_only(
required_keys=[
# vertical formatting
("user_id", check_int),
],
optional_keys=[
("avatar_source", check_string),
("avatar_url", check_none_or(check_string)),
("avatar_url_medium", check_none_or(check_string)),
("avatar_version", check_int),
("bot_owner_id", check_int),
("custom_profile_field", _check_custom_profile_field),
("delivery_email", check_string),
("full_name", check_string),
("role", check_int_in(UserProfile.ROLE_TYPES)),
("email", check_string),
("user_id", check_int),
("timezone", check_string),
],
)
I would start the code review by just skimming the changes
to event_schema.py, to get the big picture of the complexity
here. Basically the schema is just the combined superset of
all the individual schemas that we remove from test_events.
Then I would read test_events.py.
The simplest diffs are basically of this form:
- schema_checker = check_events_dict([
- ('type', equals('realm_user')),
- ('op', equals('update')),
- ('person', check_dict_only([
- ('role', check_int_in(UserProfile.ROLE_TYPES)),
- ('user_id', check_int),
- ])),
- ])
# ...
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
Instead of a custom schema checker, we use the "superset"
schema checker, but then we pass in the set of fields that we
expect to be there. Note that 'user_id' is always there.
So most of the heavy lifting happens in this new function
in event_schema.py:
def check_realm_user_update(
var_name: str, event: Dict[str, Any], optional_fields: Set[str],
) -> None:
_check_realm_user_update(var_name, event)
keys = set(event["person"].keys()) - {"user_id"}
assert optional_fields == keys
But we still do some more custom checks in test_events.py.
custom profile fields: check keys of custom_profile_field
def test_custom_profile_field_data_events(self) -> None:
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value", "rendered_value"}
+ )
+ check_realm_user_update('events[0]', events[0], {"custom_profile_field"})
+ self.assertEqual(
+ events[0]['person']['custom_profile_field'].keys(),
+ {"id", "value"}
+ )
avatar fields: check more specific types, since the superset
schema has check_none_or(check_string)
def test_change_avatar_fields(self) -> None:
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ assert isinstance(events[0]['person']['avatar_url'], str)
+ assert isinstance(events[0]['person']['avatar_url_medium'], str)
+ check_realm_user_update('events[0]', events[0], avatar_fields)
+ self.assertEqual(events[0]['person']['avatar_url'], None)
+ self.assertEqual(events[0]['person']['avatar_url_medium'], None)
Also note that avatar_fields is a set of four fields that
are set in event_schema.
full name: no extra work!
def test_change_full_name(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'full_name'})
test_change_user_delivery_email_email_address_visibilty_admins:
no extra work for delivery_email
check avatar fields more directly
roles (several examples) -- actually check the specific role
def test_change_realm_authentication_methods(self) -> None:
- schema_checker('events[0]', events[0])
+ check_realm_user_update('events[0]', events[0], {'role'})
+ self.assertEqual(events[0]['person']['role'], role)
bot_owner_id: no extra work!
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
- change_bot_owner_checker_user('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"bot_owner_id"})
timezone: no extra work!
- timezone_schema_checker('events[1]', events[1])
+ check_realm_user_update('events[1]', events[1], {"email", "timezone"})
2020-07-23 16:04:06 +02:00
|
|
|
|
|
|
|
|
2021-03-13 22:32:51 +01:00
|
|
|
restart_event = event_dict_type(
|
2021-04-18 11:28:39 +02:00
|
|
|
required_keys=[
|
|
|
|
("type", Equals("restart")),
|
|
|
|
("zulip_version", str),
|
2021-07-30 12:25:53 +02:00
|
|
|
("zulip_merge_base", str),
|
2021-04-18 11:28:39 +02:00
|
|
|
("zulip_feature_level", int),
|
|
|
|
("server_generation", int),
|
|
|
|
("immediate", bool),
|
|
|
|
]
|
2021-03-13 22:32:51 +01:00
|
|
|
)
|
|
|
|
check_restart_event = make_checker(restart_event)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
stream_create_event = event_dict_type(
|
2020-07-08 12:53:52 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("stream")),
|
|
|
|
("op", Equals("create")),
|
|
|
|
("streams", ListType(DictType(basic_stream_fields))),
|
2020-07-08 12:53:52 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_stream_create = make_checker(stream_create_event)
|
2020-07-08 13:35:37 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
stream_delete_event = event_dict_type(
|
2020-08-01 14:42:06 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("stream")),
|
|
|
|
("op", Equals("delete")),
|
|
|
|
("streams", ListType(DictType(basic_stream_fields))),
|
2020-08-01 14:42:06 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_stream_delete = make_checker(stream_delete_event)
|
2020-08-01 14:42:06 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
stream_update_event = event_dict_type(
|
2020-07-08 13:35:37 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("stream")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("property", str),
|
|
|
|
("value", optional_value_type),
|
|
|
|
("name", str),
|
|
|
|
("stream_id", int),
|
2020-07-08 13:35:37 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("rendered_description", str),
|
|
|
|
("history_public_to_subscribers", bool),
|
2020-11-10 16:02:55 +01:00
|
|
|
("is_web_public", bool),
|
2020-07-08 13:35:37 +02:00
|
|
|
],
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_stream_update = make_checker(stream_update_event)
|
2020-07-08 13:35:37 +02:00
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_stream_update(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
2020-07-08 13:35:37 +02:00
|
|
|
_check_stream_update(var_name, event)
|
|
|
|
prop = event["property"]
|
|
|
|
value = event["value"]
|
|
|
|
|
|
|
|
extra_keys = set(event.keys()) - {
|
|
|
|
"id",
|
|
|
|
"type",
|
|
|
|
"op",
|
|
|
|
"property",
|
|
|
|
"value",
|
|
|
|
"name",
|
|
|
|
"stream_id",
|
|
|
|
}
|
|
|
|
|
|
|
|
if prop == "description":
|
|
|
|
assert extra_keys == {"rendered_description"}
|
|
|
|
assert isinstance(value, str)
|
|
|
|
elif prop == "email_address":
|
|
|
|
assert extra_keys == set()
|
|
|
|
assert isinstance(value, str)
|
|
|
|
elif prop == "invite_only":
|
2020-11-10 16:02:55 +01:00
|
|
|
assert extra_keys == {"history_public_to_subscribers", "is_web_public"}
|
2020-07-08 13:35:37 +02:00
|
|
|
assert isinstance(value, bool)
|
|
|
|
elif prop == "message_retention_days":
|
|
|
|
assert extra_keys == set()
|
|
|
|
if value is not None:
|
|
|
|
assert isinstance(value, int)
|
|
|
|
elif prop == "name":
|
|
|
|
assert extra_keys == set()
|
|
|
|
assert isinstance(value, str)
|
|
|
|
elif prop == "stream_post_policy":
|
|
|
|
assert extra_keys == set()
|
|
|
|
assert value in Stream.STREAM_POST_POLICY_TYPES
|
2022-06-27 18:39:33 +02:00
|
|
|
elif prop == "can_remove_subscribers_group_id":
|
|
|
|
assert extra_keys == set()
|
|
|
|
assert isinstance(value, int)
|
2020-07-08 13:35:37 +02:00
|
|
|
else:
|
|
|
|
raise AssertionError(f"Unknown property: {prop}")
|
2020-07-08 14:13:16 +02:00
|
|
|
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
submessage_event = event_dict_type(
|
2020-07-18 16:27:59 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("submessage")),
|
|
|
|
("message_id", int),
|
|
|
|
("submessage_id", int),
|
|
|
|
("sender_id", int),
|
|
|
|
("msg_type", str),
|
|
|
|
("content", str),
|
2020-07-18 16:27:59 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_submessage = make_checker(submessage_event)
|
2020-07-18 16:27:59 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
single_subscription_type = DictType(
|
2021-01-20 15:14:52 +01:00
|
|
|
# force vertical
|
2020-07-08 14:13:16 +02:00
|
|
|
required_keys=subscription_fields,
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
subscription_add_event = event_dict_type(
|
2020-07-08 14:13:16 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("subscription")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("subscriptions", ListType(single_subscription_type)),
|
2020-07-08 14:13:16 +02:00
|
|
|
],
|
|
|
|
)
|
2021-01-20 15:14:52 +01:00
|
|
|
check_subscription_add = make_checker(subscription_add_event)
|
2020-07-08 14:20:25 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
subscription_peer_add_event = event_dict_type(
|
2020-07-08 15:04:35 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("subscription")),
|
|
|
|
("op", Equals("peer_add")),
|
2020-10-22 14:14:02 +02:00
|
|
|
("user_ids", ListType(int)),
|
|
|
|
("stream_ids", ListType(int)),
|
2020-07-08 15:04:35 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_subscription_peer_add = make_checker(subscription_peer_add_event)
|
2020-07-08 15:04:35 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
subscription_peer_remove_event = event_dict_type(
|
2020-07-08 15:04:35 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("subscription")),
|
|
|
|
("op", Equals("peer_remove")),
|
2020-10-22 14:14:02 +02:00
|
|
|
("user_ids", ListType(int)),
|
|
|
|
("stream_ids", ListType(int)),
|
2020-07-08 15:04:35 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_subscription_peer_remove = make_checker(subscription_peer_remove_event)
|
2020-07-08 15:04:35 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
remove_sub_type = DictType(
|
2020-07-08 14:20:25 +02:00
|
|
|
required_keys=[
|
|
|
|
# We should eventually just return stream_id here.
|
2020-07-30 18:11:19 +02:00
|
|
|
("name", str),
|
|
|
|
("stream_id", int),
|
2020-07-08 14:20:25 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
subscription_remove_event = event_dict_type(
|
2020-07-08 14:20:25 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("subscription")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("subscriptions", ListType(remove_sub_type)),
|
2020-07-08 14:20:25 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_subscription_remove = make_checker(subscription_remove_event)
|
2020-07-08 15:29:13 +02:00
|
|
|
|
2020-09-25 21:53:00 +02:00
|
|
|
# TODO: Have better validation for value_type; we don't have
|
|
|
|
# test_events tests for non-bool fields like `color`.
|
2020-08-17 14:19:09 +02:00
|
|
|
subscription_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("subscription")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("property", str),
|
|
|
|
("stream_id", int),
|
|
|
|
("value", value_type),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_subscription_update = make_checker(subscription_update_event)
|
|
|
|
|
|
|
|
|
|
|
|
def check_subscription_update(
|
|
|
|
var_name: str, event: Dict[str, object], property: str, value: bool
|
|
|
|
) -> None:
|
|
|
|
_check_subscription_update(var_name, event)
|
|
|
|
assert event["property"] == property
|
|
|
|
assert event["value"] == value
|
|
|
|
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
typing_person_type = DictType(
|
2020-07-18 16:39:06 +02:00
|
|
|
required_keys=[
|
|
|
|
# we should eventually just send user_id
|
2020-07-30 18:11:19 +02:00
|
|
|
("email", str),
|
|
|
|
("user_id", int),
|
2020-07-18 16:39:06 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2021-04-28 06:34:40 +02:00
|
|
|
equals_private_or_stream = EnumType(
|
|
|
|
[
|
|
|
|
"private",
|
|
|
|
"stream",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
typing_start_event = event_dict_type(
|
2020-07-18 16:39:06 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("typing")),
|
|
|
|
("op", Equals("start")),
|
2021-04-28 06:34:40 +02:00
|
|
|
("message_type", equals_private_or_stream),
|
2020-07-30 18:11:19 +02:00
|
|
|
("sender", typing_person_type),
|
2020-12-24 21:00:20 +01:00
|
|
|
],
|
|
|
|
optional_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("recipients", ListType(typing_person_type)),
|
2020-12-24 21:00:20 +01:00
|
|
|
("stream_id", int),
|
|
|
|
("topic", str),
|
|
|
|
],
|
2020-07-18 16:39:06 +02:00
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_typing_start = make_checker(typing_start_event)
|
2020-07-18 16:39:06 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
typing_stop_event = event_dict_type(
|
2020-08-27 22:10:07 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("typing")),
|
|
|
|
("op", Equals("stop")),
|
2021-04-28 06:34:40 +02:00
|
|
|
("message_type", equals_private_or_stream),
|
2020-07-30 18:11:19 +02:00
|
|
|
("sender", typing_person_type),
|
2020-12-24 21:00:20 +01:00
|
|
|
],
|
|
|
|
optional_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("recipients", ListType(typing_person_type)),
|
2020-12-24 21:00:20 +01:00
|
|
|
("stream_id", int),
|
|
|
|
("topic", str),
|
|
|
|
],
|
2020-08-27 22:10:07 +02:00
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_typing_stop = make_checker(typing_stop_event)
|
2020-08-27 22:10:07 +02:00
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
update_display_settings_event = event_dict_type(
|
2020-07-08 15:29:13 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("update_display_settings")),
|
|
|
|
("setting_name", str),
|
|
|
|
("setting", value_type),
|
|
|
|
("user", str),
|
2020-07-08 15:29:13 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("language_name", str),
|
2020-07-08 15:29:13 +02:00
|
|
|
],
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_update_display_settings = make_checker(update_display_settings_event)
|
2020-07-08 15:29:13 +02:00
|
|
|
|
2021-07-26 08:35:27 +02:00
|
|
|
user_settings_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_settings")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("property", str),
|
|
|
|
("value", value_type),
|
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
|
|
|
("language_name", str),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
_check_user_settings_update = make_checker(user_settings_update_event)
|
|
|
|
|
2020-07-08 15:29:13 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_update_display_settings(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
2020-07-08 15:29:13 +02:00
|
|
|
"""
|
|
|
|
Display setting events have a "setting" field that
|
|
|
|
is more specifically typed according to the
|
|
|
|
UserProfile.property_types dictionary.
|
|
|
|
"""
|
|
|
|
_check_update_display_settings(var_name, event)
|
|
|
|
setting_name = event["setting_name"]
|
|
|
|
setting = event["setting"]
|
|
|
|
|
2020-08-08 13:41:21 +02:00
|
|
|
assert isinstance(setting_name, str)
|
2021-07-07 12:21:35 +02:00
|
|
|
if setting_name == "timezone":
|
|
|
|
assert isinstance(setting, str)
|
|
|
|
else:
|
|
|
|
setting_type = UserProfile.property_types[setting_name]
|
|
|
|
assert isinstance(setting, setting_type)
|
2020-07-08 15:29:13 +02:00
|
|
|
|
|
|
|
if setting_name == "default_language":
|
|
|
|
assert "language_name" in event.keys()
|
|
|
|
else:
|
|
|
|
assert "language_name" not in event.keys()
|
2020-07-08 15:29:13 +02:00
|
|
|
|
|
|
|
|
2021-07-26 08:35:27 +02:00
|
|
|
def check_user_settings_update(
|
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
) -> None:
|
|
|
|
_check_user_settings_update(var_name, event)
|
|
|
|
setting_name = event["property"]
|
|
|
|
value = event["value"]
|
|
|
|
|
|
|
|
assert isinstance(setting_name, str)
|
|
|
|
if setting_name == "timezone":
|
|
|
|
assert isinstance(value, str)
|
|
|
|
else:
|
2021-08-11 15:34:25 +02:00
|
|
|
setting_type = UserProfile.property_types[setting_name]
|
2021-07-26 08:35:27 +02:00
|
|
|
assert isinstance(value, setting_type)
|
|
|
|
|
|
|
|
if setting_name == "default_language":
|
|
|
|
assert "language_name" in event.keys()
|
|
|
|
else:
|
|
|
|
assert "language_name" not in event.keys()
|
|
|
|
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
update_global_notifications_event = event_dict_type(
|
2020-07-08 15:29:13 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("update_global_notifications")),
|
|
|
|
("notification_name", str),
|
|
|
|
("setting", value_type),
|
|
|
|
("user", str),
|
2020-07-08 15:29:13 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_update_global_notifications = make_checker(update_global_notifications_event)
|
2020-07-08 15:29:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
def check_update_global_notifications(
|
2021-02-12 08:19:30 +01:00
|
|
|
var_name: str,
|
|
|
|
event: Dict[str, object],
|
|
|
|
desired_val: Union[bool, int, str],
|
2020-07-08 15:29:13 +02:00
|
|
|
) -> None:
|
|
|
|
"""
|
2021-09-09 12:13:18 +02:00
|
|
|
See UserProfile.notification_settings_legacy for
|
2020-07-08 15:29:13 +02:00
|
|
|
more details.
|
|
|
|
"""
|
|
|
|
_check_update_global_notifications(var_name, event)
|
|
|
|
setting_name = event["notification_name"]
|
|
|
|
setting = event["setting"]
|
|
|
|
assert setting == desired_val
|
|
|
|
|
2020-08-08 13:41:21 +02:00
|
|
|
assert isinstance(setting_name, str)
|
2021-09-09 12:13:18 +02:00
|
|
|
setting_type = UserProfile.notification_settings_legacy[setting_name]
|
2020-07-08 15:29:13 +02:00
|
|
|
assert isinstance(setting, setting_type)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
|
|
|
|
2022-01-14 15:23:49 +01:00
|
|
|
# user_id field is null for embedded variant of update_message
|
2020-07-10 18:35:58 +02:00
|
|
|
update_message_required_fields = [
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("update_message")),
|
2022-01-14 15:23:49 +01:00
|
|
|
("user_id", OptionalType(int)),
|
2020-07-30 18:11:19 +02:00
|
|
|
("edit_timestamp", int),
|
|
|
|
("message_id", int),
|
|
|
|
("flags", ListType(str)),
|
|
|
|
("message_ids", ListType(int)),
|
2022-01-14 15:23:49 +01:00
|
|
|
("rendering_only", bool),
|
2021-12-15 21:17:21 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
update_message_stream_fields: List[Tuple[str, object]] = [
|
|
|
|
("stream_id", int),
|
|
|
|
("stream_name", str),
|
|
|
|
]
|
|
|
|
|
|
|
|
update_message_content_fields: List[Tuple[str, object]] = [
|
|
|
|
("is_me_message", bool),
|
|
|
|
("orig_content", str),
|
|
|
|
("orig_rendered_content", str),
|
|
|
|
("prev_rendered_content_version", int),
|
2022-01-14 15:23:49 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
update_message_content_or_embedded_data_fields: List[Tuple[str, object]] = [
|
|
|
|
("content", str),
|
2021-12-15 21:17:21 +01:00
|
|
|
("rendered_content", str),
|
|
|
|
]
|
|
|
|
|
|
|
|
update_message_topic_fields = [
|
2021-01-26 07:32:29 +01:00
|
|
|
(TOPIC_LINKS, ListType(_check_topic_links)),
|
2020-07-30 18:11:19 +02:00
|
|
|
(TOPIC_NAME, str),
|
2020-07-10 18:35:58 +02:00
|
|
|
]
|
|
|
|
|
2021-12-20 16:10:19 +01:00
|
|
|
update_message_change_stream_fields: List[Tuple[str, object]] = [
|
|
|
|
("new_stream_id", int),
|
|
|
|
]
|
|
|
|
|
|
|
|
update_message_change_stream_or_topic_fields: List[Tuple[str, object]] = [
|
|
|
|
(
|
|
|
|
"propagate_mode",
|
|
|
|
EnumType(
|
|
|
|
[
|
|
|
|
# The order here needs to match the OpenAPI definitions
|
|
|
|
"change_one",
|
|
|
|
"change_later",
|
|
|
|
"change_all",
|
|
|
|
]
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(ORIG_TOPIC, str),
|
|
|
|
]
|
|
|
|
|
2021-12-15 21:17:21 +01:00
|
|
|
update_message_optional_fields = (
|
2021-12-20 16:10:19 +01:00
|
|
|
update_message_stream_fields
|
|
|
|
+ update_message_content_fields
|
2022-01-14 15:23:49 +01:00
|
|
|
+ update_message_content_or_embedded_data_fields
|
2021-12-20 16:10:19 +01:00
|
|
|
+ update_message_topic_fields
|
|
|
|
+ update_message_change_stream_fields
|
|
|
|
+ update_message_change_stream_or_topic_fields
|
2021-12-15 21:17:21 +01:00
|
|
|
)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
2022-01-14 15:23:49 +01:00
|
|
|
# The schema here includes the embedded variant of update_message
|
2020-07-30 18:11:19 +02:00
|
|
|
update_message_event = event_dict_type(
|
2020-07-10 18:35:58 +02:00
|
|
|
required_keys=update_message_required_fields,
|
|
|
|
optional_keys=update_message_optional_fields,
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
_check_update_message = make_checker(update_message_event)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
def check_update_message(
|
|
|
|
var_name: str,
|
2020-08-08 13:41:21 +02:00
|
|
|
event: Dict[str, object],
|
2021-12-15 21:17:21 +01:00
|
|
|
is_stream_message: bool,
|
2020-07-10 18:35:58 +02:00
|
|
|
has_content: bool,
|
|
|
|
has_topic: bool,
|
|
|
|
has_new_stream_id: bool,
|
2022-01-14 15:23:49 +01:00
|
|
|
is_embedded_update_only: bool,
|
2020-07-10 18:35:58 +02:00
|
|
|
) -> None:
|
|
|
|
# Always check the basic schema first.
|
|
|
|
_check_update_message(var_name, event)
|
|
|
|
|
|
|
|
actual_keys = set(event.keys())
|
|
|
|
expected_keys = {"id"}
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_required_fields)
|
|
|
|
|
2021-12-15 21:17:21 +01:00
|
|
|
if is_stream_message:
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_stream_fields)
|
|
|
|
|
2020-07-10 18:35:58 +02:00
|
|
|
if has_content:
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_content_fields)
|
2022-01-14 15:23:49 +01:00
|
|
|
expected_keys.update(tup[0] for tup in update_message_content_or_embedded_data_fields)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
|
|
|
if has_topic:
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_topic_fields)
|
2021-12-20 16:10:19 +01:00
|
|
|
expected_keys.update(tup[0] for tup in update_message_change_stream_or_topic_fields)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
2021-12-20 16:10:19 +01:00
|
|
|
if has_new_stream_id:
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_change_stream_fields)
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_change_stream_or_topic_fields)
|
2021-12-15 21:17:21 +01:00
|
|
|
|
2022-01-14 15:23:49 +01:00
|
|
|
if is_embedded_update_only:
|
|
|
|
expected_keys.update(tup[0] for tup in update_message_content_or_embedded_data_fields)
|
|
|
|
assert event["user_id"] is None
|
|
|
|
else:
|
|
|
|
assert isinstance(event["user_id"], int)
|
2020-07-10 18:35:58 +02:00
|
|
|
|
2022-01-14 15:23:49 +01:00
|
|
|
assert event["rendering_only"] == is_embedded_update_only
|
|
|
|
assert expected_keys == actual_keys
|
2020-07-10 18:35:58 +02:00
|
|
|
|
2020-07-17 09:13:10 +02:00
|
|
|
|
2020-08-18 18:08:39 +02:00
|
|
|
update_message_flags_add_event = event_dict_type(
|
2020-07-17 09:13:10 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("update_message_flags")),
|
2020-08-18 18:08:39 +02:00
|
|
|
("op", Equals("add")),
|
|
|
|
("operation", Equals("add")),
|
2020-07-30 18:11:19 +02:00
|
|
|
("flag", str),
|
|
|
|
("messages", ListType(int)),
|
|
|
|
("all", bool),
|
2020-07-17 09:13:10 +02:00
|
|
|
]
|
|
|
|
)
|
2020-08-18 18:08:39 +02:00
|
|
|
check_update_message_flags_add = make_checker(update_message_flags_add_event)
|
2020-07-17 09:13:10 +02:00
|
|
|
|
|
|
|
|
2020-08-18 18:08:39 +02:00
|
|
|
update_message_flags_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("update_message_flags")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("operation", Equals("remove")),
|
2021-06-09 13:31:39 +02:00
|
|
|
("flag", EnumType(["read", "starred"])),
|
2020-08-18 18:08:39 +02:00
|
|
|
("messages", ListType(int)),
|
|
|
|
("all", bool),
|
2021-06-09 13:31:39 +02:00
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
(
|
|
|
|
"message_details",
|
|
|
|
StringDictType(
|
|
|
|
DictType(
|
|
|
|
required_keys=[
|
|
|
|
("type", EnumType(["private", "stream"])),
|
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
("mentioned", bool),
|
|
|
|
("user_ids", ListType(int)),
|
|
|
|
("stream_id", int),
|
|
|
|
("topic", str),
|
|
|
|
("unmuted_stream_msg", bool),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
2020-08-18 18:08:39 +02:00
|
|
|
)
|
|
|
|
check_update_message_flags_remove = make_checker(update_message_flags_remove_event)
|
2020-07-18 17:15:23 +02:00
|
|
|
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
group_type = DictType(
|
2020-07-18 17:19:30 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("id", int),
|
|
|
|
("name", str),
|
|
|
|
("members", ListType(int)),
|
2022-05-16 17:02:44 +02:00
|
|
|
("direct_subgroup_ids", ListType(int)),
|
2020-07-30 18:11:19 +02:00
|
|
|
("description", str),
|
2021-08-06 19:31:00 +02:00
|
|
|
("is_system_group", bool),
|
2020-07-18 17:19:30 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
user_group_add_event = event_dict_type(
|
2020-07-18 17:19:30 +02:00
|
|
|
required_keys=[
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("add")),
|
|
|
|
("group", group_type),
|
2020-07-18 17:19:30 +02:00
|
|
|
]
|
|
|
|
)
|
2020-07-30 18:11:19 +02:00
|
|
|
check_user_group_add = make_checker(user_group_add_event)
|
2020-07-18 17:19:30 +02:00
|
|
|
|
2020-08-14 13:18:52 +02:00
|
|
|
user_group_add_members_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("add_members")),
|
|
|
|
("group_id", int),
|
|
|
|
("user_ids", ListType(int)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_user_group_add_members = make_checker(user_group_add_members_event)
|
|
|
|
|
2020-08-14 13:38:36 +02:00
|
|
|
user_group_remove_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("remove")),
|
|
|
|
("group_id", int),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_user_group_remove = make_checker(user_group_remove_event)
|
|
|
|
|
2020-08-14 13:34:34 +02:00
|
|
|
user_group_remove_members_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("remove_members")),
|
|
|
|
("group_id", int),
|
|
|
|
("user_ids", ListType(int)),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
check_user_group_remove_members = make_checker(user_group_remove_members_event)
|
|
|
|
|
2020-08-14 13:50:55 +02:00
|
|
|
user_group_data_type = DictType(
|
|
|
|
required_keys=[],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
|
|
|
("name", str),
|
|
|
|
("description", str),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
user_group_update_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("update")),
|
|
|
|
("group_id", int),
|
|
|
|
("data", user_group_data_type),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
_check_user_group_update = make_checker(user_group_update_event)
|
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_user_group_update(var_name: str, event: Dict[str, object], field: str) -> None:
|
2020-08-14 13:50:55 +02:00
|
|
|
_check_user_group_update(var_name, event)
|
|
|
|
|
|
|
|
assert isinstance(event["data"], dict)
|
|
|
|
|
|
|
|
assert set(event["data"].keys()) == {field}
|
|
|
|
|
|
|
|
|
2022-03-01 07:52:47 +01:00
|
|
|
user_group_add_subgroups_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("add_subgroups")),
|
|
|
|
("group_id", int),
|
2022-05-16 17:02:44 +02:00
|
|
|
("direct_subgroup_ids", ListType(int)),
|
2022-03-01 07:52:47 +01:00
|
|
|
]
|
|
|
|
)
|
|
|
|
check_user_group_add_subgroups = make_checker(user_group_add_subgroups_event)
|
|
|
|
|
|
|
|
|
|
|
|
user_group_remove_subgroups_event = event_dict_type(
|
|
|
|
required_keys=[
|
|
|
|
("type", Equals("user_group")),
|
|
|
|
("op", Equals("remove_subgroups")),
|
|
|
|
("group_id", int),
|
2022-05-16 17:02:44 +02:00
|
|
|
("direct_subgroup_ids", ListType(int)),
|
2022-03-01 07:52:47 +01:00
|
|
|
]
|
|
|
|
)
|
|
|
|
check_user_group_remove_subgroups = make_checker(user_group_remove_subgroups_event)
|
|
|
|
|
|
|
|
|
2020-07-30 18:11:19 +02:00
|
|
|
user_status_event = event_dict_type(
|
2020-07-18 17:15:23 +02:00
|
|
|
required_keys=[
|
2021-01-20 19:53:11 +01:00
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("type", Equals("user_status")),
|
|
|
|
("user_id", int),
|
2021-01-20 19:53:11 +01:00
|
|
|
],
|
|
|
|
optional_keys=[
|
|
|
|
# force vertical
|
2020-07-30 18:11:19 +02:00
|
|
|
("away", bool),
|
|
|
|
("status_text", str),
|
2021-06-22 18:42:31 +02:00
|
|
|
("emoji_name", str),
|
|
|
|
("emoji_code", str),
|
|
|
|
("reaction_type", str),
|
2021-02-12 08:19:30 +01:00
|
|
|
],
|
2020-07-18 17:15:23 +02:00
|
|
|
)
|
2021-01-20 19:53:11 +01:00
|
|
|
_check_user_status = make_checker(user_status_event)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def check_user_status(var_name: str, event: Dict[str, object], fields: Set[str]) -> None:
|
2021-01-20 19:53:11 +01:00
|
|
|
_check_user_status(var_name, event)
|
|
|
|
|
|
|
|
assert set(event.keys()) == {"id", "type", "user_id"} | fields
|