Пример #1
0
 /**
  * @test
  */
 public function shouldBeAbleToSetAndGetFenOnGame()
 {
     // given
     $game = new Game();
     $fen = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
     $expectedFen = $this->getExpectedStorageFen($fen);
     // when
     $game->setFen($fen);
     $game->commit();
     $this->assertEquals(1, $game->getFenId(), "Fen id is numeric before");
     $this->assertEquals($expectedFen, $game->getFen(), "Fen before");
     $newGame = new Game($game->getId());
     // then
     $this->assertEquals(1, $newGame->getFenId(), "Fen id is numeric after");
     $this->assertEquals($expectedFen, $newGame->getFen());
 }
Пример #2
0
 * User: Alf Magne
 * Date: 23.01.13
 * Time: 14:52
 * To change this template use File | Settings | File Templates.
 */
ini_set('display_errors', 'on');
date_default_timezone_set("Europe/Berlin");
require_once __DIR__ . "/../autoload.php";
LudoDB::setHost('127.0.0.1');
LudoDB::setUser('root');
LudoDB::setPassword('administrator');
LudoDB::setDb('PHPUnit');
// Construct database tables
$tables = array('Move', 'Game', 'Fen', 'Metadata', 'MetadataValue');
foreach ($tables as $table) {
    $inst = new $table();
    $inst->drop()->yesImSure();
    $inst->createTable();
}
$profiling = new XHPProfiling('PGN to parser to DB');
$parser = new PgnParser("../../pgn/profiling.pgn");
$games = $parser->getGames();
foreach ($games as $gameData) {
    $game = new Game();
    $game->setDatabaseId(100);
    $game->setFen($gameData['metadata']['fen']);
    $game->setMetadata($gameData['metadata']);
    $game->setMoves($gameData['moves']);
    $game->commit();
}
echo $profiling->end();
Пример #3
0
 private function createGameMetadata($gameId, $key, $value)
 {
     // given
     $game = new Game($gameId);
     if (!$game->getId()) {
         $game->setValues(array("id", $gameId, "white" => "Alf"));
         $game->commit();
     }
     $m = new MetadataValue($key);
     // when
     $m->setGameid($gameId);
     $m->setMetadataKey($key);
     $m->setMetadataValue($value);
     $m->commit();
 }