Remove unused refresh_fixtures task

This commit is contained in:
Claudio Ortolina
2026-02-16 14:24:04 +00:00
parent 98f901c020
commit cb97086369
@@ -1,75 +0,0 @@
defmodule Mix.Tasks.MusicBrainz.RefreshFixtures do
@shortdoc "Fetch and recreate test fixtures that depend on network resources."
@moduledoc """
Fetch and recreate test fixtures that depend on network resources.
"""
use Mix.Task
require Logger
@fixtures_folder Path.join([File.cwd!(), "test/support/fixtures/music_brainz"])
@fixture_files %{
"artist - steven wilson.json" =>
"https://musicbrainz.org/ws/2/artist/3a51b862-0144-40f6-aa17-6aaeefea29d9?fmt=json&inc=url-rels",
"release - avantasia - the mystery of time.json" =>
"https://musicbrainz.org/ws/2/release/003d1505-b3ac-4acf-bed1-02e2c8134a26?fmt=json&inc=release-groups",
"release - marillion - marbles.json" =>
"https://musicbrainz.org/ws/2/release/d3f9b9e2-73f5-4b47-a2a7-2c2199aad608?fmt=json&inc=release-groups",
"release_group - avantasia - the mystery of time.json" =>
"https://musicbrainz.org/ws/2/release-group/a40fdacb-2f29-4385-8177-e6b72c93a442?fmt=json&inc=artists+genres+releases+release-group-rels",
"release_group - marillion - marbles.json" =>
"https://musicbrainz.org/ws/2/release-group/20790e26-98e4-3ad3-a67f-b674758b942d?fmt=json&inc=artists+genres+releases+release-group-rels",
"release_group_search_results - marillion - marbles.json" => "TODO",
"release_group_with_includes - mariusz duda - lockdown trilogy.json" =>
"https://musicbrainz.org/ws/2/release-group/5db72bc0-6ce3-4beb-bd51-86b58ed8cf71?fmt=json&inc=artists+genres+releases+release-group-rels",
"releases - marillion - marbles.json" => "TODO",
"releases - queen - greatest hits.json" => "TODO"
}
@impl Mix.Task
def run(_args) do
Application.ensure_all_started(:finch)
Finch.start_link(name: __MODULE__)
@fixture_files
|> Enum.reject(fn {_filename, url} -> url == "TODO" end)
|> Enum.each(fn {filename, url} ->
case get(url) do
{:ok, body} ->
# store the fixture pretty printed
dest = Path.join(@fixtures_folder, filename)
content = body |> JSON.decode!() |> Jason.encode!(pretty: true)
File.write!(dest, content)
{:error, msg} ->
Logger.error(msg)
end
end)
end
defp get(url) do
req =
Finch.build(:get, url, [
{"User-Agent", "MusicLibrary/0.1.0 ( cloud8421@gmail.com )"}
])
Logger.debug("Fetching data from #{url}")
case Finch.request(req, __MODULE__) do
{:ok, response} when response.status == 200 ->
{:ok, response.body}
{:ok, response} when response.status in 301..308 ->
location = :proplists.get_value("location", response.headers)
Logger.debug("Following redirect to #{location}")
get(location)
other ->
msg = "Failed to fetch data from #{url}, reason: #{inspect(other)}"
Logger.error(msg)
{:error, msg}
end
end
end