|
1
|
|
|
<?php declare(strict_types=1); |
|
2
|
|
|
|
|
3
|
|
|
namespace SmrTest\lib\DefaultGame; |
|
4
|
|
|
|
|
5
|
|
|
use SmrSession; |
|
6
|
|
|
use SmrTest\BaseIntegrationSpec; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* @covers SmrSession |
|
10
|
|
|
*/ |
|
11
|
|
|
class SmrSessionIntegrationTest extends BaseIntegrationSpec { |
|
12
|
|
|
|
|
13
|
|
|
private SmrSession $session; |
|
14
|
|
|
|
|
15
|
|
|
protected function setUp() : void { |
|
16
|
|
|
// Start each test with a fresh container (and SmrSession). |
|
17
|
|
|
// This ensures the independence of each test. |
|
18
|
|
|
\Smr\Container\DiContainer::initializeContainer(); |
|
19
|
|
|
$this->session = SmrSession::getInstance(); |
|
20
|
|
|
} |
|
21
|
|
|
|
|
22
|
|
|
public function test_game() { |
|
23
|
|
|
// Sessions are initialized with no game |
|
24
|
|
|
self::assertFalse($this->session->hasGame()); |
|
25
|
|
|
self::assertSame(0, $this->session->getGameID()); |
|
26
|
|
|
|
|
27
|
|
|
// Now update the game |
|
28
|
|
|
$gameID = 3; |
|
29
|
|
|
$this->session->updateGame($gameID); |
|
30
|
|
|
self::assertTrue($this->session->hasGame()); |
|
31
|
|
|
self::assertSame($gameID, $this->session->getGameID()); |
|
32
|
|
|
} |
|
33
|
|
|
|
|
34
|
|
|
public function test_account() { |
|
35
|
|
|
// Sessions are initialized with no account |
|
36
|
|
|
self::assertFalse($this->session->hasAccount()); |
|
37
|
|
|
self::assertSame(0, $this->session->getAccountID()); |
|
38
|
|
|
|
|
39
|
|
|
// Now update the account |
|
40
|
|
|
$account = $this->createMock(\AbstractSmrAccount::class); |
|
41
|
|
|
$account |
|
42
|
|
|
->method('getAccountID') |
|
43
|
|
|
->willReturn(7); |
|
44
|
|
|
$this->session->setAccount($account); |
|
45
|
|
|
self::assertTrue($this->session->hasAccount()); |
|
46
|
|
|
self::assertSame(7, $this->session->getAccountID()); |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
} |
|
50
|
|
|
|