mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
157 lines
5.9 KiB
Python
157 lines
5.9 KiB
Python
from django.http import HttpResponse
|
|
|
|
from zerver.lib.actions import (
|
|
do_change_stream_web_public,
|
|
do_deactivate_stream,
|
|
get_web_public_streams,
|
|
get_web_public_subs,
|
|
)
|
|
from zerver.lib.test_classes import ZulipTestCase
|
|
from zerver.models import get_realm
|
|
|
|
|
|
class GlobalPublicStreamTest(ZulipTestCase):
|
|
def test_non_existant_stream_id(self) -> None:
|
|
# Here we use a relatively big number as stream id assuming such an id
|
|
# won't exist in the test DB.
|
|
result = self.client_get("/archive/streams/100000000/topics/TopicGlobal")
|
|
self.assert_in_success_response(["This stream does not exist."], result)
|
|
|
|
def test_non_web_public_stream(self) -> None:
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
result = self.client_get(
|
|
"/archive/streams/" + str(test_stream.id) + "/topics/notpublicglobalstream",
|
|
)
|
|
self.assert_in_success_response(["This stream does not exist."], result)
|
|
|
|
def test_non_existant_topic(self) -> None:
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
do_change_stream_web_public(test_stream, True)
|
|
result = self.client_get(
|
|
"/archive/streams/" + str(test_stream.id) + "/topics/nonexistenttopic",
|
|
)
|
|
self.assert_in_success_response(["This topic does not exist."], result)
|
|
|
|
def test_web_public_stream_topic(self) -> None:
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
do_change_stream_web_public(test_stream, True)
|
|
|
|
def send_msg_and_get_result(msg: str) -> HttpResponse:
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
msg,
|
|
'TopicGlobal',
|
|
)
|
|
return self.client_get(
|
|
"/archive/streams/" + str(test_stream.id) + "/topics/TopicGlobal",
|
|
)
|
|
|
|
result = send_msg_and_get_result('Test Message 1')
|
|
self.assert_in_success_response(["Test Message 1"], result)
|
|
result = send_msg_and_get_result('/me goes testing.')
|
|
self.assert_in_success_response(["goes testing."], result)
|
|
|
|
def test_get_web_public_streams(self) -> None:
|
|
realm = get_realm("zulip")
|
|
public_streams = get_web_public_streams(realm)
|
|
self.assert_length(public_streams, 1)
|
|
public_stream = public_streams[0]
|
|
self.assertEqual(public_stream['name'], "Rome")
|
|
|
|
public_subs, public_unsubs, public_neversubs = get_web_public_subs(realm)
|
|
self.assert_length(public_subs, 1)
|
|
public_sub = public_subs[0]
|
|
self.assertEqual(public_sub['name'], "Rome")
|
|
self.assert_length(public_unsubs, 0)
|
|
self.assert_length(public_neversubs, 0)
|
|
|
|
# Now add a second public stream
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
do_change_stream_web_public(test_stream, True)
|
|
public_streams = get_web_public_streams(realm)
|
|
self.assert_length(public_streams, 2)
|
|
public_subs, public_unsubs, public_neversubs = get_web_public_subs(realm)
|
|
self.assert_length(public_subs, 2)
|
|
self.assert_length(public_unsubs, 0)
|
|
self.assert_length(public_neversubs, 0)
|
|
self.assertNotEqual(public_subs[0]['color'], public_subs[1]['color'])
|
|
|
|
do_deactivate_stream(test_stream)
|
|
public_streams = get_web_public_streams(realm)
|
|
self.assert_length(public_streams, 1)
|
|
public_subs, public_unsubs, public_neversubs = get_web_public_subs(realm)
|
|
self.assert_length(public_subs, 1)
|
|
self.assert_length(public_unsubs, 0)
|
|
self.assert_length(public_neversubs, 0)
|
|
|
|
class WebPublicTopicHistoryTest(ZulipTestCase):
|
|
def test_non_existant_stream_id(self) -> None:
|
|
result = self.client_get("/archive/streams/100000000/topics")
|
|
self.assert_json_success(result)
|
|
history = result.json()['topics']
|
|
self.assertEqual(history, [])
|
|
|
|
def test_non_web_public_stream(self) -> None:
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message',
|
|
'TopicGlobal',
|
|
)
|
|
|
|
result = self.client_get(
|
|
"/archive/streams/" + str(test_stream.id) + "/topics",
|
|
)
|
|
self.assert_json_success(result)
|
|
history = result.json()['topics']
|
|
self.assertEqual(history, [])
|
|
|
|
def test_web_public_stream(self) -> None:
|
|
test_stream = self.make_stream('Test Public Archives')
|
|
do_change_stream_web_public(test_stream, True)
|
|
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message 3',
|
|
topic_name='first_topic',
|
|
)
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message',
|
|
topic_name='TopicGlobal',
|
|
)
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message 2',
|
|
topic_name='topicglobal',
|
|
)
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message 3',
|
|
topic_name='second_topic',
|
|
)
|
|
self.send_stream_message(
|
|
self.example_user("iago"),
|
|
"Test Public Archives",
|
|
'Test Message 4',
|
|
topic_name='TopicGlobal',
|
|
)
|
|
|
|
result = self.client_get(
|
|
"/archive/streams/" + str(test_stream.id) + "/topics",
|
|
)
|
|
self.assert_json_success(result)
|
|
history = result.json()['topics']
|
|
self.assert_length(history, 3)
|
|
# Should be sorted with latest topic first
|
|
self.assertEqual(history[0]['name'], 'TopicGlobal')
|
|
self.assertEqual(history[1]['name'], 'second_topic')
|
|
self.assertEqual(history[2]['name'], 'first_topic')
|