phpvms/tests/VersionTest.php
Nabeel S a3f110c0c0
Add PHP 8.1 to shims and build (#1365)
* Add PHP 8.1 to shims and build

* Lock psr/container version

* Lock psr version

* Restrict symfony component versions

* Downgrade event-dispatcher-contracts

* Update more package versions

* php-cs fixes

* style fix

* cs-fixer file fix

* Exclude resources dir from cs fixer

* Ignore cs fixer env check

* Update league/csv
2021-12-03 09:23:59 -05:00

111 lines
3.0 KiB
PHP

<?php
namespace Tests;
use App\Repositories\KvpRepository;
use App\Services\VersionService;
class VersionTest extends TestCase
{
private $kvpRepo;
public function setUp(): void
{
parent::setUp();
$this->kvpRepo = app(KvpRepository::class);
}
/**
* Test that the new versions (keys) are properly regarded as new versions
*/
public function testGreaterThanVersionStrings(): void
{
$test = [
['7.0.0' => '6.0.0'],
['7.0.0+1231s' => '6.0.0'],
// ['7.0.0-beta' => '7.0.0-dev'],
['7.0.0-beta' => '7.0.0-alpha'],
['7.0.0-beta.1' => '7.0.0-beta'],
['7.0.0-beta.2' => '7.0.0-beta.1'],
['7.0.0-beta.2+a34sdf' => '7.0.0-beta.1'],
];
$versionSvc = app(VersionService::class);
foreach ($test as $set) {
$newVersion = array_key_first($set);
$currentVersion = $set[$newVersion];
$this->assertTrue(
$versionSvc->isGreaterThan($newVersion, $currentVersion),
"$newVersion not greater than $currentVersion"
);
}
}
public function testGetLatestVersion(): void
{
setting('general.check_prerelease_version', false);
$this->mockGuzzleClient('releases.json');
$versionSvc = app(VersionService::class);
$str = $versionSvc->getLatestVersion();
$this->assertEquals('7.0.0-alpha2', $str);
$this->assertEquals('7.0.0-alpha2', $this->kvpRepo->get('latest_version_tag'));
}
public function testGetLatestPrereleaseVersion(): void
{
$this->updateSetting('general.check_prerelease_version', true);
$this->mockGuzzleClient('releases.json');
$versionSvc = app(VersionService::class);
$str = $versionSvc->getLatestVersion();
$this->assertEquals('7.0.0-beta', $str);
$this->assertEquals('7.0.0-beta', $this->kvpRepo->get('latest_version_tag'));
}
public function testNewVersionNotAvailable(): void
{
$this->updateSetting('general.check_prerelease_version', false);
$versions = [
'v7.0.0',
'7.0.0',
'8.0.0',
'7.0.0-beta',
'7.0.0+buildid',
];
foreach ($versions as $v) {
$this->mockGuzzleClient('releases.json');
$versionSvc = app(VersionService::class);
$this->assertFalse($versionSvc->isNewVersionAvailable($v));
}
}
/**
* Version in the prerelease releases.json is v7.0.0-beta
*/
public function testNewVersionIsAvailable(): void
{
$this->updateSetting('general.check_prerelease_version', true);
$versions = [
'v6.0.1',
'6.0.0',
'7.0.0-alpha',
];
foreach ($versions as $v) {
$this->mockGuzzleClient('releases.json');
$versionSvc = app(VersionService::class);
$this->assertTrue($versionSvc->isNewVersionAvailable($v));
}
}
}