This is a documentation for Board Game Arena: play board games online !

Testing by developer

From Board Game Arena
Jump to navigation Jump to search

--- this page is under consructon ---

When you develop a game yuo obviously need to test it, this page collects the info about testing in one place

Manual Testing on BGA

For manual testing most important things to know is

  • how to start/stop game in one click
  • how to switch between players in one click
  • how to save/restore the game state
  • how to construct the game state automatically

All of these described here https://en.doc.boardgamearena.com/Tools_and_tips_of_BGA_Studio

Manual Testing locally

HTML/CSS At this era the file sync is instant so you do not save much by doing this locally, however in internet is a challenge - here are some tips https://en.doc.boardgamearena.com/Tools_and_tips_of_BGA_Studio#Speed_up_CSS_development_and_layout

PHP You can run and debug php locally using https://en.doc.boardgamearena.com/BGA_Studio_Cookbook#Creating_a_test_class_to_run_PHP_locally

Automated Testing

You can hook up phpunit and write unit tests for php, for that you need stubs for framework functions and classes

<?php

define("APP_GAMEMODULE_PATH", getenv('APP_GAMEMODULE_PATH')); 

spl_autoload_register(function ($class_name) {
  
    switch ($class_name) {
        case "APP_GameClass":
            //var_dump($class_name);
            //var_dump(APP_GAMEMODULE_PATH);
            include APP_GAMEMODULE_PATH."/module/table/table.game.php";
            break;
        default:
            include $class_name . ".php";
            break;
    }
});

?>
  • Set env var APP_GAMEMODULE_PATH to point where stubs are in this case, i.e APP_GAMEMODULE_PATH=$HOME/git/bga-sharedcode/misc
  • Create a test in tests/ folder (see phpunit examples)
<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;

require_once "../mygame.game.php";

class GameUT extends MyGame {
    function __construct() {
        parent::__construct();
        include "../material.inc.php";
    }
    // override/stub methods here that access db and stuff
}

final class GameTest extends TestCase {
    public function testGameProgression() {
        $m = new GameUT();
        $this->assertEquals(0,$m->getGameProgression());
    }
    // more tests
}


  • Run this from modules/ dir (this assumes env var above already set globally)
phpunit --bootstrap autoload.php tests/

Play testing on studio

To play test on studio you can use your test accounts dev0... dev9. You can give some of these account to other people just make sure you change the password. You should not encourage other people who are not developers to create studio account, this is against bga policy.