mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Move assets to 5.7 location * Add 5.7 SVGs * add cache data dir * update QUEUE_DRIVER -> QUEUE_CONNECTION * Update trusted proxy config * update composer.json * 5.5 command loading * @php and @endphp can't be inline * Laravel 5.6 logging, Nice! * Update blade directives * improved redirects * remove unneeded service providers * Improved debugbar loading * no need to emulate renderable exceptions anymore * merge updated 5.7 files (WIP) * Enable CSRF * database_path() call causes issue in init.php * fix old testcase name * generic phpunit 7 fixes * add missed file_get_contents Keep migrations table content * fix duplicate key * Drop old php versions from travis-ci * remove hhvm * fix code climate message * remove use of deprecated function assertInternalType * Disable CSRF, we'll enable it separately. All forms need to be updated to work. * Update document references
117 lines
3.6 KiB
PHP
117 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* bootstrap.php
|
|
*
|
|
* Initialize the Autoloader and includes for phpunit to be able to run 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 2016 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
use LibreNMS\Config;
|
|
use LibreNMS\DB\Eloquent;
|
|
use LibreNMS\Exceptions\DatabaseConnectException;
|
|
use LibreNMS\Util\Snmpsim;
|
|
|
|
global $config;
|
|
|
|
$install_dir = realpath(__DIR__ . '/..');
|
|
|
|
$init_modules = array('web', 'discovery', 'polling', 'nodb');
|
|
|
|
if (!getenv('SNMPSIM')) {
|
|
$init_modules[] = 'mocksnmp';
|
|
}
|
|
|
|
if (getenv('DBTEST')) {
|
|
if (!is_file($install_dir . '/config.php')) {
|
|
exec("cp $install_dir/tests/config/config.test.php $install_dir/config.php");
|
|
}
|
|
}
|
|
|
|
require $install_dir . '/includes/init.php';
|
|
chdir($install_dir);
|
|
|
|
ini_set('display_errors', 1);
|
|
//error_reporting(E_ALL & ~E_WARNING);
|
|
|
|
update_os_cache(true); // Force update of OS Cache
|
|
|
|
$snmpsim = new Snmpsim('127.1.6.2', 1162, null);
|
|
if (getenv('SNMPSIM')) {
|
|
$snmpsim->fork();
|
|
|
|
// make PHP hold on a reference to $snmpsim so it doesn't get destructed
|
|
register_shutdown_function(function (Snmpsim $ss) {
|
|
$ss->stop();
|
|
}, $snmpsim);
|
|
}
|
|
|
|
if (getenv('DBTEST')) {
|
|
global $schema, $sql_mode;
|
|
|
|
// create testing table if needed
|
|
$db_config = Config::getDatabaseSettings();
|
|
$db_name = $db_config['db_name'];
|
|
|
|
$connection = new PDO("mysql:host={$db_config['db_host']}", $db_config['db_user'], $db_config['db_pass']);
|
|
$connection->query("CREATE DATABASE IF NOT EXISTS $db_name CHARACTER SET utf8 COLLATE utf8_unicode_ci");
|
|
unset($connection); // close connection
|
|
|
|
\LibreNMS\DB\Eloquent::boot();
|
|
\LibreNMS\DB\Eloquent::setStrictMode();
|
|
|
|
$empty_db = (dbFetchCell("SELECT count(*) FROM `information_schema`.`tables` WHERE `table_type` = 'BASE TABLE' AND `table_schema` = ?", [$db_name]) == 0);
|
|
|
|
$cmd = $config['install_dir'] . '/build-base.php';
|
|
exec($cmd, $schema);
|
|
|
|
Config::load(); // reload the config including database config
|
|
load_all_os();
|
|
|
|
register_shutdown_function(function () use ($empty_db, $sql_mode) {
|
|
global $config;
|
|
\LibreNMS\DB\Eloquent::boot();
|
|
|
|
echo "Cleaning database...\n";
|
|
|
|
$db_name = dbFetchCell('SELECT DATABASE()');
|
|
if ($empty_db) {
|
|
dbQuery("DROP DATABASE $db_name");
|
|
} elseif (isset($config['test_db_name']) && $config['test_db_name'] == $db_name) {
|
|
// truncate tables
|
|
$tables = dbFetchColumn('SHOW TABLES');
|
|
|
|
$excluded = array(
|
|
'alert_templates',
|
|
'config', // not sure about this one
|
|
'dbSchema',
|
|
'migrations',
|
|
'widgets',
|
|
);
|
|
$truncate = array_diff($tables, $excluded);
|
|
|
|
dbQuery("SET FOREIGN_KEY_CHECKS = 0");
|
|
foreach ($truncate as $table) {
|
|
dbQuery("TRUNCATE TABLE $table");
|
|
}
|
|
dbQuery("SET FOREIGN_KEY_CHECKS = 1");
|
|
}
|
|
});
|
|
}
|