Merge branch 'fix/remove_auto_nsfw' into 'develop'
[akkoma] / test / pleroma / web / activity_pub / transmogrifier_test.exs
index f6a8cbb6fd971c1ba23cf7ae158bdd22bbe05e76..4c3fcb44a295e99f801d8b666600ee411464e2a8 100644 (file)
@@ -153,15 +153,6 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
       end
     end
 
-    test "it adds the sensitive property" do
-      user = insert(:user)
-
-      {:ok, activity} = CommonAPI.post(user, %{status: "#nsfw hey"})
-      {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
-
-      assert modified["object"]["sensitive"]
-    end
-
     test "it adds the json-ld context and the conversation property" do
       user = insert(:user)
 
@@ -205,7 +196,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
       {:ok, activity} =
         CommonAPI.post(user, %{
           status: "#2hu :firefox:",
-          application: %{type: "Application", name: "TestClient", url: "https://pleroma.social"}
+          generator: %{type: "Application", name: "TestClient", url: "https://pleroma.social"}
         })
 
       # Ensure injected application data made it into the activity
@@ -215,7 +206,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
                type: "Application",
                name: "TestClient",
                url: "https://pleroma.social"
-             } == activity.object.data["application"]
+             } == activity.object.data["generator"]
 
       {:ok, modified} = Transmogrifier.prepare_outgoing(activity.data)
 
@@ -226,7 +217,7 @@ defmodule Pleroma.Web.ActivityPub.TransmogrifierTest do
       assert is_nil(modified["object"]["announcements"])
       assert is_nil(modified["object"]["announcement_count"])
       assert is_nil(modified["object"]["context_id"])
-      assert is_nil(modified["object"]["application"])
+      assert is_nil(modified["object"]["generator"])
     end
 
     test "it strips internal fields of article" do