akkoma/test/otp_version_test.exs

39 lines
1 KiB
Elixir
Raw Normal View History

2020-03-03 09:19:29 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2020-02-11 07:12:57 +00:00
defmodule Pleroma.OTPVersionTest do
use ExUnit.Case, async: true
alias Pleroma.OTPVersion
2020-03-03 09:19:29 +00:00
describe "check/1" do
2020-02-11 07:12:57 +00:00
test "22.4" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check(["test/fixtures/warnings/otp_version/22.4"]) == :ok
2020-02-11 07:12:57 +00:00
end
test "22.1" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check(["test/fixtures/warnings/otp_version/22.1"]) == {:error, "22.1"}
2020-02-11 07:12:57 +00:00
end
test "21.1" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check(["test/fixtures/warnings/otp_version/21.1"]) == {:error, "21.1"}
2020-02-11 07:12:57 +00:00
end
test "23.0" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check(["test/fixtures/warnings/otp_version/23.0"]) == :ok
2020-02-11 07:12:57 +00:00
end
test "with non existance file" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check([
2020-02-11 07:12:57 +00:00
"test/fixtures/warnings/otp_version/non-exising",
"test/fixtures/warnings/otp_version/22.4"
]) == :ok
end
test "empty paths" do
2020-03-03 09:19:29 +00:00
assert OTPVersion.check([]) == :undefined
2020-02-11 07:12:57 +00:00
end
end
end