librenms/tests/TestCase.php
Tony Murray 8afafe7eb0 refactor: pre-commit.php updates (#8679)
Disable the log for unit tests to speed things up hopefully
2018-05-09 12:53:45 +01:00

67 lines
1.8 KiB
PHP

<?php
/**
* TestCase.php
*
* Base Test Case for all tests
*
* 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 2017 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Tests;
use LibreNMS\Util\Snmpsim;
abstract class TestCase extends \PHPUnit_Framework_TestCase
{
/** @var Snmpsim snmpsim instance */
protected $snmpsim = null;
public function __construct($name = null, $data = [], $dataName = '')
{
parent::__construct($name, $data, $dataName);
// grab global $snmpsim from bootstrap and make it accessible
global $snmpsim;
$this->snmpsim = $snmpsim;
}
public function dbSetUp()
{
if (getenv('DBTEST')) {
dbConnect();
dbBeginTransaction();
} else {
$this->markTestSkipped('Database tests not enabled. Set DBTEST=1 to enable.');
}
}
public function dbTearDown()
{
if (getenv('DBTEST')) {
dbRollbackTransaction();
}
}
public function requreSnmpsim()
{
if (!getenv('SNMPSIM')) {
$this->markTestSkipped('Snmpsim required for this test. Set SNMPSIM=1 to enable.');
}
}
}