mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	* Refactor tests Boot Laravel for all tests. Config use private static property for storage instead of global * Backup/restore modules * disable snmpsim log * Fixing DBTestCase * Fix macros loading to the wrong place * trap and other tests should check if db is available * don't include snmp.inc.php if mock.snmp.inc.php is already included... * fix migration * if we don't reset the db, run migrations at least. * set vars for migrate too * Fix style * ignore issues with undefined indexes in legacy code
		
			
				
	
	
		
			107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * DeviceTest.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 <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  * @package    LibreNMS
 | |
|  * @link       http://librenms.org
 | |
|  * @copyright  2018 Tony Murray
 | |
|  * @author     Tony Murray <murraytony@gmail.com>
 | |
|  */
 | |
| 
 | |
| namespace LibreNMS\Tests\Unit;
 | |
| 
 | |
| use App\Models\Device;
 | |
| use App\Models\Ipv4Address;
 | |
| use App\Models\Port;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use LibreNMS\Tests\DBTestCase;
 | |
| use LibreNMS\Tests\TestCase;
 | |
| 
 | |
| class DeviceTest extends DBTestCase
 | |
| {
 | |
|     use DatabaseTransactions;
 | |
| 
 | |
|     public function testFindByHostname()
 | |
|     {
 | |
|         $device = factory(Device::class)->create();
 | |
| 
 | |
|         $found = Device::findByHostname($device->hostname);
 | |
|         $this->assertNotNull($found);
 | |
|         $this->assertEquals($device->device_id, $found->device_id, "Did not find the correct device");
 | |
|     }
 | |
| 
 | |
|     public function testFindByIpFail()
 | |
|     {
 | |
|         $found = Device::findByIp('this is not an ip');
 | |
|         $this->assertNull($found);
 | |
|     }
 | |
| 
 | |
|     public function testFindByIpv4Fail()
 | |
|     {
 | |
|         $found = Device::findByIp('182.43.219.43');
 | |
|         $this->assertNull($found);
 | |
|     }
 | |
| 
 | |
|     public function testFindByIpv6Fail()
 | |
|     {
 | |
|         $found = Device::findByIp('341a:234d:3429:9845:909f:fd32:1930:32dc');
 | |
|         $this->assertNull($found);
 | |
|     }
 | |
| 
 | |
|     public function testFindIpButNoPort()
 | |
|     {
 | |
|         $ipv4 = factory(Ipv4Address::class)->create();
 | |
|         Port::destroy($ipv4->port_id);
 | |
| 
 | |
|         $found = Device::findByIp($ipv4->ipv4_address);
 | |
|         $this->assertNull($found);
 | |
|     }
 | |
| 
 | |
|     public function testFindByIp()
 | |
|     {
 | |
|         $device = factory(Device::class)->create();
 | |
| 
 | |
|         $found = Device::findByIp($device->ip);
 | |
|         $this->assertNotNull($found);
 | |
|         $this->assertEquals($device->device_id, $found->device_id, "Did not find the correct device");
 | |
|     }
 | |
| 
 | |
|     public function testFindByIpHostname()
 | |
|     {
 | |
|         $ip = '192.168.234.32';
 | |
|         $device = factory(Device::class)->create(['hostname' => $ip]);
 | |
| 
 | |
|         $found = Device::findByIp($ip);
 | |
|         $this->assertNotNull($found);
 | |
|         $this->assertEquals($device->device_id, $found->device_id, "Did not find the correct device");
 | |
|     }
 | |
| 
 | |
|     public function testFindByIpThroughPort()
 | |
|     {
 | |
|         $device = factory(Device::class)->create();
 | |
|         $port = factory(Port::class)->make();
 | |
|         $device->ports()->save($port);
 | |
|         $ipv4 = factory(Ipv4Address::class)->make(); // test ipv4 lookup of device
 | |
|         $port->ipv4()->save($ipv4);
 | |
| 
 | |
|         $found = Device::findByIp($ipv4->ipv4_address);
 | |
|         $this->assertNotNull($found);
 | |
|         $this->assertEquals($device->device_id, $found->device_id, "Did not find the correct device");
 | |
|     }
 | |
| }
 |