Twitter Representers: Handle Mastodon attachments.
[akkoma] / test / web / twitter_api / views / user_view_test.exs
index 3f84e4116959e76c54b9b3f373783917561b2a58..d5d2f0adc87ba753c7dd2e0fcf8c251c32d4db6e 100644 (file)
@@ -33,8 +33,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
     {:ok, user} = User.update_follower_count(user)
     Cachex.set(:user_cache, "user_info:#{user.id}", User.user_info(Repo.get!(User, user.id)))
 
-    image = "http://localhost:4001/static/avi.png"
-    banner = "http://localhost:4001/static/banner.png"
+    image = "http://localhost:4001/images/avi.png"
+    banner = "http://localhost:4001/images/banner.png"
 
     represented = %{
       "id" => user.id,
@@ -56,7 +56,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
       "rights" => %{},
       "statusnet_profile_url" => user.ap_id,
       "cover_photo" => banner,
-      "background_image" => nil
+      "background_image" => nil,
+      "is_local" => true
     }
 
     assert represented == UserView.render("show.json", %{user: user})
@@ -65,8 +66,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
   test "A user for a given other follower", %{user: user} do
     {:ok, follower} = UserBuilder.insert(%{following: [User.ap_followers(user)]})
     {:ok, user} = User.update_follower_count(user)
-    image = "http://localhost:4001/static/avi.png"
-    banner = "http://localhost:4001/static/banner.png"
+    image = "http://localhost:4001/images/avi.png"
+    banner = "http://localhost:4001/images/banner.png"
 
     represented = %{
       "id" => user.id,
@@ -88,7 +89,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
       "rights" => %{},
       "statusnet_profile_url" => user.ap_id,
       "cover_photo" => banner,
-      "background_image" => nil
+      "background_image" => nil,
+      "is_local" => true
     }
 
     assert represented == UserView.render("show.json", %{user: user, for: follower})
@@ -98,8 +100,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
     follower = insert(:user)
     {:ok, follower} = User.follow(follower, user)
     {:ok, user} = User.update_follower_count(user)
-    image = "http://localhost:4001/static/avi.png"
-    banner = "http://localhost:4001/static/banner.png"
+    image = "http://localhost:4001/images/avi.png"
+    banner = "http://localhost:4001/images/banner.png"
 
     represented = %{
       "id" => follower.id,
@@ -121,7 +123,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
       "rights" => %{},
       "statusnet_profile_url" => follower.ap_id,
       "cover_photo" => banner,
-      "background_image" => nil
+      "background_image" => nil,
+      "is_local" => true
     }
 
     assert represented == UserView.render("show.json", %{user: follower, for: user})
@@ -131,8 +134,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
     user = insert(:user)
     blocker = insert(:user)
     User.block(blocker, user)
-    image = "http://localhost:4001/static/avi.png"
-    banner = "http://localhost:4001/static/banner.png"
+    image = "http://localhost:4001/images/avi.png"
+    banner = "http://localhost:4001/images/banner.png"
 
     represented = %{
       "id" => user.id,
@@ -154,7 +157,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
       "rights" => %{},
       "statusnet_profile_url" => user.ap_id,
       "cover_photo" => banner,
-      "background_image" => nil
+      "background_image" => nil,
+      "is_local" => true
     }
 
     blocker = Repo.get(User, blocker.id)