bookwyrm-mastodon/bookwyrm/tests/activitypub/test_person.py

21 lines
581 B
Python
Raw Normal View History

import json
import pathlib
from django.test import TestCase
2020-12-03 15:57:44 -05:00
from bookwyrm import activitypub
class Person(TestCase):
def setUp(self):
datafile = pathlib.Path(__file__).parent.joinpath(
'../data/ap_user.json'
)
self.user_data = json.loads(datafile.read_bytes())
def test_load_user_data(self):
activity = activitypub.Person(**self.user_data)
self.assertEqual(activity.id, 'https://example.com/user/mouse')
self.assertEqual(activity.preferredUsername, 'mouse')
self.assertEqual(activity.type, 'Person')