forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test and fix featured game heuristics
- Loading branch information
Showing
3 changed files
with
123 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
package lila | ||
package game | ||
|
||
import game._ | ||
|
||
class FeaturedTest extends LilaSpec { | ||
|
||
import Featured._ | ||
|
||
"Featured" should { | ||
|
||
"box 0 to 1" in { | ||
foreach(List( | ||
0f -> 0f, | ||
1f -> 1f, | ||
0.5f -> 0.5f, | ||
0.9f -> 0.9f, | ||
-1f -> 0f, | ||
2f -> 1f)) { | ||
case (a, b) ⇒ box(0 to 1)(a) must_== b | ||
} | ||
} | ||
|
||
"box 1200 to 2000" in { | ||
foreach(List( | ||
1200f -> 0f, | ||
2000f -> 1f, | ||
1600f -> 0.5f, | ||
1900f -> 0.875f, | ||
-1f -> 0f, | ||
800f -> 0f, | ||
2200f -> 1f)) { | ||
case (a, b) ⇒ box(1200 to 2000)(a) must_== b | ||
} | ||
} | ||
|
||
val game1 = DbGame( | ||
game = chess.Game(), | ||
whitePlayer = DbPlayer.white.copy(elo = 1600.some), | ||
blackPlayer = DbPlayer.black, | ||
ai = None, | ||
creatorColor = chess.Color.White, | ||
mode = chess.Mode.default, | ||
variant = chess.Variant.default) | ||
|
||
val game2 = game1.copy( | ||
clock = chess.Clock(180,0).some, | ||
turns = 11) | ||
|
||
val game3 = game1.copy( | ||
clock = chess.Clock(60,0).some, | ||
turns = 21) | ||
|
||
val games = List(game1, game2, game3) | ||
|
||
"elo" in { | ||
"game1 white" in { | ||
eloHeuristic(chess.Color.White)(game1) must_== 0.5f | ||
} | ||
"game1 black" in { | ||
eloHeuristic(chess.Color.Black)(game1) must_== 0f | ||
} | ||
} | ||
"speed" in { | ||
"game1" in { | ||
speedHeuristic(game1) must_== 0 | ||
} | ||
"game2" in { | ||
speedHeuristic(game2) must_== 0.5f | ||
} | ||
"game3" in { | ||
speedHeuristic(game3) must_== 1f | ||
} | ||
} | ||
"progress" in { | ||
"game1" in { | ||
progressHeuristic(game1) must_== 1f | ||
} | ||
"game2" in { | ||
progressHeuristic(game2) must_== 0.5f | ||
} | ||
"game3" in { | ||
progressHeuristic(game3) must_== 0f | ||
} | ||
} | ||
"score" in { | ||
"game1" in { | ||
score(game1) must_== 0.5f + 0f + 1f * 0.5f | ||
} | ||
"game2" in { | ||
score(game2) must_== 0.5f + 0.5f + 0.5f * 0.5f | ||
} | ||
"game3" in { | ||
score(game3) must_== 0.5f + 1f + 0f * 0.5f | ||
} | ||
} | ||
"best" in { | ||
"3 games" in { | ||
best(games) must_== game3.some | ||
} | ||
"3 games reversed" in { | ||
best(games.reverse) must_== game3.some | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package lila | ||
|
||
import org.specs2.mutable._ | ||
import ornicar.scalalib.test.OrnicarValidationMatchers | ||
|
||
trait LilaSpec | ||
extends Specification | ||
with OrnicarValidationMatchers { | ||
} |