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
136 lines
5.8 KiB
PHP
136 lines
5.8 KiB
PHP
<?php
|
|
/**
|
|
* MgmtTrapNmsAlarmTest.php
|
|
*
|
|
* -Description-
|
|
*
|
|
* Tests NMS Alarm Traps sent by Ekinops Optical Networking products.
|
|
*
|
|
* 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 JnxVpnPwDown and JnxVpnPwUp traps from Juniper devices.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2020 KanREN, Inc
|
|
* @author Heath Barnhart <hbarnhart@kanren.net>
|
|
*/
|
|
|
|
namespace LibreNMS\Tests\Feature\SnmpTraps;
|
|
|
|
use LibreNMS\Enum\Severity;
|
|
|
|
class MgmtTrapNmsAlarmTest extends SnmpTrapTestCase
|
|
{
|
|
public function testAlarmClear(): void
|
|
{
|
|
$alarm = self::genEkiAlarm();
|
|
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:60057->[192.168.1.100]:162
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 168:19:32:11.62
|
|
SNMPv2-MIB::snmpTrapOID.0 EKINOPS-MGNT2-NMS-MIB::mgnt2TrapNMSAlarm
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNotificationId 566098
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogObjectClassIdentifier module
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePm {$alarm['srcPm']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogBoardNumber {$alarm['slotNum']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortType Other
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortNumber 0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogProbableCause other
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSeverity cleared
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSpecificProblem {$alarm['specific']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAdditionalText
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAlarmType synthesisAlarm
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogTime 2020-8-19,14:21:2.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNodeControllerIpAddress 0.0.0.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogChassisId {{ ip }}",
|
|
"Alarm on slot {$alarm['slotNum']}, {$alarm['srcPm']} Issue: {$alarm['specific']} Possible Cause: Unknown",
|
|
'Could not handle mgnt2TrapNMSAlarm trap CLEARED',
|
|
[Severity::Ok],
|
|
);
|
|
}
|
|
|
|
//Test alarm with addtional text supplied.
|
|
public function testAlarmAddText(): void
|
|
{
|
|
$alarm = self::genEkiAlarm();
|
|
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:60057->[192.168.1.100]:162
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 168:19:32:11.62
|
|
SNMPv2-MIB::snmpTrapOID.0 EKINOPS-MGNT2-NMS-MIB::mgnt2TrapNMSAlarm
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNotificationId 566098
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogObjectClassIdentifier module
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePm {$alarm['srcPm']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogBoardNumber {$alarm['slotNum']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortType Other
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortNumber 0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogProbableCause other
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSeverity cleared
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSpecificProblem {$alarm['specific']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAdditionalText {$alarm['addText']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAlarmType synthesisAlarm
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogTime 2020-8-19,14:21:2.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNodeControllerIpAddress 0.0.0.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogChassisId {{ ip }}",
|
|
"Alarm on slot {$alarm['slotNum']}, {$alarm['srcPm']} Issue: {$alarm['specific']} Additional info: {$alarm['addText']} Possible Cause: Unknown",
|
|
'Could not handle mgnt2TrapNMSAlarm trap with additional text',
|
|
[Severity::Ok],
|
|
);
|
|
}
|
|
|
|
//Alarm is on a specific port
|
|
public function testAlarmPort(): void
|
|
{
|
|
$alarm = self::genEkiAlarm();
|
|
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:60057->[192.168.1.100]:162
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 168:19:32:03.51
|
|
SNMPv2-MIB::snmpTrapOID.0 EKINOPS-MGNT2-NMS-MIB::mgnt2TrapNMSAlarm
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNotificationId 566097
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogObjectClassIdentifier port
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePm {$alarm['srcPm']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogBoardNumber {$alarm['slotNum']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortType {$alarm['portType']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSourcePortNumber {$alarm['portNum']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogProbableCause {$alarm['probCause']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSeverity critical
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogSpecificProblem {$alarm['specific']}
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAdditionalText
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogAlarmType integrityViolation
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogTime 2020-8-19,14:20:54.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogNodeControllerIpAddress 0.0.0.0
|
|
EKINOPS-MGNT2-NMS-MIB::mgnt2AlmLogChassisId {{ ip }}",
|
|
"Alarm on slot {$alarm['slotNum']}, {$alarm['srcPm']} Port: {$alarm['portType']} {$alarm['portNum']} Issue: {$alarm['specific']} Possible Cause: {$alarm['probCause']}",
|
|
'Could not handle mgnt2TrapNMSAlarm trap with additional text',
|
|
[Severity::Error],
|
|
);
|
|
}
|
|
|
|
public static function genEkiAlarm(): array
|
|
{
|
|
return [
|
|
'slotNum' => rand(1, 32),
|
|
'srcPm' => str_shuffle('0123456789abcdefg'),
|
|
'specific' => str_shuffle('0123456789abcdefg'),
|
|
'portType' => str_shuffle('0123456789abcdefg'),
|
|
'probCause' => str_shuffle('0123456789abcdefg'),
|
|
'portNum' => rand(1, 32),
|
|
'addText' => str_shuffle('0123456789abcdefg'),
|
|
];
|
|
}
|
|
}
|