-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathPlayerTest.php
145 lines (112 loc) · 5.47 KB
/
PlayerTest.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
<?php
require_once('BaseTester.php');
/** @group Player */
class PlayerTest extends BaseTester {
/** @test */
public function it_gets_the_steam_level_by_user_id()
{
$steamLevel = $this->steamClient->player($this->id64)->GetSteamLevel();
$this->assertIsInt($steamLevel);
}
/** @test */
public function it_gets_the_player_details_by_user_id()
{
$details = $this->steamClient->player($this->id64)->GetPlayerLevelDetails();
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Player\Level::class, $details);
$attributes = [
'playerXp', 'playerLevel', 'xpToLevelUp', 'xpForCurrentLevel', 'currentLevelFloor',
'currentLevelCeiling', 'percentThroughLevel'
];
$this->assertObjectHasProperties($attributes, $details);
}
/** @test */
public function it_gets_the_badges_by_user_id()
{
$badges = $this->steamClient->player($this->id64)->GetBadges();
$attributes = ['badges', 'player_xp', 'player_level', 'player_xp_needed_to_level_up', 'player_xp_needed_current_level'];
$this->assertObjectHasProperties($attributes, $badges);
$attributes = ['badgeid', 'level', 'completion_time', 'xp', 'scarcity'];
$this->assertObjectHasProperties($attributes, $badges->badges[0]);
}
/** @test */
public function it_gets_the_badge_progress_by_user_id()
{
$this->expectApiCallFailedException('Api call failed to complete due to an empty response');
$progress = $this->steamClient->player($this->id64)->GetCommunityBadgeProgress();
$this->assertObjectHasProperty('quests', $progress);
$attributes = ['questid', 'completed'];
$this->assertObjectHasProperties($attributes, $progress->quests[0]);
}
/** @test */
public function it_gets_the_owned_games_by_user_id()
{
$games = $this->steamClient->player($this->id64)->GetOwnedGames();
$this->assertInstanceOf(\Illuminate\Support\Collection::class, $games);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Game::class, $games->first());
$attributes = [
'appId', 'name', 'playtimeTwoWeeks', 'playtimeTwoWeeksReadable', 'playtimeForever', 'playtimeForeverReadable',
'icon', 'logo', 'header', 'hasCommunityVisibleStats'
];
$this->assertObjectHasProperties($attributes, $games->first());
}
/** @test */
public function it_gets_the_owned_games_by_user_id_without_app_details()
{
$games = $this->steamClient->player($this->id64)->GetOwnedGames(false);
$this->assertInstanceOf(\Illuminate\Support\Collection::class, $games);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Game::class, $games->first());
$attributes = [
'appId', 'name', 'playtimeTwoWeeks', 'playtimeTwoWeeksReadable', 'playtimeForever', 'playtimeForeverReadable',
'icon', 'logo', 'header', 'hasCommunityVisibleStats'
];
$this->assertObjectHasProperties($attributes, $games->first());
$this->assertNull($games->first()->name);
$this->assertNull($games->first()->icon);
$this->assertNull($games->first()->logo);
}
/** @test */
public function it_filters_the_owned_games_by_user_id()
{
$games = $this->steamClient->player($this->id64)->GetOwnedGames(true, false, 400);
$this->assertInstanceOf(\Illuminate\Support\Collection::class, $games);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Game::class, $games->first());
$this->assertEquals(1, $games->count());
$attributes = [
'appId', 'name', 'playtimeTwoWeeks', 'playtimeTwoWeeksReadable', 'playtimeForever', 'playtimeForeverReadable',
'icon', 'logo', 'header', 'hasCommunityVisibleStats'
];
$this->assertObjectHasProperties($attributes, $games->first());
}
/** @test */
public function it_gets_recently_played_games_by_user_id()
{
$games = $this->steamClient->player($this->id64)->GetRecentlyPlayedGames();
$this->assertInstanceOf(\Illuminate\Support\Collection::class, $games);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Game::class, $games->first());
$attributes = [
'appId', 'name', 'playtimeTwoWeeks', 'playtimeTwoWeeksReadable', 'playtimeForever', 'playtimeForeverReadable',
'icon', 'logo', 'header', 'hasCommunityVisibleStats'
];
$this->assertObjectHasProperties($attributes, $games->first());
}
/** @test */
public function it_gets_a_single_recently_played_game_by_user_id()
{
$games = $this->steamClient->player($this->id64)->GetRecentlyPlayedGames(1);
$this->assertInstanceOf(\Illuminate\Support\Collection::class, $games);
$this->assertInstanceOf(\Syntax\SteamApi\Containers\Game::class, $games->first());
$this->assertEquals(1, $games->count());
$attributes = [
'appId', 'name', 'playtimeTwoWeeks', 'playtimeTwoWeeksReadable', 'playtimeForever', 'playtimeForeverReadable',
'icon', 'logo', 'header', 'hasCommunityVisibleStats'
];
$this->assertObjectHasProperties($attributes, $games->first());
}
/** @test */
public function it_checks_if_playing_a_shared_game_by_user_and_app_id()
{
$this->expectEmptyResponseException();
$playingSharedGame = $this->steamClient->player($this->id64)->IsPlayingSharedGame($this->appId);
$this->assertNotNull($playingSharedGame);
}
}