forked from mirrors/bookwyrm
c7883cd615
To get the app working again I ran resetdb, let it crash in initdb, then ran the migration, then re-ran initdb
32 lines
963 B
Python
32 lines
963 B
Python
import json
|
|
import pathlib
|
|
from django.test import TestCase
|
|
|
|
from bookwyrm import activitypub, models
|
|
|
|
|
|
class Person(TestCase):
|
|
def setUp(self):
|
|
self.user = models.User.objects.create_user(
|
|
'rat', 'rat@rat.com', 'ratword',
|
|
)
|
|
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')
|
|
|
|
|
|
def test_serialize_model(self):
|
|
activity = self.user.to_activity()
|
|
self.assertEqual(activity['id'], self.user.remote_id)
|
|
self.assertEqual(
|
|
activity['endpoints'],
|
|
{'sharedInbox': self.user.shared_inbox}
|
|
)
|