-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathUserTest.php
154 lines (119 loc) · 4.92 KB
/
UserTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
use GuzzleHttp\Exception\GuzzleException;
use Syntax\SteamApi\Exceptions\ApiCallFailedException;
use Syntax\SteamApi\Exceptions\UnrecognizedId;
require_once('BaseTester.php');
/** @group User */
class UserTest extends BaseTester {
/** @test */
public function it_accepts_an_array_of_steam_ids()
{
$steamIds = [$this->id32, $this->altId64];
$userService = $this->steamClient->user($steamIds);
$this->assertCount(2, $userService->getSteamId());
$this->assertEquals($this->id64, $userService->getSteamId()[0]);
}
/**
* @test
* @throws UnrecognizedId
* @throws GuzzleException
* @throws ApiCallFailedException
*/
public function it_throws_an_exception_when_no_display_name_is_provided()
{
if (method_exists($this, 'setExpectedException')) {
$this->setExpectedException(\Syntax\SteamApi\Exceptions\UnrecognizedId::class);
} else {
$this->expectException(\Syntax\SteamApi\Exceptions\UnrecognizedId::class);
}
$steamObject = $this->steamClient->user($this->id64)->ResolveVanityURL();
$this->assertEquals('No match', $steamObject);
}
/** @test
* @throws ApiCallFailedException
* @throws GuzzleException
* @throws UnrecognizedId
*/
public function it_returns_no_match_from_an_invalid_display_name()
{
$steamObject = $this->steamClient->user($this->id64)->ResolveVanityURL('stygiansabyssINVALID');
$this->assertEquals('No match', $steamObject);
}
/** @test
* @throws ApiCallFailedException
* @throws GuzzleException
* @throws UnrecognizedId
*/
public function it_gets_the_steam_id_from_a_display_name()
{
$steamObject = $this->steamClient->user(76561198022436617)->ResolveVanityURL('stygiansabyss');
$this->assertEquals(76561198022436617, $steamObject->id64);
}
/** @test */
public function it_gets_the_base_users_player_summary()
{
$friendsList = $this->steamClient->user($this->id64)->GetPlayerSummaries();
$this->assertCount(1, $friendsList);
$this->checkPlayerProperties($friendsList);
$this->checkPlayerClasses($friendsList);
}
/** @test */
public function it_gets_the_supplied_users_player_summary()
{
$friendsList = $this->steamClient->user($this->id64)->GetPlayerSummaries($this->altId64);
$this->assertCount(1, $friendsList);
$this->checkPlayerProperties($friendsList);
$this->checkPlayerClasses($friendsList);
$this->assertNotEquals($friendsList[0]->steamId, $this->id64);
}
/** @test */
public function it_gets_all_users_in_friend_list()
{
$friendsList = $this->steamClient->user($this->id64)->GetFriendList('all');
$this->assertGreaterThan(0, $friendsList);
$this->checkPlayerProperties($friendsList);
$this->checkPlayerClasses($friendsList);
}
/** @test */
public function it_gets_friend_users_in_friend_list()
{
$friendsList = $this->steamClient->user($this->id64)->GetFriendList('friend');
$this->assertGreaterThan(0, $friendsList);
$this->checkPlayerProperties($friendsList);
$this->checkPlayerClasses($friendsList);
}
/** @test */
public function it_throws_exception_to_invalid_relationship_types()
{
$expectedMessage = 'Provided relationship [nonFriend] is not valid. Please select from: all, friend';
if (method_exists($this, 'setExpectedException')) {
$this->setExpectedException('InvalidArgumentException', $expectedMessage);
} else {
$this->expectException('InvalidArgumentException');
$this->expectExceptionMessage($expectedMessage);
}
$this->steamClient->user($this->id64)->GetFriendList('nonFriend');
}
/** @test */
public function it_gets_the_bans_for_the_base_user()
{
$bans = $this->steamClient->user($this->id64)->GetPlayerBans();
$this->assertCount(1, $bans);
$attributes = ['SteamId', 'CommunityBanned', 'VACBanned', 'NumberOfVACBans', 'DaysSinceLastBan', 'EconomyBan'];
$this->assertObjectHasProperties($attributes, $bans[0]);
}
/** @test */
public function it_gets_the_bans_for_the_supplied_user()
{
$bans = $this->steamClient->user($this->id64)->GetPlayerBans($this->altId64);
$this->assertCount(1, $bans);
$attributes = ['SteamId', 'CommunityBanned', 'VACBanned', 'NumberOfVACBans', 'DaysSinceLastBan', 'EconomyBan'];
$this->assertObjectHasProperties($attributes, $bans[0]);
$this->assertNotEquals($bans[0]->SteamId, $this->id64);
}
private function checkPlayerClasses($friendsList): void
{
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Player::class, $friendsList[0]);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Id::class, $friendsList[0]->steamIds);
}
}