mirror of https://gitlab.com/litecord/litecord.git
130 lines
3.7 KiB
Python
130 lines
3.7 KiB
Python
"""
|
|
|
|
Litecord
|
|
Copyright (C) 2018-2019 Luna Mendes
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, version 3 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
import secrets
|
|
|
|
import pytest
|
|
|
|
from tests.common import login
|
|
from litecord.blueprints.guilds import delete_guild
|
|
|
|
async def _create_guild(test_cli, *, token=None):
|
|
token = token or await login('admin', test_cli)
|
|
|
|
genned_name = secrets.token_hex(6)
|
|
|
|
resp = await test_cli.post('/api/v6/guilds', headers={
|
|
'Authorization': token
|
|
}, json={
|
|
'name': genned_name,
|
|
'region': None
|
|
})
|
|
|
|
assert resp.status_code == 200
|
|
rjson = await resp.json
|
|
assert isinstance(rjson, dict)
|
|
assert rjson['name'] == genned_name
|
|
|
|
return rjson
|
|
|
|
|
|
async def _fetch_guild(test_cli, guild_id, *, token=None, ret_early=False):
|
|
token = token or await login('admin', test_cli)
|
|
|
|
resp = await test_cli.get(f'/api/v6/admin/guilds/{guild_id}', headers={
|
|
'Authorization': token
|
|
})
|
|
|
|
if ret_early:
|
|
return resp
|
|
|
|
assert resp.status_code == 200
|
|
rjson = await resp.json
|
|
assert isinstance(rjson, dict)
|
|
assert rjson['id'] == guild_id
|
|
|
|
return rjson
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_guild_fetch(test_cli):
|
|
"""Test the creation and fetching of a guild via the Admin API."""
|
|
token = await login('admin', test_cli)
|
|
rjson = await _create_guild(test_cli, token=token)
|
|
guild_id = rjson['id']
|
|
|
|
try:
|
|
await _fetch_guild(test_cli, guild_id)
|
|
finally:
|
|
await delete_guild(int(guild_id), app_=test_cli.app)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_guild_update(test_cli):
|
|
"""Test the update of a guild via the Admin API."""
|
|
token = await login('admin', test_cli)
|
|
rjson = await _create_guild(test_cli, token=token)
|
|
guild_id = rjson['id']
|
|
assert not rjson['unavailable']
|
|
|
|
try:
|
|
# I believe setting up an entire gateway client registered to the guild
|
|
# would be overkill to test the side-effects, so... I'm not
|
|
# testing them. Yes, I know its a bad idea, but if someone has an easier
|
|
# way to write that, do send an MR.
|
|
resp = await test_cli.patch(
|
|
f'/api/v6/admin/guilds/{guild_id}',
|
|
headers={
|
|
'Authorization': token
|
|
}, json={
|
|
'unavailable': True
|
|
})
|
|
|
|
assert resp.status_code == 200
|
|
rjson = await resp.json
|
|
assert isinstance(rjson, dict)
|
|
assert rjson['id'] == guild_id
|
|
assert rjson['unavailable']
|
|
finally:
|
|
await delete_guild(int(guild_id), app_=test_cli.app)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_guild_delete(test_cli):
|
|
"""Test the update of a guild via the Admin API."""
|
|
token = await login('admin', test_cli)
|
|
rjson = await _create_guild(test_cli, token=token)
|
|
guild_id = rjson['id']
|
|
|
|
try:
|
|
resp = await test_cli.delete(
|
|
f'/api/v6/admin/guilds/{guild_id}',
|
|
headers={
|
|
'Authorization': token
|
|
})
|
|
|
|
assert resp.status_code == 204
|
|
|
|
resp = await _fetch_guild(test_cli, guild_id, token=token,
|
|
ret_early=True)
|
|
|
|
assert resp.status_code == 404
|
|
finally:
|
|
await delete_guild(int(guild_id), app_=test_cli.app)
|