First
[anni] / test / pleroma / upload / filter / analyze_metadata_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Upload.Filter.AnalyzeMetadataTest do
6   use Pleroma.DataCase, async: true
7   alias Pleroma.Upload.Filter.AnalyzeMetadata
8
9   test "adds the dimensions and blurhash for images" do
10     upload = %Pleroma.Upload{
11       name: "an… image.jpg",
12       content_type: "image/jpeg",
13       path: Path.absname("test/fixtures/image.jpg"),
14       tempfile: Path.absname("test/fixtures/image.jpg")
15     }
16
17     {:ok, :filtered, meta} = AnalyzeMetadata.filter(upload)
18
19     assert %{width: 1024, height: 768} = meta
20     assert meta.blurhash
21   end
22
23   test "adds the dimensions for videos" do
24     upload = %Pleroma.Upload{
25       name: "coolvideo.mp4",
26       content_type: "video/mp4",
27       path: Path.absname("test/fixtures/video.mp4"),
28       tempfile: Path.absname("test/fixtures/video.mp4")
29     }
30
31     assert {:ok, :filtered, %{width: 480, height: 480}} = AnalyzeMetadata.filter(upload)
32   end
33 end