73 lines
2.2 KiB
Elixir
73 lines
2.2 KiB
Elixir
defmodule BDS.Media.LinkRestoreTest do
|
|
@moduledoc """
|
|
Guards the regression where gallery associations (PostMedia links) were lost
|
|
on rebuild-from-filesystem: the media sidecar persists `linkedPostIds`, but
|
|
the rebuild never restored them, so galleries rendered empty afterwards.
|
|
"""
|
|
use ExUnit.Case, async: false
|
|
|
|
import Ecto.Query
|
|
|
|
alias BDS.Media
|
|
alias BDS.Posts.PostMedia
|
|
alias BDS.Repo
|
|
|
|
setup do
|
|
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Repo)
|
|
Ecto.Adapters.SQL.Sandbox.mode(Repo, {:shared, self()})
|
|
temp_dir = Path.join(System.tmp_dir!(), "bds-linkrestore-#{System.unique_integer([:positive])}")
|
|
File.mkdir_p!(temp_dir)
|
|
on_exit(fn -> File.rm_rf(temp_dir) end)
|
|
|
|
{:ok, project} = BDS.Projects.create_project(%{name: "LinkRestore", data_path: temp_dir})
|
|
{:ok, _} = BDS.Metadata.update_project_metadata(project.id, %{main_language: "en"})
|
|
|
|
{:ok, post} =
|
|
BDS.Posts.create_post(%{
|
|
project_id: project.id,
|
|
title: "Gallery Post",
|
|
content: "[[gallery]]",
|
|
language: "en"
|
|
})
|
|
|
|
source = Path.join(temp_dir, "linked.jpg")
|
|
File.write!(source, "fake jpeg")
|
|
{:ok, media} = Media.import_media(%{project_id: project.id, source_path: source})
|
|
{:ok, _} = Media.link_media_to_post(media.id, post.id)
|
|
|
|
%{project: project, post: post, media: media}
|
|
end
|
|
|
|
defp link_count(post_id, media_id) do
|
|
Repo.aggregate(
|
|
from(pm in PostMedia, where: pm.post_id == ^post_id and pm.media_id == ^media_id),
|
|
:count
|
|
)
|
|
end
|
|
|
|
test "media rebuild-from-filesystem restores PostMedia links from the sidecar", %{
|
|
project: project,
|
|
post: post,
|
|
media: media
|
|
} do
|
|
assert link_count(post.id, media.id) == 1
|
|
|
|
# Simulate the DB losing gallery links (e.g. a prior rebuild).
|
|
Repo.delete_all(from pm in PostMedia, where: pm.media_id == ^media.id)
|
|
assert link_count(post.id, media.id) == 0
|
|
|
|
assert {:ok, _} = BDS.Media.rebuild_media_from_files(project.id)
|
|
|
|
assert link_count(post.id, media.id) == 1
|
|
end
|
|
|
|
test "restore is idempotent and does not duplicate existing links", %{
|
|
project: project,
|
|
post: post,
|
|
media: media
|
|
} do
|
|
assert {:ok, _} = BDS.Media.rebuild_media_from_files(project.id)
|
|
assert link_count(post.id, media.id) == 1
|
|
end
|
|
end
|