pleroma/test/mix/tasks/pleroma/robots_txt_test.exs

46 lines
1.1 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2019-07-09 18:54:13 +02:00
defmodule Mix.Tasks.Pleroma.RobotsTxtTest do
2019-07-10 15:37:39 +02:00
use ExUnit.Case
use Pleroma.Tests.Helpers
2019-07-09 18:54:13 +02:00
alias Mix.Tasks.Pleroma.RobotsTxt
setup do: clear_config([:instance, :static_dir])
2019-07-09 18:54:13 +02:00
test "creates new dir" do
path = "test/fixtures/new_dir/"
file_path = path <> "robots.txt"
clear_config([:instance, :static_dir], path)
2019-07-09 18:54:13 +02:00
on_exit(fn ->
{:ok, ["test/fixtures/new_dir/", "test/fixtures/new_dir/robots.txt"]} = File.rm_rf(path)
end)
RobotsTxt.run(["disallow_all"])
assert File.exists?(file_path)
{:ok, file} = File.read(file_path)
assert file == "User-Agent: *\nDisallow: /\n"
end
test "to existing folder" do
2019-07-09 18:54:13 +02:00
path = "test/fixtures/"
file_path = path <> "robots.txt"
clear_config([:instance, :static_dir], path)
2019-07-09 18:54:13 +02:00
on_exit(fn ->
:ok = File.rm(file_path)
end)
RobotsTxt.run(["disallow_all"])
assert File.exists?(file_path)
{:ok, file} = File.read(file_path)
assert file == "User-Agent: *\nDisallow: /\n"
end
end