46c27e4875
* Added docs link to README * Added docs to sidebar in-app * Updated some tests * Updated docs in media profile form
166 lines
5.7 KiB
Elixir
166 lines
5.7 KiB
Elixir
defmodule Pinchflat.YtDlp.MediaCollectionTest do
|
|
use Pinchflat.DataCase
|
|
import Mox
|
|
import Pinchflat.SourcesFixtures
|
|
|
|
alias Pinchflat.YtDlp.Media
|
|
alias Pinchflat.YtDlp.MediaCollection
|
|
|
|
@channel_url "https://www.youtube.com/c/PinchflatTestChannel"
|
|
|
|
setup :verify_on_exit!
|
|
|
|
describe "get_media_attributes_for_collection/2" do
|
|
test "returns a list of video attributes with no blank elements" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot, _addl_opts ->
|
|
{:ok, source_attributes_return_fixture() <> "\n\n"}
|
|
end)
|
|
|
|
assert {:ok, [%Media{media_id: "video1"}, %Media{media_id: "video2"}, %Media{media_id: "video3"}]} =
|
|
MediaCollection.get_media_attributes_for_collection(@channel_url)
|
|
end
|
|
|
|
test "it passes the expected default args" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, opts, ot, _addl_opts ->
|
|
assert opts == [:simulate, :skip_download, :ignore_no_formats_error]
|
|
assert ot == Media.indexing_output_template()
|
|
|
|
{:ok, ""}
|
|
end)
|
|
|
|
assert {:ok, _} = MediaCollection.get_media_attributes_for_collection(@channel_url)
|
|
end
|
|
|
|
test "returns the error straight through when the command fails" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot, _addl_opts -> {:error, "Big issue", 1} end)
|
|
|
|
assert {:error, "Big issue", 1} = MediaCollection.get_media_attributes_for_collection(@channel_url)
|
|
end
|
|
|
|
test "passes the explict tmpfile path to runner" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot, addl_opts ->
|
|
assert [{:output_filepath, filepath}] = addl_opts
|
|
assert String.ends_with?(filepath, ".json")
|
|
|
|
{:ok, ""}
|
|
end)
|
|
|
|
assert {:ok, _} = MediaCollection.get_media_attributes_for_collection(@channel_url)
|
|
end
|
|
|
|
test "supports an optional file_listener_handler that gets passed a filename" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot, _addl_opts -> {:ok, ""} end)
|
|
current_self = self()
|
|
|
|
handler = fn filename ->
|
|
send(current_self, {:handler, filename})
|
|
end
|
|
|
|
assert {:ok, _} =
|
|
MediaCollection.get_media_attributes_for_collection(@channel_url, file_listener_handler: handler)
|
|
|
|
assert_receive {:handler, filename}
|
|
assert String.ends_with?(filename, ".json")
|
|
end
|
|
|
|
test "gracefully handles partially failed responses" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot, _addl_opts ->
|
|
{:ok, "INVALID\n\n" <> source_attributes_return_fixture() <> "\nINVALID\n"}
|
|
end)
|
|
|
|
assert {:ok, [%Media{media_id: "video1"}, %Media{media_id: "video2"}, %Media{media_id: "video3"}]} =
|
|
MediaCollection.get_media_attributes_for_collection(@channel_url)
|
|
end
|
|
end
|
|
|
|
describe "get_source_details/1" do
|
|
test "it returns a map with data on success" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot ->
|
|
Phoenix.json_library().encode(%{
|
|
channel: "PinchflatTestChannel",
|
|
channel_id: "UCQH2",
|
|
playlist_id: "PLQH2",
|
|
playlist_title: "PinchflatTestChannel - Videos"
|
|
})
|
|
end)
|
|
|
|
assert {:ok, res} = MediaCollection.get_source_details(@channel_url)
|
|
|
|
assert %{
|
|
channel_id: "UCQH2",
|
|
channel_name: "PinchflatTestChannel",
|
|
playlist_id: "PLQH2",
|
|
playlist_name: "PinchflatTestChannel - Videos"
|
|
} = res
|
|
end
|
|
|
|
test "it passes the expected args to the backend runner" do
|
|
expect(YtDlpRunnerMock, :run, fn @channel_url, opts, ot ->
|
|
assert opts == [:simulate, :skip_download, :ignore_no_formats_error, playlist_end: 1]
|
|
assert ot == "%(.{channel,channel_id,playlist_id,playlist_title,filename})j"
|
|
|
|
{:ok, "{}"}
|
|
end)
|
|
|
|
assert {:ok, _} = MediaCollection.get_source_details(@channel_url)
|
|
end
|
|
|
|
test "it returns an error if the runner returns an error" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot -> {:error, "Big issue", 1} end)
|
|
|
|
assert {:error, "Big issue", 1} = MediaCollection.get_source_details(@channel_url)
|
|
end
|
|
|
|
test "it returns an error if the output is not JSON" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot -> {:ok, "Not JSON"} end)
|
|
|
|
assert {:error, %Jason.DecodeError{}} = MediaCollection.get_source_details(@channel_url)
|
|
end
|
|
end
|
|
|
|
describe "get_source_metadata/1" do
|
|
test "it returns a map with data on success" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot ->
|
|
Phoenix.json_library().encode(%{channel: "PinchflatTestChannel"})
|
|
end)
|
|
|
|
assert {:ok, res} = MediaCollection.get_source_metadata(@channel_url)
|
|
|
|
assert %{"channel" => "PinchflatTestChannel"} = res
|
|
end
|
|
|
|
test "it passes the expected args to the backend runner" do
|
|
expect(YtDlpRunnerMock, :run, fn @channel_url, opts, ot ->
|
|
assert opts == [playlist_items: 0]
|
|
assert ot == "playlist:%()j"
|
|
|
|
{:ok, "{}"}
|
|
end)
|
|
|
|
assert {:ok, _} = MediaCollection.get_source_metadata(@channel_url)
|
|
end
|
|
|
|
test "it returns an error if the runner returns an error" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot -> {:error, "Big issue", 1} end)
|
|
|
|
assert {:error, "Big issue", 1} = MediaCollection.get_source_metadata(@channel_url)
|
|
end
|
|
|
|
test "it returns an error if the output is not JSON" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, _opts, _ot -> {:ok, "Not JSON"} end)
|
|
|
|
assert {:error, %Jason.DecodeError{}} = MediaCollection.get_source_metadata(@channel_url)
|
|
end
|
|
|
|
test "allows you to pass additional opts" do
|
|
expect(YtDlpRunnerMock, :run, fn _url, opts, _ot ->
|
|
assert opts == [playlist_items: 0, real_opt: :yup]
|
|
|
|
{:ok, "{}"}
|
|
end)
|
|
|
|
assert {:ok, _} = MediaCollection.get_source_metadata(@channel_url, real_opt: :yup)
|
|
end
|
|
end
|
|
end
|