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
88 lines
3.5 KiB
PHP
88 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* NetgearFailedUserLoginTest.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/>.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*/
|
|
|
|
namespace LibreNMS\Tests\Feature\SnmpTraps;
|
|
|
|
use LibreNMS\Enum\Severity;
|
|
|
|
class HpFaultTest extends SnmpTrapTestCase
|
|
{
|
|
public function testBadCable(): void
|
|
{
|
|
$this->assertTrapLogsMessage(<<<'TRAP'
|
|
{{ hostname }}
|
|
UDP: [{{ ip }}]:44298->[192.168.5.5]:162
|
|
SNMPv2-MIB::snmpTrapOID.0 HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 133:19:41:09.17
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogFaultType.1510 badCable
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogAction.1510 warn
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogSeverity.1510 medium
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfFaultInfoURL.0.1510 http:\/\/{{ ip }}\/cgi\/fDetail?index=1510
|
|
SNMP-COMMUNITY-MIB::snmpTrapAddress.0 {{ ip }}
|
|
SNMP-COMMUNITY-MIB::snmpTrapCommunity.0 public
|
|
SNMPv2-MIB::snmpTrapEnterprise.0 HP-ICF-OID::hpicfCommonTraps
|
|
TRAP,
|
|
"Fault - Bad Cable http:\/\/{{ ip }}\/cgi\/fDetail?index=1510",
|
|
'Could not handle HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap trap',
|
|
[Severity::Warning, 'badCable'],
|
|
);
|
|
}
|
|
|
|
public function testBadDriver(): void
|
|
{
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:44298->[192.168.5.5]:162
|
|
SNMPv2-MIB::snmpTrapOID.0 HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 133:19:41:09.17
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogFaultType.1510 badDriver
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogAction.1510 warn
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogSeverity.1510 medium
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfFaultInfoURL.0.1510 http:\/\/{{ ip }}\/cgi\/fDetail?index=1510
|
|
SNMP-COMMUNITY-MIB::snmpTrapAddress.0 {{ ip }}
|
|
SNMP-COMMUNITY-MIB::snmpTrapCommunity.0 public
|
|
SNMPv2-MIB::snmpTrapEnterprise.0 HP-ICF-OID::hpicfCommonTraps",
|
|
"Fault - Unhandled http:\/\/{{ ip }}\/cgi\/fDetail?index=1510",
|
|
'Could not handle HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap trap',
|
|
[Severity::Info, 'badDriver'],
|
|
);
|
|
}
|
|
|
|
public function testBcastStorm(): void
|
|
{
|
|
$this->assertTrapLogsMessage("{{ hostname }}
|
|
UDP: [{{ ip }}]:44298->[192.168.5.5]:162
|
|
SNMPv2-MIB::snmpTrapOID.0 HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap
|
|
DISMAN-EVENT-MIB::sysUpTimeInstance 133:19:41:09.17
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogFaultType.1510 bcastStorm
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogAction.1510 warn
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfLogSeverity.1510 medium
|
|
HP-ICF-FAULT-FINDER-MIB::hpicfFfFaultInfoURL.0.1510 http:\/\/{{ ip }}\/cgi\/fDetail?index=1510
|
|
SNMP-COMMUNITY-MIB::snmpTrapAddress.0 {{ ip }}
|
|
SNMP-COMMUNITY-MIB::snmpTrapCommunity.0 public
|
|
SNMPv2-MIB::snmpTrapEnterprise.0 HP-ICF-OID::hpicfCommonTraps",
|
|
"Fault - Broadcaststorm http:\/\/{{ ip }}\/cgi\/fDetail?index=1510",
|
|
'Could not handle HP-ICF-FAULT-FINDER-MIB::hpicfFaultFinderTrap trap',
|
|
[Severity::Error, 'bcastStorm'],
|
|
);
|
|
}
|
|
}
|