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
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
import json
|
|
import pathlib
|
|
from django.test import TestCase
|
|
|
|
from bookwyrm import models, incoming
|
|
|
|
|
|
class Favorite(TestCase):
|
|
''' not too much going on in the books model but here we are '''
|
|
def setUp(self):
|
|
self.remote_user = models.User.objects.create_user(
|
|
'rat', 'rat@rat.com', 'ratword',
|
|
local=False,
|
|
remote_id='https://example.com/users/rat',
|
|
inbox='https://example.com/users/rat/inbox',
|
|
outbox='https://example.com/users/rat/outbox',
|
|
)
|
|
self.local_user = models.User.objects.create_user(
|
|
'mouse', 'mouse@mouse.com', 'mouseword',
|
|
remote_id='http://local.com/user/mouse')
|
|
self.status = models.Status.objects.create(
|
|
user=self.local_user,
|
|
content='Test status',
|
|
remote_id='http://local.com/status/1',
|
|
)
|
|
|
|
datafile = pathlib.Path(__file__).parent.joinpath(
|
|
'data/ap_user.json'
|
|
)
|
|
self.user_data = json.loads(datafile.read_bytes())
|
|
|
|
|
|
|
|
def test_handle_favorite(self):
|
|
activity = {
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
'id': 'http://example.com/activity/1',
|
|
|
|
'type': 'Create',
|
|
'actor': 'https://example.com/users/rat',
|
|
'published': 'Mon, 25 May 2020 19:31:20 GMT',
|
|
'to': ['https://example.com/user/rat/followers'],
|
|
'cc': ['https://www.w3.org/ns/activitystreams#Public'],
|
|
'object': {
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
'id': 'http://example.com/fav/1',
|
|
'type': 'Like',
|
|
'actor': 'https://example.com/users/rat',
|
|
'object': 'http://local.com/status/1',
|
|
},
|
|
'signature': {}
|
|
}
|
|
|
|
result = incoming.handle_favorite(activity)
|
|
|
|
fav = models.Favorite.objects.get(remote_id='http://example.com/fav/1')
|
|
self.assertEqual(fav.status, self.status)
|
|
self.assertEqual(fav.remote_id, 'http://example.com/fav/1')
|
|
self.assertEqual(fav.user, self.remote_user)
|