librenms/tests/FunctionsTest.php
Jellyfrog 2b3575a5e9
Laravel 10.x Shift (#14995)
* Apply code style

* Remove explicit call to register policies

* Shift core files

* Shift config files

* Default config files

In an effort to make upgrading the constantly changing config files
easier, Shift defaulted them and merged your true customizations -
where ENV variables may not be used.

* Bump Laravel dependencies

* Add type hints for Laravel 10

* Shift cleanup

* wip

* wip

* sync translation

* Sync back config

* Public Path Binding

* QueryException

* monolog

* db::raw

* monolog

* db::raw

* fix larastan collections

* fix phpstan bug looping forever

* larastan errors

* larastan: fix column type

* styleci

* initialize array

* fixes

* fixes

---------

Co-authored-by: Shift <shift@laravelshift.com>
2023-05-24 22:21:54 +02:00

136 lines
5.6 KiB
PHP

<?php
/**
* FunctionsTest.php
*
* tests functions in includes/functions.php
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2017 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Tests;
use LibreNMS\Device\YamlDiscovery;
use LibreNMS\Util\Number;
use LibreNMS\Util\Rewrite;
use LibreNMS\Util\Time;
class FunctionsTest extends TestCase
{
public function testMacCleanToReadable(): void
{
$this->assertEquals('de:ad:be:ef:a0:c3', Rewrite::readableMac('deadbeefa0c3'));
}
public function testHex2Str(): void
{
$this->assertEquals('Big 10 UP', hex2str('426967203130205550'));
}
public function testSnmpHexstring(): void
{
$input = '4c 61 72 70 69 6e 67 20 34 20 55 00 0a';
$this->assertEquals("Larping 4 U\n", snmp_hexstring($input));
}
public function testIsHexString(): void
{
$this->assertTrue(isHexString('af 28 02'));
$this->assertTrue(isHexString('aF 28 02 CE'));
$this->assertFalse(isHexString('a5 fj 53'));
$this->assertFalse(isHexString('a5fe53'));
}
public function testDynamicDiscoveryGetValue(): void
{
$pre_cache = [
'firstdata' => [
0 => ['temp' => 1],
1 => ['temp' => 2],
],
'high' => [
0 => ['high' => 3],
1 => ['high' => 4],
],
'table' => [
0 => ['first' => 5, 'second' => 6],
1 => ['first' => 7, 'second' => 8],
],
'single' => ['something' => 9],
'oneoff' => 10,
'singletable' => [
11 => ['singletable' => 'Pickle'],
],
'doubletable' => [
12 => ['doubletable' => 'Mustard'],
13 => ['doubletable' => 'BBQ'],
],
];
$data = ['value' => 'temp', 'oid' => 'firstdata'];
$this->assertNull(YamlDiscovery::getValueFromData('missing', 0, $data, $pre_cache));
$this->assertSame('yar', YamlDiscovery::getValueFromData('default', 0, $data, $pre_cache, 'yar'));
$this->assertSame(2, YamlDiscovery::getValueFromData('value', 1, $data, $pre_cache));
$data = ['oid' => 'high'];
$this->assertSame(3, YamlDiscovery::getValueFromData('high', 0, $data, $pre_cache));
$data = ['oid' => 'table'];
$this->assertSame(5, YamlDiscovery::getValueFromData('first', 0, $data, $pre_cache));
$this->assertSame(7, YamlDiscovery::getValueFromData('first', 1, $data, $pre_cache));
$this->assertSame(6, YamlDiscovery::getValueFromData('second', 0, $data, $pre_cache));
$this->assertSame(8, YamlDiscovery::getValueFromData('second', 1, $data, $pre_cache));
$this->assertSame(9, YamlDiscovery::getValueFromData('single', 0, $data, $pre_cache));
$this->assertSame(10, YamlDiscovery::getValueFromData('oneoff', 3, $data, $pre_cache));
$this->assertSame('Pickle', YamlDiscovery::getValueFromData('singletable', 11, $data, $pre_cache));
$this->assertSame('BBQ', YamlDiscovery::getValueFromData('doubletable', 13, $data, $pre_cache));
}
public function testParseAtTime(): void
{
$this->assertEquals(time(), Time::parseAt('now'), 'now did not match');
$this->assertEquals(time() + 180, Time::parseAt('+3m'), '+3m did not match');
$this->assertEquals(time() + 7200, Time::parseAt('+2h'), '+2h did not match');
$this->assertEquals(time() + 172800, Time::parseAt('+2d'), '+2d did not match');
$this->assertEquals(time() + 63115200, Time::parseAt('+2y'), '+2y did not match');
$this->assertEquals(time() - 180, Time::parseAt('-3m'), '-3m did not match');
$this->assertEquals(time() - 7200, Time::parseAt('-2h'), '-2h did not match');
$this->assertEquals(time() - 172800, Time::parseAt('-2d'), '-2d did not match');
$this->assertEquals(time() - 63115200, Time::parseAt('-2y'), '-2y did not match');
$this->assertEquals(429929439, Time::parseAt('429929439'));
$this->assertEquals(212334234, Time::parseAt(212334234));
$this->assertEquals(time() - 43, Time::parseAt('-43'), '-43 did not match');
$this->assertEquals(0, Time::parseAt('invalid'));
$this->assertEquals(606614400, Time::parseAt('March 23 1989 UTC'));
$this->assertEquals(time() + 86400, Time::parseAt('+1 day'));
}
public function testNumberCast()
{
$this->assertSame(-14.3, Number::cast(-14.3));
$this->assertSame(0, Number::cast('b -35')); // cast must start with the number as old style php cast did
$this->assertSame(0, Number::cast('0 43 51'));
$this->assertSame(14.35, Number::cast('14.35 a'));
$this->assertSame(-43.332, Number::cast('-43.332 a'));
$this->assertSame(-12325234523.43, Number::cast('-12325234523.43asdf'));
$this->assertSame(1, Number::cast(1.0));
$this->assertSame(2, Number::cast('2.000'));
}
}