forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoftwareVersionServiceTest.php
More file actions
168 lines (144 loc) · 4.96 KB
/
SoftwareVersionServiceTest.php
File metadata and controls
168 lines (144 loc) · 4.96 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
namespace Tests\Unit\Services\Helpers;
use Closure;
use Mockery as m;
use Tests\TestCase;
use GuzzleHttp\Client;
use Pterodactyl\Services\Helpers\SoftwareVersionService;
use Illuminate\Contracts\Cache\Repository as CacheRepository;
use Illuminate\Contracts\Config\Repository as ConfigRepository;
class SoftwareVersionServiceTest extends TestCase
{
/**
* @var \Illuminate\Contracts\Cache\Repository
*/
protected $cache;
/**
* @var \GuzzleHttp\Client
*/
protected $client;
/**
* @var \Illuminate\Contracts\Config\Repository
*/
protected $config;
/**
* @var object
*/
protected static $response = [
'panel' => '0.2.0',
'daemon' => '0.1.0',
'discord' => 'https://pterodactyl.io/discord',
];
/**
* @var \Pterodactyl\Services\Helpers\SoftwareVersionService
*/
protected $service;
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
self::$response = (object) self::$response;
$this->cache = m::mock(CacheRepository::class);
$this->client = m::mock(Client::class);
$this->config = m::mock(ConfigRepository::class);
$this->config->shouldReceive('get')->with('pterodactyl.cdn.cache_time')->once()->andReturn(60);
$this->cache->shouldReceive('remember')->with(SoftwareVersionService::VERSION_CACHE_KEY, 60, Closure::class)->once()->andReturnNull();
$this->service = m::mock(SoftwareVersionService::class, [$this->cache, $this->client, $this->config])->makePartial();
}
/**
* Test that the panel version is returned.
*/
public function testPanelVersionIsReturned()
{
$this->cache->shouldReceive('get')->with(SoftwareVersionService::VERSION_CACHE_KEY)->once()->andReturn(self::$response);
$this->assertEquals(self::$response->panel, $this->service->getPanel());
}
/**
* Test that the panel version is returned as error.
*/
public function testPanelVersionIsReturnedAsErrorIfNoKeyIsFound()
{
$this->cache->shouldReceive('get')->with(SoftwareVersionService::VERSION_CACHE_KEY)->once()->andReturn((object) []);
$this->assertEquals('error', $this->service->getPanel());
}
/**
* Test that the daemon version is returned.
*/
public function testDaemonVersionIsReturned()
{
$this->cache->shouldReceive('get')->with(SoftwareVersionService::VERSION_CACHE_KEY)->once()->andReturn(self::$response);
$this->assertEquals(self::$response->daemon, $this->service->getDaemon());
}
/**
* Test that the daemon version is returned as an error.
*/
public function testDaemonVersionIsReturnedAsErrorIfNoKeyIsFound()
{
$this->cache->shouldReceive('get')->with(SoftwareVersionService::VERSION_CACHE_KEY)->once()->andReturn((object) []);
$this->assertEquals('error', $this->service->getDaemon());
}
/**
* Test that the discord URL is returned.
*/
public function testDiscordUrlIsReturned()
{
$this->cache->shouldReceive('get')->with(SoftwareVersionService::VERSION_CACHE_KEY)->once()->andReturn(self::$response);
$this->assertEquals(self::$response->discord, $this->service->getDiscord());
}
/**
* Test that the correct boolean value is returned by the helper for each version passed.
*
* @dataProvider panelVersionProvider
*/
public function testCorrectBooleanValueIsReturnedWhenCheckingPanelVersion($version, $response)
{
$this->config->shouldReceive('get')->with('app.version')->andReturn($version);
$this->service->shouldReceive('getPanel')->withNoArgs()->andReturn(self::$response->panel);
$this->assertEquals($response, $this->service->isLatestPanel());
}
/**
* Test that the correct boolean value is returned.
*
* @dataProvider daemonVersionProvider
*/
public function testCorrectBooleanValueIsReturnedWhenCheckingDaemonVersion($version, $response)
{
$this->service->shouldReceive('getDaemon')->withNoArgs()->andReturn(self::$response->daemon);
$this->assertEquals($response, $this->service->isLatestDaemon($version));
}
/**
* Provide data for testing boolean response on panel version.
*
* @return array
*/
public function panelVersionProvider()
{
return [
[self::$response['panel'], true],
['0.0.1', false],
['canary', true],
];
}
/**
* Provide data for testing booklean response for daemon version.
*
* @return array
*/
public function daemonVersionProvider()
{
return [
[self::$response['daemon'], true],
['0.0.1', false],
['0.0.0-canary', true],
];
}
}