Add tests
This commit is contained in:
parent
fe538973dd
commit
e0b654e202
|
@ -839,6 +839,39 @@ test "adds an announce activity to the db" do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "announcing a private object" do
|
||||||
|
test "adds an announce activity to the db if the audience is not widened" do
|
||||||
|
user = insert(:user)
|
||||||
|
{:ok, note_activity} = CommonAPI.post(user, %{"status" => ".", "visibility" => "private"})
|
||||||
|
object = Object.normalize(note_activity)
|
||||||
|
|
||||||
|
{:ok, announce_activity, object} = ActivityPub.announce(user, object, nil, true, false)
|
||||||
|
|
||||||
|
assert announce_activity.data["to"] == [User.ap_followers(user)]
|
||||||
|
|
||||||
|
assert announce_activity.data["object"] == object.data["id"]
|
||||||
|
assert announce_activity.data["actor"] == user.ap_id
|
||||||
|
assert announce_activity.data["context"] == object.data["context"]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "does not add an announce activity to the db if the audience is widened" do
|
||||||
|
user = insert(:user)
|
||||||
|
{:ok, note_activity} = CommonAPI.post(user, %{"status" => ".", "visibility" => "private"})
|
||||||
|
object = Object.normalize(note_activity)
|
||||||
|
|
||||||
|
assert {:error, _} = ActivityPub.announce(user, object, nil, true, true)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "does not add an announce activity to the db if the announcer is not the author" do
|
||||||
|
user = insert(:user)
|
||||||
|
announcer = insert(:user)
|
||||||
|
{:ok, note_activity} = CommonAPI.post(user, %{"status" => ".", "visibility" => "private"})
|
||||||
|
object = Object.normalize(note_activity)
|
||||||
|
|
||||||
|
assert {:error, _} = ActivityPub.announce(announcer, object, nil, true, false)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "unannouncing an object" do
|
describe "unannouncing an object" do
|
||||||
test "unannouncing a previously announced object" do
|
test "unannouncing a previously announced object" do
|
||||||
note_activity = insert(:note_activity)
|
note_activity = insert(:note_activity)
|
||||||
|
|
Loading…
Reference in New Issue