librenms/tests/AddHostCliTest.php
Hans Erasmus 6c4596d1b9
Added new authalgo support for SNMPv3 (#11966)
* Added new authalgo support for SNMPv3

* Update 2020_07_27_00522_alter_authalgo_column.php

Fixed case

* Update addhost.inc.php

Fixed case

* Update snmp.inc.php

Fixed case

* Update db_schema.yaml

Fixed case

* Fixed SHA-* order to ascending

* Update 2020_07_27_00522_alter_authalgo_column.php

Fixed space

* Update db_schema.yaml

Fixed line to be of type string

* Update config_definitions.json

Fixed sorting

* Fixed test file case sensitivity

* Fixed rollback function

* SourceDoctor code for checks

* Fixed indentation issues on Travis test

* Update to re-trigger testing stuck on CLA step

* Added crypto-algo updates

* Incorporated suggestions from Jellyfrog

* Added documentation entry

* Fixed travis spacing error

* Fixed validations

* Delete snmpv3_version_compare.patch

Sorry, this one was not supposed to be there.

* Added poller evaluation

* Added poller comparison

* Fixed merge-conflicts

* Fixed typo in test unit

* code refinements
only can check on webui that it supports the algorithms, hopefully, the eventlog is enough to notify users of distributed pollers.

* style fixes and remove openssl setting

* fix device access

* fix missing migration column

Co-authored-by: Tony Murray <murraytony@gmail.com>
2020-10-29 13:02:26 -05:00

143 lines
5.9 KiB
PHP

<?php
/**
* addhostCliTest.php
*
* Tests for addhost.php cli tool
*
* 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 <http://www.gnu.org/licenses/>.
*
* @link http://librenms.org
* @copyright 2020 Lars Elgtvedt Susaas
* @author Lars Elgtvedt Susaas
*/
namespace LibreNMS\Tests;
use App\Models\Device;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class AddHostCliTest extends DBTestCase
{
use DatabaseTransactions;
private $hostName = 'testHost';
public function testCLIsnmpV1()
{
$result = \Artisan::call('device:add ' . $this->hostName . ' -force -ccommunity --v1');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($this->hostName);
$this->assertNotNull($device);
$this->assertEquals(0, $device->snmp_disable, 'snmp is disabled');
$this->assertEquals('community', $device->community, 'Wrong snmp community');
$this->assertEquals('v1', $device->snmpver, 'Wrong snmp version');
}
public function testCLIsnmpV2()
{
$result = \Artisan::call('device:add ' . $this->hostName . ' -force -ccommunity --v2c');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($this->hostName);
$this->assertNotNull($device);
$this->assertEquals(0, $device->snmp_disable, 'snmp is disabled');
$this->assertEquals('community', $device->community, 'Wrong snmp community');
$this->assertEquals('v2c', $device->snmpver, 'Wrong snmp version');
}
public function testCLIsnmpV3UserAndPW()
{
$result = \Artisan::call('device:add ' . $this->hostName . ' -force -uSecName -AAuthPW -XPrivPW --v3');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($this->hostName);
$this->assertNotNull($device);
$this->assertEquals(0, $device->snmp_disable, 'snmp is disabled');
$this->assertEquals('authPriv', $device->authlevel, 'Wrong snmp v3 authlevel');
$this->assertEquals('SecName', $device->authname, 'Wrong snmp v3 security username');
$this->assertEquals('AuthPW', $device->authpass, 'Wrong snmp v3 authentication password');
$this->assertEquals('PrivPW', $device->cryptopass, 'Wrong snmp v3 crypto password');
$this->assertEquals('v3', $device->snmpver, 'Wrong snmp version');
}
public function testPortAssociationMode()
{
$modes = ['ifIndex', 'ifName', 'ifDescr', 'ifAlias'];
foreach ($modes as $index => $mode) {
$host = 'hostName' . $mode;
$result = \Artisan::call('device:add ' . $host . ' -force -p ' . $mode . ' --v1');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($host);
$this->assertNotNull($device);
$this->assertEquals($index + 1, $device->port_association_mode, 'Wrong port association mode ' . $mode);
}
}
public function testSnmpTransport()
{
$modes = ['udp', 'udp6', 'tcp', 'tcp6'];
foreach ($modes as $mode) {
$host = 'hostName' . $mode;
$result = \Artisan::call('device:add ' . $host . ' -force -t ' . $mode . ' --v1');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($host);
$this->assertNotNull($device);
$this->assertEquals($mode, $device->transport, 'Wrong snmp transport (udp/tcp) ipv4/ipv6');
}
}
public function testSnmpV3AuthProtocol()
{
$modes = ['MD5', 'SHA', 'SHA-224', 'SHA-256', 'SHA-384', 'SHA-512'];
foreach ($modes as $mode) {
$host = 'hostName' . $mode;
$result = \Artisan::call('device:add ' . $host . ' -force -a ' . $mode . ' --v3');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($host);
$this->assertNotNull($device);
$this->assertEquals(strtoupper($mode), $device->authalgo, 'Wrong snmp v3 password algorithm');
}
}
public function testSnmpV3PrivacyProtocol()
{
$modes = ['DES', 'AES', 'AES-192', 'AES-256'];
foreach ($modes as $mode) {
$host = 'hostName' . $mode;
$result = \Artisan::call('device:add ' . $host . ' -force -x ' . $mode . ' --v3');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($host);
$this->assertNotNull($device);
$this->assertEquals(strtoupper($mode), $device->cryptoalgo, 'Wrong snmp v3 crypt algorithm');
}
}
public function testCLIping()
{
$result = \Artisan::call('device:add ' . $this->hostName . ' -force -P -onameOfOS -whardware -sSystem --v1');
$this->assertEquals(0, $result, 'command returned non zero value');
$device = Device::findByHostname($this->hostName);
$this->assertNotNull($device);
$this->assertEquals(1, $device->snmp_disable, 'snmp is not disabled');
$this->assertEquals('hardware', $device->hardware, 'Wrong hardware name');
$this->assertEquals('nameOfOS', $device->os, 'Wrong os name');
$this->assertEquals('System', $device->sysName, 'Wrong system name');
}
}