check alias with new user data

Instead of breaking a bunch of existing tests...
This commit is contained in:
Hugh Rundle 2024-09-09 08:47:59 +10:00
parent ed55e052f6
commit 1a93ba0cac
No known key found for this signature in database
GPG key ID: A7E35779918253F9
4 changed files with 55 additions and 22 deletions

View file

@ -46,11 +46,16 @@ class BaseActivity(TestCase):
# don't try to load the user icon
del self.userdata["icon"]
remote_datafile = pathlib.Path(__file__).parent.joinpath(
"../data/ap_user_external.json"
)
self.remote_userdata = json.loads(remote_datafile.read_bytes())
del self.remote_userdata["icon"]
alias_datafile = pathlib.Path(__file__).parent.joinpath(
"../data/ap_user_aliased.json"
)
self.alias_userdata = json.loads(alias_datafile.read_bytes())
# don't try to load the user icon
del self.alias_userdata["icon"]
image_path = pathlib.Path(__file__).parent.joinpath(
@ -117,13 +122,6 @@ class BaseActivity(TestCase):
status=200,
)
responses.add(
responses.GET,
"https://example.com/user/moose",
json=self.alias_userdata,
status=200,
)
with patch("bookwyrm.models.user.set_remote_server.delay"):
result = resolve_remote_id(
"https://example.com/user/mouse", model=models.User
@ -148,25 +146,21 @@ class BaseActivity(TestCase):
responses.add(
responses.GET,
"https://example.com/user/mouse",
json=self.userdata,
"https://example.com/user/ali",
json=self.remote_userdata,
status=200,
)
with patch("bookwyrm.models.user.set_remote_server.delay"):
result = resolve_remote_id(
"https://example.com/user/mouse", model=models.User
"https://example.com/user/moose", model=models.User
)
self.assertIsInstance(result, models.User)
self.assertEqual(result.name, "MOUSE?? MOUSE!!")
self.assertEqual(
models.User.objects.count(), 3
) # created a new mouse plus the alias
alias = models.User.objects.last() # moose
self.assertEqual(alias.name, "moose?? moose!!") # check it's moose
self.assertEqual(
result.also_known_as.first(), alias
) # moose is alias of new mouse
self.assertEqual(result.name, "moose?? moose!!")
self.assertEqual(models.User.objects.count(), 3) # created moose plus the alias
alias = models.User.objects.last()
self.assertEqual(alias.name, "Ali As")
self.assertEqual(result.also_known_as.first(), alias) # Ali is alias of Moose
def test_to_model_invalid_model(self, *_):
"""catch mismatch between activity type and model type"""

View file

@ -28,7 +28,6 @@
},
"bookwyrmUser": true,
"manuallyApprovesFollowers": false,
"alsoKnownAs": ["https://example.com/user/moose"],
"discoverable": false,
"devices": "https://friend.camp/users/tripofmice/collections/devices",
"tag": [],

View file

@ -29,7 +29,7 @@
"bookwyrmUser": true,
"manuallyApprovesFollowers": false,
"discoverable": false,
"alsoKnownAs": ["http://example.com/a/b"],
"alsoKnownAs": ["https://example.com/user/ali"],
"devices": "",
"tag": [],
"icon": {

View file

@ -0,0 +1,40 @@
{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1",
{
"manuallyApprovesFollowers": "as:manuallyApprovesFollowers",
"schema": "http://schema.org#",
"PropertyValue": "schema:PropertyValue",
"value": "schema:value"
}
],
"id": "https://example.com/user/ali",
"type": "Person",
"preferredUsername": "alias",
"name": "Ali As",
"inbox": "https://example.com/user/ali/inbox",
"outbox": "https://example.com/user/ali/outbox",
"followers": "https://example.com/user/ali/followers",
"following": "https://example.com/user/ali/following",
"summary": "",
"publicKey": {
"id": "https://example.com/user/ali/#main-key",
"owner": "https://example.com/user/ali",
"publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6QisDrjOQvkRo/MqNmSYPwqtt\nCxg/8rCW+9jKbFUKvqjTeKVotEE85122v/DCvobCCdfQuYIFdVMk+dB1xJ0iPGPg\nyU79QHY22NdV9mFKA2qtXVVxb5cxpA4PlwOHM6PM/k8B+H09OUrop2aPUAYwy+vg\n+MXyz8bAXrIS1kq6fQIDAQAB\n-----END PUBLIC KEY-----"
},
"endpoints": {
"sharedInbox": "https://example.com/inbox"
},
"bookwyrmUser": true,
"manuallyApprovesFollowers": false,
"alsoKnownAs": [],
"discoverable": false,
"devices": "",
"tag": [],
"icon": {
"type": "Image",
"mediaType": "image/png",
"url": "https://example.com/images/avatars/ALIAS-2-crop-50.png"
}
}