mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Severity Enum Replace old Alert constants * Fix whitespace * Additional uses * style fixes * Fix test too * More missed locations * More
90 lines
3.4 KiB
PHP
90 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* JnxLdpSesTest.php
|
|
* -Description-
|
|
*
|
|
* 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/>.
|
|
*
|
|
*
|
|
* Tests JnxLdpSesDown and JnxLdpSesUp traps from Juniper devices.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2019 KanREN, Inc
|
|
* @author Heath Barnhart <hbarnhart@kanren.net>
|
|
*/
|
|
|
|
namespace LibreNMS\Tests\Feature\SnmpTraps;
|
|
|
|
use App\Models\Device;
|
|
use App\Models\Port;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use LibreNMS\Enum\Severity;
|
|
use LibreNMS\Tests\Traits\RequiresDatabase;
|
|
|
|
class JnxLdpSesTest extends SnmpTrapTestCase
|
|
{
|
|
use RequiresDatabase;
|
|
use DatabaseTransactions;
|
|
|
|
public function testJnxLdpSesDownTrap(): void
|
|
{
|
|
$device = Device::factory()->create(); /** @var Device $device */
|
|
$port = Port::factory()->make(['ifAdminStatus' => 'up', 'ifOperStatus' => 'up']); /** @var Port $port */
|
|
$device->ports()->save($port);
|
|
|
|
$warning = "Snmptrap LdpSesDown: Could not find port at ifIndex $port->ifIndex for device: $device->hostname";
|
|
\Log::shouldReceive('warning')->never()->with($warning);
|
|
|
|
$this->assertTrapLogsMessage("$device->hostname
|
|
UDP: [$device->ip]:64610->[192.168.5.5]:162
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 198:2:10:48.91
|
|
SNMPv2-MIB::snmpTrapOID.0 JUNIPER-LDP-MIB::jnxLdpSesDown
|
|
JUNIPER-MPLS-LDP-MIB::jnxMplsLdpSesState.'.q.j..'.1.'.q.p..' nonexistent
|
|
JUNIPER-LDP-MIB::jnxLdpSesDownReason.0 allAdjacenciesDown
|
|
JUNIPER-LDP-MIB::jnxLdpSesDownIf.0 $port->ifIndex
|
|
SNMPv2-MIB::snmpTrapEnterprise.0 JUNIPER-CHASSIS-DEFINES-MIB::jnxProductNameMX480",
|
|
"LDP session on interface $port->ifDescr is nonexistent due to allAdjacenciesDown",
|
|
'Could not handle JnxLdpSesDown trap',
|
|
[Severity::Warning],
|
|
$device,
|
|
);
|
|
}
|
|
|
|
public function testJnxLdpSesUpTrap(): void
|
|
{
|
|
$device = Device::factory()->create();
|
|
/** @var Device $device */
|
|
$port = Port::factory()->make(['ifAdminStatus' => 'up', 'ifOperStatus' => 'up']);
|
|
/** @var Port $port */
|
|
$device->ports()->save($port);
|
|
|
|
$warning = "Snmptrap LdpSesUp: Could not find port at ifIndex $port->ifIndex for device: $device->hostname";
|
|
\Log::shouldReceive('warning')->never()->with($warning);
|
|
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:64610->[192.168.5.5]:162
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 198:2:10:48.91
|
|
SNMPv2-MIB::snmpTrapOID.0 JUNIPER-LDP-MIB::jnxLdpSesUp
|
|
JUNIPER-MPLS-LDP-MIB::jnxMplsLdpSesState.'.q.d..'.1.'.q.p..' operational
|
|
JUNIPER-LDP-MIB::jnxLdpSesUpIf.0 $port->ifIndex
|
|
SNMPv2-MIB::snmpTrapEnterprise.0 JUNIPER-CHASSIS-DEFINES-MIB::jnxProductNameMX960",
|
|
"LDP session on interface $port->ifDescr is operational",
|
|
'Could not handle JnxLdpSesUp trap',
|
|
[Severity::Ok],
|
|
$device,
|
|
);
|
|
}
|
|
}
|