Toot-Mastodon-CLI-TUI-clien.../tests/integration/test_read.py

204 lines
5.8 KiB
Python
Raw Permalink Normal View History

2023-11-21 10:09:04 +01:00
import json
import re
2023-03-30 10:56:03 +02:00
2023-11-30 20:08:59 +01:00
from tests.integration.conftest import TOOT_TEST_BASE_URL
2023-11-26 18:00:57 +01:00
from toot import api, cli
from toot.entities import Account, Status, from_dict, from_dict_list
2023-11-21 10:09:04 +01:00
from uuid import uuid4
2023-03-30 10:56:03 +02:00
2023-11-30 20:08:59 +01:00
def test_instance_default(app, run):
result = run(cli.read.instance)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert "Mastodon" in result.stdout
assert app.instance in result.stdout
assert "running Mastodon" in result.stdout
2023-03-30 10:56:03 +02:00
2023-11-30 20:08:59 +01:00
def test_instance_with_url(app, run):
result = run(cli.read.instance, TOOT_TEST_BASE_URL)
2023-11-30 20:08:59 +01:00
assert result.exit_code == 0
assert "Mastodon" in result.stdout
assert app.instance in result.stdout
assert "running Mastodon" in result.stdout
2023-11-21 10:09:04 +01:00
def test_instance_json(app, run):
result = run(cli.read.instance, "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
data = json.loads(result.stdout)
2023-11-21 10:09:04 +01:00
assert data["title"] is not None
assert data["description"] is not None
assert data["version"] is not None
2023-04-07 11:07:38 +02:00
def test_instance_anon(app, run_anon, base_url):
result = run_anon(cli.read.instance, base_url)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert "Mastodon" in result.stdout
assert app.instance in result.stdout
assert "running Mastodon" in result.stdout
2023-03-30 10:56:03 +02:00
# Need to specify the instance name when running anon
result = run_anon(cli.read.instance)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 1
2023-12-14 13:04:05 +01:00
assert result.stderr.strip() == "Error: INSTANCE argument not given and not logged in"
2023-03-30 10:56:03 +02:00
def test_whoami(user, run):
result = run(cli.read.whoami)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert f"@{user.username}" in result.stdout
def test_whoami_json(user, run):
result = run(cli.read.whoami, "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
data = json.loads(result.stdout)
account = from_dict(Account, data)
assert account.username == user.username
assert account.acct == user.username
2023-03-30 10:56:03 +02:00
def test_whois(app, friend, run):
variants = [
friend.username,
f"@{friend.username}",
f"{friend.username}@{app.instance}",
f"@{friend.username}@{app.instance}",
]
for username in variants:
result = run(cli.read.whois, username)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert f"@{friend.username}" in result.stdout
def test_whois_json(app, friend, run):
result = run(cli.read.whois, friend.username, "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
data = json.loads(result.stdout)
account = from_dict(Account, data)
assert account.username == friend.username
assert account.acct == friend.username
2023-03-30 10:56:03 +02:00
def test_search_account(friend, run):
result = run(cli.read.search, friend.username)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert result.stdout.strip() == f"Accounts:\n* @{friend.username}"
2023-03-30 10:56:03 +02:00
2023-11-26 18:00:57 +01:00
def test_search_account_json(friend, run):
result = run(cli.read.search, friend.username, "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
2023-03-30 10:56:03 +02:00
2023-11-26 18:00:57 +01:00
data = json.loads(result.stdout)
[account] = from_dict_list(Account, data["accounts"])
2023-11-21 18:16:23 +01:00
assert account.acct == friend.username
2023-03-30 10:56:03 +02:00
def test_search_hashtag(app, user, run):
api.post_status(app, user, "#hashtag_x")
api.post_status(app, user, "#hashtag_y")
api.post_status(app, user, "#hashtag_z")
result = run(cli.read.search, "#hashtag")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
assert result.stdout.strip() == "Hashtags:\n#hashtag_x, #hashtag_y, #hashtag_z"
2023-03-30 10:56:03 +02:00
2023-11-26 18:00:57 +01:00
def test_search_hashtag_json(app, user, run):
2023-11-21 18:16:23 +01:00
api.post_status(app, user, "#hashtag_x")
api.post_status(app, user, "#hashtag_y")
api.post_status(app, user, "#hashtag_z")
result = run(cli.read.search, "#hashtag", "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
data = json.loads(result.stdout)
[h1, h2, h3] = sorted(data["hashtags"], key=lambda h: h["name"])
2023-11-21 18:16:23 +01:00
assert h1["name"] == "hashtag_x"
assert h2["name"] == "hashtag_y"
assert h3["name"] == "hashtag_z"
def test_status(app, user, run):
uuid = str(uuid4())
2023-11-26 18:00:57 +01:00
status_id = api.post_status(app, user, uuid).json()["id"]
result = run(cli.read.status, status_id)
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
2023-11-26 18:00:57 +01:00
out = result.stdout.strip()
assert uuid in out
assert user.username in out
2023-11-26 18:00:57 +01:00
assert status_id in out
2023-11-26 18:00:57 +01:00
def test_status_json(app, user, run):
uuid = str(uuid4())
2023-11-26 18:00:57 +01:00
status_id = api.post_status(app, user, uuid).json()["id"]
result = run(cli.read.status, status_id, "--json")
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
status = from_dict(Status, json.loads(result.stdout))
assert status.id == status_id
assert status.account.acct == user.username
assert uuid in status.content
def test_thread(app, user, run):
uuid1 = str(uuid4())
uuid2 = str(uuid4())
uuid3 = str(uuid4())
s1 = api.post_status(app, user, uuid1).json()
s2 = api.post_status(app, user, uuid2, in_reply_to_id=s1["id"]).json()
s3 = api.post_status(app, user, uuid3, in_reply_to_id=s2["id"]).json()
for status in [s1, s2, s3]:
result = run(cli.read.thread, status["id"])
2023-11-26 18:00:57 +01:00
assert result.exit_code == 0
bits = re.split(r"─+", result.stdout.strip())
bits = [b for b in bits if b]
assert len(bits) == 3
assert s1["id"] in bits[0]
assert s2["id"] in bits[1]
assert s3["id"] in bits[2]
2023-11-26 18:00:57 +01:00
assert uuid1 in bits[0]
assert uuid2 in bits[1]
assert uuid3 in bits[2]
2023-11-28 12:26:08 +01:00
def test_thread_json(app, user, run):
uuid1 = str(uuid4())
uuid2 = str(uuid4())
uuid3 = str(uuid4())
s1 = api.post_status(app, user, uuid1).json()
s2 = api.post_status(app, user, uuid2, in_reply_to_id=s1["id"]).json()
s3 = api.post_status(app, user, uuid3, in_reply_to_id=s2["id"]).json()
result = run(cli.read.thread, s2["id"], "--json")
2023-11-28 12:26:08 +01:00
assert result.exit_code == 0
result = json.loads(result.stdout)
[ancestor] = [from_dict(Status, s) for s in result["ancestors"]]
[descendent] = [from_dict(Status, s) for s in result["descendants"]]
assert ancestor.id == s1["id"]
assert descendent.id == s3["id"]