2020-08-24 06:47:25 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-08-24 06:47:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.UtilsTest do
|
|
|
|
use ExUnit.Case, async: true
|
|
|
|
|
|
|
|
describe "tmp_dir/1" do
|
|
|
|
test "returns unique temporary directory" do
|
|
|
|
{:ok, path} = Pleroma.Utils.tmp_dir("emoji")
|
2020-09-24 07:46:09 +00:00
|
|
|
assert path =~ ~r/\/emoji-(.*)-#{:os.getpid()}-(.*)/
|
2020-08-24 06:47:25 +00:00
|
|
|
File.rm_rf(path)
|
|
|
|
end
|
|
|
|
end
|
2022-07-24 16:42:43 +00:00
|
|
|
|
|
|
|
describe "compile_dir/1" do
|
|
|
|
test "recursively compiles directories" do
|
|
|
|
{:ok, [DynamicModule.First, DynamicModule.Second], []} =
|
|
|
|
Pleroma.Utils.compile_dir("test/fixtures/runtime_modules")
|
|
|
|
end
|
|
|
|
end
|
2020-08-24 06:47:25 +00:00
|
|
|
end
|