phpvms/tests/UtilsTest.php

171 lines
4.5 KiB
PHP
Raw Permalink Normal View History

<?php
namespace Tests;
use App\Repositories\KvpRepository;
use App\Support\ICAO;
use App\Support\Units\Distance;
use App\Support\Units\Time;
use App\Support\Utils;
use Carbon\Carbon;
class UtilsTest extends TestCase
{
public function testDates()
{
$carbon = new Carbon('2018-04-28T12:55:40Z');
2018-05-02 09:58:05 +08:00
$this->assertNotNull($carbon);
}
/**
* @throws \PhpUnitsOfMeasure\Exception\NonNumericValue
* @throws \PhpUnitsOfMeasure\Exception\NonStringUnitName
*/
public function testUnitRounding()
{
$this->updateSetting('units.distance', 'km');
$alt = new Distance(1065.3456, 'nmi');
$km = $alt->toUnit('km');
$this->assertEquals(1973.0200512, $km);
$km = $alt->toUnit('km', 2);
$this->assertEquals(1973.02, $km);
$km = $alt->toUnit('km', 0);
$this->assertEquals(1973, $km);
/*
* Test local conversions
*/
$km = $alt->local();
$this->assertEquals(1973.0200512, $km);
$km = $alt->local(0);
$this->assertEquals(1973, $km);
$km = $alt->local(2);
$this->assertEquals(1973.02, $km);
/*
* Internal units, shouldn't do a conversion
*/
$int = $alt->internal();
$this->assertEquals(1065.3456, $int);
$int = $alt->internal(2);
$this->assertEquals(1065.35, $int);
$int = $alt->internal(0);
$this->assertEquals(1065, $int);
}
/**
* Simple test for KVP
*/
public function testKvp()
{
/** @var KvpRepository $kvpRepo */
$kvpRepo = app(KvpRepository::class);
$kvpRepo->save('testkey', 'some value');
$this->assertEquals('some value', $kvpRepo->get('testkey'));
// test that default value is working
$this->assertEquals('default value', $kvpRepo->get('unknownkey', 'default value'));
// try saving an integer
$kvpRepo->save('intval', 1);
$this->assertEquals(1, $kvpRepo->get('intval'));
}
2018-08-27 02:50:08 +08:00
/**
* @throws \Exception
2018-08-27 02:50:08 +08:00
*/
2017-12-04 04:34:32 +08:00
public function testSecondsToTimeParts()
{
$t = Time::secondsToTimeParts(3600);
2017-12-04 04:34:32 +08:00
$this->assertEquals(['h' => 1, 'm' => 0, 's' => 0], $t);
$t = Time::secondsToTimeParts(3720);
2017-12-04 04:34:32 +08:00
$this->assertEquals(['h' => 1, 'm' => 2, 's' => 0], $t);
$t = Time::secondsToTimeParts(3722);
2017-12-04 04:34:32 +08:00
$this->assertEquals(['h' => 1, 'm' => 2, 's' => 2], $t);
$t = Time::secondsToTimeParts(60);
2017-12-04 04:34:32 +08:00
$this->assertEquals(['h' => 0, 'm' => 1, 's' => 0], $t);
$t = Time::secondsToTimeParts(62);
2017-12-04 04:34:32 +08:00
$this->assertEquals(['h' => 0, 'm' => 1, 's' => 2], $t);
}
/**
* @throws \Exception
*/
2017-12-24 01:17:16 +08:00
public function testSecondsToTime()
{
$t = Time::secondsToTimeString(3600);
2017-12-04 04:34:32 +08:00
$this->assertEquals('1h 0m', $t);
$t = Time::secondsToTimeString(3720);
2017-12-04 04:34:32 +08:00
$this->assertEquals('1h 2m', $t);
$t = Time::secondsToTimeString(3722);
2017-12-04 04:34:32 +08:00
$this->assertEquals('1h 2m', $t);
$t = Time::secondsToTimeString(3722, true);
2017-12-04 04:34:32 +08:00
$this->assertEquals('1h 2m 2s', $t);
}
2017-12-24 01:17:16 +08:00
public function testMinutesToTime()
{
$t = Time::minutesToTimeParts(65);
2017-12-24 01:17:16 +08:00
$this->assertEquals(['h' => 1, 'm' => 5], $t);
$t = Time::minutesToTimeString(65);
2017-12-24 01:17:16 +08:00
$this->assertEquals('1h 5m', $t);
$t = Time::minutesToTimeString(43200);
2017-12-24 01:17:16 +08:00
$this->assertEquals('720h 0m', $t);
}
2017-12-31 03:41:34 +08:00
public function testApiKey()
{
$api_key = Utils::generateApiKey();
$this->assertNotNull($api_key);
}
/**
* @throws \Exception
*/
public function testHexCode()
{
$hex_code = ICAO::createHexCode();
$this->assertNotNull($hex_code);
}
2020-01-29 01:42:46 +08:00
public function testGetDomain()
{
$tests = [
'http://phpvms.net',
'https://phpvms.net',
'https://phpvms.net/',
2020-01-29 01:42:46 +08:00
'phpvms.net',
'https://phpvms.net/index.php',
'https://demo.phpvms.net',
'https://demo.phpvms.net/file/index.php',
];
foreach ($tests as $case) {
$this->assertEquals('phpvms.net', Utils::getRootDomain($case));
2020-01-29 01:42:46 +08:00
}
$this->assertEquals('phpvms.co.uk', Utils::getRootDomain('http://phpvms.co.uk'));
$this->assertEquals('phpvms.co.uk', Utils::getRootDomain('http://www.phpvms.co.uk'));
2020-08-16 01:54:01 +08:00
$this->assertEquals('127.0.0.1', Utils::getRootDomain('http://127.0.0.1'));
$this->assertEquals('localhost', Utils::getRootDomain('http://localhost'));
2020-01-29 01:42:46 +08:00
}
}