mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
52 lines
2.2 KiB
Gherkin
52 lines
2.2 KiB
Gherkin
Feature: Follow a user
|
|
I want to be able to follow a user on another instance.
|
|
Also if I do not want to follow a previous followed user anymore,
|
|
I want to undo the follow.
|
|
|
|
Background:
|
|
Given our own server runs at "http://localhost:4123"
|
|
And we have the following users in our database:
|
|
| Slug |
|
|
| peter-lustiger |
|
|
| bob-der-baumeister |
|
|
| karl-heinz |
|
|
|
|
Scenario: Send a follow to a user inbox and make sure it's added to the right followers collection
|
|
When I send a POST request with the following activity to "/activitypub/users/peter-lustiger/inbox":
|
|
"""
|
|
{
|
|
"@context": "https://www.w3.org/ns/activitystreams",
|
|
"id": "https://localhost:4123/activitypub/users/bob-der-baumeister/status/83J23549sda1k72fsa4567na42312455kad83",
|
|
"type": "Follow",
|
|
"actor": "http://localhost:4123/activitypub/users/bob-der-baumeister",
|
|
"object": "http://localhost:4123/activitypub/users/peter-lustiger"
|
|
}
|
|
"""
|
|
Then I expect the status code to be 200
|
|
And the follower is added to the followers collection of "peter-lustiger"
|
|
"""
|
|
https://localhost:4123/activitypub/users/bob-der-baumeister
|
|
"""
|
|
|
|
Scenario: Send an undo activity to revert the previous follow activity
|
|
When I send a POST request with the following activity to "/activitypub/users/bob-der-baumeister/inbox":
|
|
"""
|
|
{
|
|
"@context": "https://www.w3.org/ns/activitystreams",
|
|
"id": "https://localhost:4123/activitypub/users/peter-lustiger/status/a4DJ2afdg323v32641vna42lkj685kasd2",
|
|
"type": "Undo",
|
|
"actor": "http://localhost:4123/activitypub/users/peter-lustiger",
|
|
"object": {
|
|
"id": "https://localhost:4123/activitypub/users/bob-der-baumeister/status/83J23549sda1k72fsa4567na42312455kad83",
|
|
"type": "Follow",
|
|
"actor": "http://localhost:4123/activitypub/users/bob-der-baumeister",
|
|
"object": "http://localhost:4123/activitypub/users/peter-lustiger"
|
|
}
|
|
}
|
|
"""
|
|
Then I expect the status code to be 200
|
|
And the follower is removed from the followers collection of "peter-lustiger"
|
|
"""
|
|
https://localhost:4123/activitypub/users/bob-der-baumeister
|
|
"""
|