2026-02-18 21:23:15 +00:00
|
|
|
defmodule BerrypodWeb.ConnCase do
|
2025-12-30 12:26:26 +00:00
|
|
|
@moduledoc """
|
|
|
|
|
This module defines the test case to be used by
|
|
|
|
|
tests that require setting up a connection.
|
|
|
|
|
|
|
|
|
|
Such tests rely on `Phoenix.ConnTest` and also
|
|
|
|
|
import other functionality to make it easier
|
|
|
|
|
to build common data structures and query the data layer.
|
|
|
|
|
|
|
|
|
|
Finally, if the test case interacts with the database,
|
|
|
|
|
we enable the SQL sandbox, so changes done to the database
|
|
|
|
|
are reverted at the end of every test. If you are using
|
|
|
|
|
PostgreSQL, you can even run database tests asynchronously
|
2026-02-18 21:23:15 +00:00
|
|
|
by setting `use BerrypodWeb.ConnCase, async: true`, although
|
2025-12-30 12:26:26 +00:00
|
|
|
this option is not recommended for other databases.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
use ExUnit.CaseTemplate
|
|
|
|
|
|
|
|
|
|
using do
|
|
|
|
|
quote do
|
|
|
|
|
# The default endpoint for testing
|
2026-02-18 21:23:15 +00:00
|
|
|
@endpoint BerrypodWeb.Endpoint
|
2025-12-30 12:26:26 +00:00
|
|
|
|
2026-02-18 21:23:15 +00:00
|
|
|
use BerrypodWeb, :verified_routes
|
2025-12-30 12:26:26 +00:00
|
|
|
|
|
|
|
|
# Import conveniences for testing with connections
|
|
|
|
|
import Plug.Conn
|
|
|
|
|
import Phoenix.ConnTest
|
2026-02-18 21:23:15 +00:00
|
|
|
import BerrypodWeb.ConnCase
|
2025-12-30 12:26:26 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
setup tags do
|
integrate R module and add url editor ui
Replaces hardcoded paths with R module throughout:
- Shop components: layout nav, cart, product links
- Controllers: cart, checkout, contact, seo, order lookup
- Shop pages: collection, product, search, checkout success, etc.
- Site context: nav item url resolution
Admin URL management:
- Settings page: prefix editor with validation feedback
- Page renderer: url_editor component for page URLs
- CSS for url editor styling
Test updates for cache isolation
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-01 00:36:17 +01:00
|
|
|
pid = Berrypod.DataCase.setup_sandbox(tags)
|
2026-03-02 16:25:29 +00:00
|
|
|
Berrypod.Settings.SettingsCache.invalidate_all()
|
integrate R module and add url editor ui
Replaces hardcoded paths with R module throughout:
- Shop components: layout nav, cart, product links
- Controllers: cart, checkout, contact, seo, order lookup
- Shop pages: collection, product, search, checkout success, etc.
- Site context: nav item url resolution
Admin URL management:
- Settings page: prefix editor with validation feedback
- Page renderer: url_editor component for page URLs
- CSS for url editor styling
Test updates for cache isolation
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-01 00:36:17 +01:00
|
|
|
# Clear caches without re-warming from DB (which would bypass sandbox)
|
|
|
|
|
BerrypodWeb.R.clear()
|
|
|
|
|
Berrypod.Pages.PageCache.invalidate_all()
|
|
|
|
|
Berrypod.Redirects.clear_cache()
|
|
|
|
|
|
|
|
|
|
# Add sandbox metadata to conn so Phoenix.Ecto.SQL.Sandbox plug
|
|
|
|
|
# can allow LiveView processes to access the test's DB connection
|
|
|
|
|
metadata = Phoenix.Ecto.SQL.Sandbox.metadata_for(Berrypod.Repo, pid)
|
|
|
|
|
encoded_metadata = Phoenix.Ecto.SQL.Sandbox.encode_metadata(metadata)
|
|
|
|
|
|
|
|
|
|
conn =
|
|
|
|
|
Phoenix.ConnTest.build_conn()
|
|
|
|
|
|> Plug.Conn.put_req_header("user-agent", encoded_metadata)
|
|
|
|
|
|
|
|
|
|
{:ok, conn: conn}
|
2025-12-30 12:26:26 +00:00
|
|
|
end
|
2025-12-30 12:26:46 +00:00
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
|
Setup helper that registers and logs in users.
|
|
|
|
|
|
|
|
|
|
setup :register_and_log_in_user
|
|
|
|
|
|
|
|
|
|
It stores an updated connection and a registered user in the
|
|
|
|
|
test context.
|
|
|
|
|
"""
|
|
|
|
|
def register_and_log_in_user(%{conn: conn} = context) do
|
2026-02-18 21:23:15 +00:00
|
|
|
user = Berrypod.AccountsFixtures.user_fixture()
|
|
|
|
|
scope = Berrypod.Accounts.Scope.for_user(user)
|
2025-12-30 12:26:46 +00:00
|
|
|
|
|
|
|
|
opts =
|
|
|
|
|
context
|
|
|
|
|
|> Map.take([:token_authenticated_at])
|
|
|
|
|
|> Enum.into([])
|
|
|
|
|
|
|
|
|
|
%{conn: log_in_user(conn, user, opts), user: user, scope: scope}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
|
Logs the given `user` into the `conn`.
|
|
|
|
|
|
|
|
|
|
It returns an updated `conn`.
|
|
|
|
|
"""
|
|
|
|
|
def log_in_user(conn, user, opts \\ []) do
|
2026-02-18 21:23:15 +00:00
|
|
|
token = Berrypod.Accounts.generate_user_session_token(user)
|
2025-12-30 12:26:46 +00:00
|
|
|
|
|
|
|
|
maybe_set_token_authenticated_at(token, opts[:token_authenticated_at])
|
|
|
|
|
|
|
|
|
|
conn
|
|
|
|
|
|> Phoenix.ConnTest.init_test_session(%{})
|
|
|
|
|
|> Plug.Conn.put_session(:user_token, token)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
defp maybe_set_token_authenticated_at(_token, nil), do: nil
|
|
|
|
|
|
|
|
|
|
defp maybe_set_token_authenticated_at(token, authenticated_at) do
|
2026-02-18 21:23:15 +00:00
|
|
|
Berrypod.AccountsFixtures.override_token_authenticated_at(token, authenticated_at)
|
2025-12-30 12:26:46 +00:00
|
|
|
end
|
2025-12-30 12:26:26 +00:00
|
|
|
end
|