2020-12-12 23:00:20 +00:00
|
|
|
# pylint: disable=missing-module-docstring, missing-class-docstring, missing-function-docstring
|
2020-09-17 20:02:52 +00:00
|
|
|
import json
|
|
|
|
import pathlib
|
2020-12-12 23:00:20 +00:00
|
|
|
from unittest.mock import patch
|
2020-09-17 20:02:52 +00:00
|
|
|
from django.test import TestCase
|
|
|
|
|
2020-12-12 23:00:20 +00:00
|
|
|
from bookwyrm import activitypub, models
|
2020-09-17 20:02:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Person(TestCase):
|
|
|
|
def setUp(self):
|
2021-03-08 16:49:10 +00:00
|
|
|
datafile = pathlib.Path(__file__).parent.joinpath("../data/ap_user.json")
|
2020-09-17 20:02:52 +00:00
|
|
|
self.user_data = json.loads(datafile.read_bytes())
|
|
|
|
|
|
|
|
def test_load_user_data(self):
|
|
|
|
activity = activitypub.Person(**self.user_data)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(activity.id, "https://example.com/user/mouse")
|
|
|
|
self.assertEqual(activity.preferredUsername, "mouse")
|
|
|
|
self.assertEqual(activity.type, "Person")
|
2020-12-12 23:00:20 +00:00
|
|
|
|
|
|
|
def test_user_to_model(self):
|
|
|
|
activity = activitypub.Person(**self.user_data)
|
2021-03-08 16:49:10 +00:00
|
|
|
with patch("bookwyrm.models.user.set_remote_server.delay"):
|
2021-02-17 04:26:51 +00:00
|
|
|
user = activity.to_model(model=models.User)
|
2021-03-08 16:49:10 +00:00
|
|
|
self.assertEqual(user.username, "mouse@example.com")
|
|
|
|
self.assertEqual(user.remote_id, "https://example.com/user/mouse")
|
2020-12-12 23:00:20 +00:00
|
|
|
self.assertFalse(user.local)
|