1
0
mirror of https://github.com/avitex/elixir-glicko synced 2025-04-18 13:49:57 +00:00
glicko-elixir/test/player_test.exs
Mikael Muszynski ce08ab5e24 Convert Player (v1/v2) and Result to structs
In an effort to give names to core concepts in the library, replace the
current way of passing around tuples (of varying length and content)
with appropriately named structs.

As a consequence of creating `Player.{V1, V2}` and `Result`, a variety
of functions that extracted values out of the tuples have either been
removed or changed to access struct fields instead.
2020-02-21 22:53:28 +01:00

67 lines
1.9 KiB
Elixir

defmodule Glicko.PlayerTest do
use ExUnit.Case
alias Glicko.Player
doctest Player
@valid_v1_base %Player.V1{rating: 1.0, rating_deviation: 2.0}
@valid_v2_base %Player.V2{rating: 1.0, rating_deviation: 2.0, volatility: 3.0}
test "create v1" do
assert @valid_v1_base == %Player.V1{rating: 1.0, rating_deviation: 2.0}
end
test "create v2" do
assert @valid_v2_base == %Player.V2{rating: 1.0, rating_deviation: 2.0, volatility: 3.0}
end
test "convert player v1 -> v2" do
assert %Player.V2{
rating: Player.scale_rating_to(1.0, :v2),
rating_deviation: Player.scale_rating_deviation_to(2.0, :v2),
volatility: 3.0
} == Player.to_v2(@valid_v1_base, 3.0)
end
test "convert player v2 -> v1" do
assert %Player.V1{
rating: Player.scale_rating_to(1.0, :v1),
rating_deviation: Player.scale_rating_deviation_to(2.0, :v1)
} == Player.to_v1(@valid_v2_base)
end
test "convert player v1 -> v1" do
assert @valid_v1_base == Player.to_v1(@valid_v1_base)
end
test "convert player v2 -> v2" do
assert @valid_v2_base == Player.to_v2(@valid_v2_base)
end
test "scale rating v1 -> v2" do
assert_in_delta Player.scale_rating_to(1673.7178, :v2), 1.0, 0.1
end
test "scale rating v2 -> v1" do
assert_in_delta Player.scale_rating_to(1.0, :v1), 1673.7178, 0.1
end
test "scale rating deviation v1 -> v2" do
assert_in_delta Player.scale_rating_deviation_to(173.7178, :v2), 1.0, 0.1
end
test "scale rating deviation v2 -> v1" do
assert_in_delta Player.scale_rating_deviation_to(1.0, :v1), 173.7178, 0.1
end
test "rating interval" do
assert {rating_low, rating_high} =
%Player.V2{rating: 1850, rating_deviation: 50}
|> Player.rating_interval()
assert_in_delta rating_low, 1750, 0.1
assert_in_delta rating_high, 1950, 0.1
end
end