mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
39 lines
1006 B
PHP
39 lines
1006 B
PHP
<?php
|
|
|
|
namespace LibreNMS\Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
use SnmpsimHelpers;
|
|
|
|
public function __construct($name = null, $data = [], $dataName = '')
|
|
{
|
|
parent::__construct($name, $data, $dataName);
|
|
// grab global $snmpsim from bootstrap and make it accessible
|
|
$this->getSnmpsim();
|
|
}
|
|
|
|
public function dbSetUp()
|
|
{
|
|
if (getenv('DBTEST')) {
|
|
\LibreNMS\DB\Eloquent::DB()->beginTransaction();
|
|
} else {
|
|
$this->markTestSkipped('Database tests not enabled. Set DBTEST=1 to enable.');
|
|
}
|
|
}
|
|
|
|
public function dbTearDown()
|
|
{
|
|
if (getenv('DBTEST')) {
|
|
try {
|
|
\LibreNMS\DB\Eloquent::DB()->rollBack();
|
|
} catch (\Exception $e) {
|
|
$this->fail("Exception when rolling back transaction.\n" . $e->getTraceAsString());
|
|
}
|
|
}
|
|
}
|
|
}
|