2022-04-14 23:32:18 +02:00
|
|
|
from zerver.actions.realm_playgrounds import do_add_realm_playground
|
2020-10-27 02:14:56 +01:00
|
|
|
from zerver.lib.test_classes import ZulipTestCase
|
|
|
|
from zerver.models import RealmPlayground, get_realm
|
|
|
|
|
|
|
|
|
|
|
|
class RealmPlaygroundTests(ZulipTestCase):
|
|
|
|
def test_create_one_playground_entry(self) -> None:
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
|
|
|
|
payload = {
|
|
|
|
"name": "Python playground",
|
|
|
|
"pygments_language": "Python",
|
|
|
|
"url_prefix": "https://python.example.com",
|
|
|
|
}
|
|
|
|
# Now send a POST request to the API endpoint.
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2020-10-27 02:14:56 +01:00
|
|
|
self.assert_json_success(resp)
|
|
|
|
|
|
|
|
# Check if the actual object exists
|
|
|
|
realm = get_realm("zulip")
|
|
|
|
self.assertTrue(
|
|
|
|
RealmPlayground.objects.filter(realm=realm, name="Python playground").exists()
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_create_multiple_playgrounds_for_same_language(self) -> None:
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
|
|
|
|
data = [
|
|
|
|
{
|
|
|
|
"name": "Python playground 1",
|
|
|
|
"pygments_language": "Python",
|
|
|
|
"url_prefix": "https://python.example.com",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Python playground 2",
|
|
|
|
"pygments_language": "Python",
|
|
|
|
"url_prefix": "https://python2.example.com",
|
|
|
|
},
|
|
|
|
]
|
|
|
|
for payload in data:
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2020-10-27 02:14:56 +01:00
|
|
|
self.assert_json_success(resp)
|
|
|
|
|
|
|
|
realm = get_realm("zulip")
|
|
|
|
self.assertTrue(
|
|
|
|
RealmPlayground.objects.filter(realm=realm, name="Python playground 1").exists()
|
|
|
|
)
|
|
|
|
self.assertTrue(
|
|
|
|
RealmPlayground.objects.filter(realm=realm, name="Python playground 2").exists()
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_invalid_params(self) -> None:
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
|
|
|
|
payload = {
|
|
|
|
"name": "Invalid URL",
|
|
|
|
"pygments_language": "Python",
|
|
|
|
"url_prefix": "https://invalid-url",
|
|
|
|
}
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2020-10-27 02:14:56 +01:00
|
|
|
self.assert_json_error(resp, "url_prefix is not a URL")
|
|
|
|
|
|
|
|
payload["url_prefix"] = "https://python.example.com"
|
|
|
|
payload["pygments_language"] = "a$b$c"
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2020-10-27 02:14:56 +01:00
|
|
|
self.assert_json_error(resp, "Invalid characters in pygments language")
|
|
|
|
|
|
|
|
def test_create_already_existing_playground(self) -> None:
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
|
|
|
|
payload = {
|
|
|
|
"name": "Python playground",
|
|
|
|
"pygments_language": "Python",
|
|
|
|
"url_prefix": "https://python.example.com",
|
|
|
|
}
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2020-10-27 02:14:56 +01:00
|
|
|
self.assert_json_success(resp)
|
|
|
|
|
2021-04-17 08:26:57 +02:00
|
|
|
resp = self.api_post(iago, "/json/realm/playgrounds", payload)
|
2021-05-13 03:39:29 +02:00
|
|
|
self.assert_json_error(
|
|
|
|
resp, "Realm playground with this Realm, Pygments language and Name already exists."
|
|
|
|
)
|
2020-10-27 02:14:56 +01:00
|
|
|
|
|
|
|
def test_not_realm_admin(self) -> None:
|
|
|
|
hamlet = self.example_user("hamlet")
|
|
|
|
|
|
|
|
resp = self.api_post(hamlet, "/json/realm/playgrounds")
|
|
|
|
self.assert_json_error(resp, "Must be an organization administrator")
|
2020-10-27 02:21:22 +01:00
|
|
|
|
|
|
|
resp = self.api_delete(hamlet, "/json/realm/playgrounds/1")
|
|
|
|
self.assert_json_error(resp, "Must be an organization administrator")
|
|
|
|
|
|
|
|
def test_delete_realm_playground(self) -> None:
|
|
|
|
iago = self.example_user("iago")
|
|
|
|
realm = get_realm("zulip")
|
|
|
|
|
|
|
|
playground_info = dict(
|
|
|
|
name="Python playground",
|
|
|
|
pygments_language="Python",
|
|
|
|
url_prefix="https://python.example.com",
|
|
|
|
)
|
2022-03-11 15:16:04 +01:00
|
|
|
playground_id = do_add_realm_playground(realm, acting_user=iago, **playground_info)
|
2020-10-27 02:21:22 +01:00
|
|
|
self.assertTrue(RealmPlayground.objects.filter(name="Python playground").exists())
|
|
|
|
|
|
|
|
result = self.api_delete(iago, f"/json/realm/playgrounds/{playground_id + 1}")
|
|
|
|
self.assert_json_error(result, "Invalid playground")
|
|
|
|
|
|
|
|
result = self.api_delete(iago, f"/json/realm/playgrounds/{playground_id}")
|
|
|
|
self.assert_json_success(result)
|
|
|
|
self.assertFalse(RealmPlayground.objects.filter(name="Python").exists())
|