2018-01-26 22:11:42 +01:00
|
|
|
from typing import Dict, Any, Optional, Iterable
|
|
|
|
import os
|
|
|
|
import ujson
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
if False:
|
2017-10-05 08:05:41 +02:00
|
|
|
from zulip import Client
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-01-26 22:11:42 +01:00
|
|
|
ZULIP_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
FIXTURE_PATH = os.path.join(ZULIP_DIR, 'templates', 'zerver', 'api', 'fixtures.json')
|
|
|
|
|
|
|
|
def load_api_fixtures():
|
|
|
|
# type: () -> Dict[str, Any]
|
|
|
|
with open(FIXTURE_PATH, 'r') as fp:
|
|
|
|
json_dict = ujson.loads(fp.read())
|
|
|
|
return json_dict
|
|
|
|
|
|
|
|
FIXTURES = load_api_fixtures()
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def add_subscriptions(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-02-06 04:17:10 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Subscribe to the stream "new stream"
|
|
|
|
result = client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{
|
|
|
|
'name': 'new stream',
|
|
|
|
'description': 'New stream for testing'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['add-subscriptions']['without_principals']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# To subscribe another user to a stream, you may pass in
|
|
|
|
# the `principals` argument, like so:
|
|
|
|
result = client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{'name': 'new stream', 'description': 'New stream for testing'}
|
|
|
|
],
|
|
|
|
principals=['newbie@zulip.com']
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
2017-01-13 13:50:39 +01:00
|
|
|
assert result['result'] == 'success'
|
2018-02-06 04:17:10 +01:00
|
|
|
assert 'newbie@zulip.com' in result['subscribed']
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-02-16 22:41:29 +01:00
|
|
|
def test_add_subscriptions_already_subscribed(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
result = client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{'name': 'new stream', 'description': 'New stream for testing'}
|
|
|
|
],
|
|
|
|
principals=['newbie@zulip.com']
|
|
|
|
)
|
|
|
|
|
|
|
|
fixture = FIXTURES['add-subscriptions']['already_subscribed']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2018-02-16 23:22:45 +01:00
|
|
|
def test_authorization_errors_fatal(client, nonadmin_client):
|
|
|
|
# type: (Client, Client) -> None
|
|
|
|
client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{'name': 'private_stream'}
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
stream_id = client.get_stream_id('private_stream')['stream_id']
|
|
|
|
client.call_endpoint(
|
|
|
|
'streams/{}'.format(stream_id),
|
|
|
|
method='PATCH',
|
|
|
|
request={'is_private': True}
|
|
|
|
)
|
|
|
|
|
|
|
|
result = nonadmin_client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{'name': 'private_stream'}
|
|
|
|
],
|
|
|
|
authorization_errors_fatal=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
fixture = FIXTURES['add-subscriptions']['unauthorized_errors_fatal_false']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
|
|
|
result = nonadmin_client.add_subscriptions(
|
|
|
|
streams=[
|
|
|
|
{'name': 'private_stream'}
|
|
|
|
],
|
|
|
|
authorization_errors_fatal=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
fixture = FIXTURES['add-subscriptions']['unauthorized_errors_fatal_true']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def create_user(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-01-31 05:36:57 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Create a user
|
|
|
|
request = {
|
|
|
|
'email': 'newbie@zulip.com',
|
|
|
|
'password': 'temp',
|
|
|
|
'full_name': 'New User',
|
|
|
|
'short_name': 'newbie'
|
|
|
|
}
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.create_user(request)
|
2018-01-31 05:36:57 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
2018-02-16 23:38:10 +01:00
|
|
|
fixture = FIXTURES['create-user']['successful_response']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
|
|
|
# Test "Email already used error"
|
|
|
|
result = client.create_user(request)
|
|
|
|
|
|
|
|
fixture = FIXTURES['create-user']['email_already_used_error']
|
2018-01-31 05:36:57 +01:00
|
|
|
test_against_fixture(result, fixture)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
def get_members(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-02-07 04:25:23 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Get all users in the realm
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.get_members()
|
2018-02-07 04:25:23 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['get-all-users']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['members'])
|
2017-01-13 13:50:39 +01:00
|
|
|
members = [m for m in result['members'] if m['email'] == 'newbie@zulip.com']
|
|
|
|
assert len(members) == 1
|
2018-02-07 04:25:23 +01:00
|
|
|
newbie = members[0]
|
|
|
|
assert not newbie['is_admin']
|
|
|
|
assert newbie['full_name'] == 'New User'
|
|
|
|
|
|
|
|
member_fixture = fixture['members'][0]
|
|
|
|
member_result = result['members'][0]
|
|
|
|
test_against_fixture(member_result, member_fixture,
|
|
|
|
check_if_exists=member_fixture.keys())
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-02-07 04:25:23 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# You may pass the `client_gravatar` query parameter as follows:
|
|
|
|
result = client.call_endpoint(
|
|
|
|
url='users?client_gravatar=true',
|
|
|
|
method='GET',
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['members'])
|
|
|
|
assert result['members'][0]['avatar_url'] is None
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
def get_profile(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-01-31 06:06:56 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Get the profile of the user/bot that requests this endpoint,
|
|
|
|
# which is `client` in this case:
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.get_profile()
|
2018-01-31 06:06:56 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['get-profile']
|
|
|
|
check_if_equal = ['email', 'full_name', 'msg', 'result', 'short_name']
|
|
|
|
check_if_exists = ['client_id', 'is_admin', 'is_bot', 'max_message_id',
|
|
|
|
'pointer', 'user_id']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=check_if_equal,
|
|
|
|
check_if_exists=check_if_exists)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
def get_stream_id(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-01-28 00:06:45 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Get the ID of a given stream
|
2017-01-13 13:50:39 +01:00
|
|
|
stream_name = 'new stream'
|
|
|
|
result = client.get_stream_id(stream_name)
|
2018-01-28 00:06:45 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['get-stream-id']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['stream_id'])
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
def get_streams(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-01-31 05:04:43 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Get all streams that the user has access to
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.get_streams()
|
2018-01-31 05:04:43 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['get-all-streams']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['streams'])
|
|
|
|
assert len(result['streams']) == len(fixture['streams'])
|
2017-01-13 13:50:39 +01:00
|
|
|
streams = [s for s in result['streams'] if s['name'] == 'new stream']
|
|
|
|
assert streams[0]['description'] == 'New stream for testing'
|
|
|
|
|
2018-02-03 00:04:48 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# You may pass in one or more of the query parameters mentioned above
|
|
|
|
# as keyword arguments, like so:
|
|
|
|
result = client.get_streams(include_public=False)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['streams'])
|
|
|
|
assert len(result['streams']) == 4
|
|
|
|
|
2018-02-16 21:58:03 +01:00
|
|
|
def test_user_not_authorized_error(nonadmin_client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
result = nonadmin_client.get_streams(include_all_active=True)
|
|
|
|
|
|
|
|
fixture = FIXTURES['user-not-authorized-error']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def get_subscribers(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
result = client.get_subscribers(stream='new stream')
|
2018-02-06 04:17:10 +01:00
|
|
|
assert result['subscribers'] == ['iago@zulip.com', 'newbie@zulip.com']
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
def get_user_agent(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
result = client.get_user_agent()
|
|
|
|
assert result.startswith('ZulipPython/')
|
|
|
|
|
|
|
|
def list_subscriptions(client):
|
|
|
|
# type: (Client) -> None
|
2018-01-28 00:39:16 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Get all streams that the user is subscribed to
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.list_subscriptions()
|
2018-01-28 00:39:16 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['get-subscribed-streams']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['subscriptions'])
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
streams = [s for s in result['subscriptions'] if s['name'] == 'new stream']
|
|
|
|
assert streams[0]['description'] == 'New stream for testing'
|
|
|
|
|
|
|
|
def remove_subscriptions(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-02-06 04:47:40 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Unsubscribe from the stream "new stream"
|
|
|
|
result = client.remove_subscriptions(
|
|
|
|
['new stream']
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['remove-subscriptions']
|
|
|
|
test_against_fixture(result, fixture)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
# test it was actually removed
|
|
|
|
result = client.list_subscriptions()
|
|
|
|
assert result['result'] == 'success'
|
|
|
|
streams = [s for s in result['subscriptions'] if s['name'] == 'new stream']
|
|
|
|
assert len(streams) == 0
|
|
|
|
|
2018-02-08 04:25:11 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Unsubscribe another user from the stream "new stream"
|
|
|
|
result = client.remove_subscriptions(
|
|
|
|
['new stream'],
|
|
|
|
principals=['newbie@zulip.com']
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
test_against_fixture(result, fixture)
|
2018-02-06 04:47:40 +01:00
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def render_message(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
2018-01-26 22:11:42 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Render a message
|
|
|
|
request = {
|
|
|
|
'content': '**foo**'
|
|
|
|
}
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.render_message(request)
|
2018-01-26 22:11:42 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['render-message']
|
|
|
|
test_against_fixture(result, fixture)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-01-27 22:26:16 +01:00
|
|
|
def stream_message(client):
|
2017-01-13 13:50:39 +01:00
|
|
|
# type: (Client) -> int
|
|
|
|
|
2018-01-27 22:26:16 +01:00
|
|
|
# {code_example|start}
|
|
|
|
# Send a stream message
|
|
|
|
request = {
|
|
|
|
"type": "stream",
|
|
|
|
"to": "Denmark",
|
|
|
|
"subject": "Castle",
|
|
|
|
"content": "Something is rotten in the state of Denmark."
|
|
|
|
}
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.send_message(request)
|
2018-01-27 22:26:16 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['stream-message']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['result'],
|
|
|
|
check_if_exists=['id'])
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
# test it was actually sent
|
2018-01-27 22:26:16 +01:00
|
|
|
message_id = result['id']
|
2017-01-13 13:50:39 +01:00
|
|
|
url = 'messages/' + str(message_id)
|
|
|
|
result = client.call_endpoint(
|
|
|
|
url=url,
|
|
|
|
method='GET'
|
|
|
|
)
|
|
|
|
assert result['result'] == 'success'
|
2018-01-27 22:26:16 +01:00
|
|
|
assert result['raw_content'] == request['content']
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
return message_id
|
|
|
|
|
2018-02-16 20:25:59 +01:00
|
|
|
def test_nonexistent_stream_error(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
request = {
|
|
|
|
"type": "stream",
|
|
|
|
"to": "nonexistent_stream",
|
|
|
|
"subject": "Castle",
|
|
|
|
"content": "Something is rotten in the state of Denmark."
|
|
|
|
}
|
|
|
|
result = client.send_message(request)
|
|
|
|
|
|
|
|
fixture = FIXTURES['nonexistent-stream-error']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2018-01-27 22:56:36 +01:00
|
|
|
def private_message(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# Send a private message
|
|
|
|
request = {
|
|
|
|
"type": "private",
|
|
|
|
"to": "iago@zulip.com",
|
|
|
|
"content": "I come not, friends, to steal away your hearts."
|
|
|
|
}
|
|
|
|
result = client.send_message(request)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['private-message']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['result'],
|
|
|
|
check_if_exists=['id'])
|
|
|
|
|
|
|
|
# test it was actually sent
|
|
|
|
message_id = result['id']
|
|
|
|
url = 'messages/' + str(message_id)
|
|
|
|
result = client.call_endpoint(
|
|
|
|
url=url,
|
|
|
|
method='GET'
|
|
|
|
)
|
|
|
|
assert result['result'] == 'success'
|
|
|
|
assert result['raw_content'] == request['content']
|
|
|
|
|
2018-02-16 20:35:05 +01:00
|
|
|
def test_private_message_invalid_recipient(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
request = {
|
|
|
|
"type": "private",
|
|
|
|
"to": "eeshan@zulip.com",
|
|
|
|
"content": "I come not, friends, to steal away your hearts."
|
|
|
|
}
|
|
|
|
result = client.send_message(request)
|
|
|
|
|
|
|
|
fixture = FIXTURES['invalid-pm-recipient-error']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def update_message(client, message_id):
|
|
|
|
# type: (Client, int) -> None
|
|
|
|
|
|
|
|
assert int(message_id)
|
2018-01-27 23:18:19 +01:00
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# Edit a message
|
|
|
|
# (make sure that message_id below is set to the ID of the
|
|
|
|
# message you wish to update)
|
|
|
|
request = {
|
|
|
|
"message_id": message_id,
|
|
|
|
"content": "New content"
|
|
|
|
}
|
2017-01-13 13:50:39 +01:00
|
|
|
result = client.update_message(request)
|
2018-01-27 23:18:19 +01:00
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
fixture = FIXTURES['update-message']
|
|
|
|
test_against_fixture(result, fixture)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
|
|
|
# test it was actually updated
|
|
|
|
url = 'messages/' + str(message_id)
|
|
|
|
result = client.call_endpoint(
|
|
|
|
url=url,
|
|
|
|
method='GET'
|
|
|
|
)
|
|
|
|
assert result['result'] == 'success'
|
2018-01-27 23:18:19 +01:00
|
|
|
assert result['raw_content'] == request['content']
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-02-16 21:26:43 +01:00
|
|
|
def test_update_message_edit_permission_error(client, nonadmin_client):
|
|
|
|
# type: (Client, Client) -> None
|
|
|
|
request = {
|
|
|
|
"type": "stream",
|
|
|
|
"to": "Denmark",
|
|
|
|
"subject": "Castle",
|
|
|
|
"content": "Something is rotten in the state of Denmark."
|
|
|
|
}
|
|
|
|
result = client.send_message(request)
|
|
|
|
|
|
|
|
request = {
|
|
|
|
"message_id": result["id"],
|
|
|
|
"content": "New content"
|
|
|
|
}
|
|
|
|
result = nonadmin_client.update_message(request)
|
|
|
|
|
|
|
|
fixture = FIXTURES['update-message-edit-permission-error']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2018-02-07 05:00:10 +01:00
|
|
|
def register_queue(client):
|
|
|
|
# type: (Client) -> str
|
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# Register the queue
|
|
|
|
result = client.register()
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
client.deregister(result['queue_id'])
|
|
|
|
fixture = FIXTURES['register-queue']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['last_event_id', 'queue_id'])
|
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# You may pass in one or more of the arguments documented below
|
|
|
|
# as keyword arguments, like so:
|
|
|
|
result = client.register(
|
|
|
|
event_types=['messages']
|
|
|
|
)
|
|
|
|
# {code_example|end}
|
|
|
|
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['msg', 'result'],
|
|
|
|
check_if_exists=['last_event_id', 'queue_id'])
|
|
|
|
|
|
|
|
return result['queue_id']
|
|
|
|
|
2018-02-08 03:54:20 +01:00
|
|
|
def deregister_queue(client, queue_id):
|
|
|
|
# type: (Client, str) -> None
|
|
|
|
|
|
|
|
# {code_example|start}
|
|
|
|
# Delete a queue (queue_id is the ID of the queue
|
|
|
|
# to be removed)
|
|
|
|
result = client.deregister(queue_id)
|
|
|
|
# {code_example|end}
|
|
|
|
|
2018-02-16 23:49:35 +01:00
|
|
|
fixture = FIXTURES['delete-queue']['successful_response']
|
2018-02-08 03:54:20 +01:00
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2018-02-16 23:49:35 +01:00
|
|
|
# Test "BAD_EVENT_QUEUE_ID" error
|
|
|
|
result = client.deregister(queue_id)
|
|
|
|
fixture = FIXTURES['delete-queue']['bad_event_queue_id_error']
|
|
|
|
test_against_fixture(result, fixture, check_if_equal=['code', 'result'],
|
|
|
|
check_if_exists=['queue_id', 'msg'])
|
|
|
|
|
2018-02-06 21:04:07 +01:00
|
|
|
def test_invalid_api_key(client_with_invalid_key):
|
|
|
|
# type: (Client) -> None
|
|
|
|
result = client_with_invalid_key.list_subscriptions()
|
|
|
|
fixture = FIXTURES['invalid-api-key']
|
|
|
|
test_against_fixture(result, fixture)
|
|
|
|
|
2018-02-16 21:03:50 +01:00
|
|
|
def test_missing_request_argument(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
result = client.render_message({})
|
|
|
|
|
|
|
|
fixture = FIXTURES['missing-request-argument-error']
|
|
|
|
test_against_fixture(result, fixture)
|
2018-02-06 21:04:07 +01:00
|
|
|
|
2018-01-26 22:11:42 +01:00
|
|
|
TEST_FUNCTIONS = {
|
|
|
|
'render-message': render_message,
|
2018-01-27 22:26:16 +01:00
|
|
|
'stream-message': stream_message,
|
2018-01-27 22:56:36 +01:00
|
|
|
'private-message': private_message,
|
2018-01-27 23:18:19 +01:00
|
|
|
'update-message': update_message,
|
2018-01-28 00:06:45 +01:00
|
|
|
'get-stream-id': get_stream_id,
|
2018-01-28 00:39:16 +01:00
|
|
|
'get-subscribed-streams': list_subscriptions,
|
2018-01-31 05:04:43 +01:00
|
|
|
'get-all-streams': get_streams,
|
2018-01-31 05:36:57 +01:00
|
|
|
'create-user': create_user,
|
2018-01-31 06:06:56 +01:00
|
|
|
'get-profile': get_profile,
|
2018-02-06 04:17:10 +01:00
|
|
|
'add-subscriptions': add_subscriptions,
|
2018-02-06 04:47:40 +01:00
|
|
|
'remove-subscriptions': remove_subscriptions,
|
2018-02-07 04:25:23 +01:00
|
|
|
'get-all-users': get_members,
|
2018-02-07 05:00:10 +01:00
|
|
|
'register-queue': register_queue,
|
2018-02-08 03:54:20 +01:00
|
|
|
'delete-queue': deregister_queue,
|
2018-01-26 22:11:42 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
# SETUP METHODS FOLLOW
|
|
|
|
|
2018-01-26 22:11:42 +01:00
|
|
|
def test_against_fixture(result, fixture, check_if_equal=[], check_if_exists=[]):
|
|
|
|
# type: (Dict[str, Any], Dict[str, Any], Optional[Iterable[str]], Optional[Iterable[str]]) -> None
|
2018-01-27 22:26:16 +01:00
|
|
|
assert len(result) == len(fixture)
|
|
|
|
|
2018-01-26 22:11:42 +01:00
|
|
|
if not check_if_equal and not check_if_exists:
|
|
|
|
for key, value in fixture.items():
|
|
|
|
assert result[key] == fixture[key]
|
|
|
|
|
|
|
|
if check_if_equal:
|
|
|
|
for key in check_if_equal:
|
|
|
|
assert result[key] == fixture[key]
|
|
|
|
|
|
|
|
if check_if_exists:
|
|
|
|
for key in check_if_exists:
|
|
|
|
assert key in result
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def test_messages(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
render_message(client)
|
2018-01-27 22:26:16 +01:00
|
|
|
message_id = stream_message(client)
|
2017-01-13 13:50:39 +01:00
|
|
|
update_message(client, message_id)
|
2018-01-27 22:56:36 +01:00
|
|
|
private_message(client)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-02-16 20:25:59 +01:00
|
|
|
test_nonexistent_stream_error(client)
|
2018-02-16 20:35:05 +01:00
|
|
|
test_private_message_invalid_recipient(client)
|
2018-02-16 20:25:59 +01:00
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def test_users(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
create_user(client)
|
|
|
|
get_members(client)
|
|
|
|
get_profile(client)
|
|
|
|
|
|
|
|
def test_streams(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
add_subscriptions(client)
|
2018-02-16 22:41:29 +01:00
|
|
|
test_add_subscriptions_already_subscribed(client)
|
2017-01-13 13:50:39 +01:00
|
|
|
list_subscriptions(client)
|
|
|
|
get_stream_id(client)
|
|
|
|
get_streams(client)
|
|
|
|
get_subscribers(client)
|
2018-02-06 04:47:40 +01:00
|
|
|
remove_subscriptions(client)
|
2017-01-13 13:50:39 +01:00
|
|
|
|
2018-02-07 05:00:10 +01:00
|
|
|
def test_queues(client):
|
|
|
|
# type: (Client) -> None
|
2018-02-16 02:53:45 +01:00
|
|
|
# Note that the example for api/get-events-from-queue is not tested.
|
|
|
|
# Since, methods such as client.get_events() or client.call_on_each_message
|
|
|
|
# are blocking calls and since the event queue backend is already
|
|
|
|
# thoroughly tested in zerver/tests/test_event_queue.py, it is not worth
|
|
|
|
# the effort to come up with asynchronous logic for testing those here.
|
2018-02-08 03:54:20 +01:00
|
|
|
queue_id = register_queue(client)
|
|
|
|
deregister_queue(client, queue_id)
|
2018-02-07 05:00:10 +01:00
|
|
|
|
2018-02-16 21:03:50 +01:00
|
|
|
def test_errors(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
test_missing_request_argument(client)
|
|
|
|
|
2017-01-13 13:50:39 +01:00
|
|
|
def test_the_api(client):
|
|
|
|
# type: (Client) -> None
|
|
|
|
|
|
|
|
get_user_agent(client)
|
|
|
|
test_users(client)
|
|
|
|
test_streams(client)
|
|
|
|
test_messages(client)
|
2018-02-07 05:00:10 +01:00
|
|
|
test_queues(client)
|
2018-02-16 21:03:50 +01:00
|
|
|
test_errors(client)
|