. * * @link https://www.librenms.org * * @copyright 2017 Neil Lathwood * @author Neil Lathwood */ namespace LibreNMS\Tests; use Artisan; use Illuminate\Support\Facades\DB; use LibreNMS\DB\Schema; class DBSetupTest extends DBTestCase { protected $db_name; protected $connection = 'testing'; protected function setUp(): void { parent::setUp(); $this->db_name = DB::connection($this->connection)->getDatabaseName(); } public function testSetupDB(): void { $result = Artisan::call('migrate:fresh', [ '--seed' => true, '--env' => 'testing', '--database' => $this->connection, ]); $this->assertSame(0, $result, 'Errors loading DB Schema: ' . Artisan::output()); } public function testSchema() { $files = array_map(function ($migration_file) { return basename($migration_file, '.php'); }, array_diff(scandir(base_path('/database/migrations')), ['.', '..', '.gitkeep'])); $migrated = DB::connection($this->connection)->table('migrations')->pluck('migration')->toArray(); sort($files); sort($migrated); $this->assertEquals($files, $migrated, 'List of run migrations did not match existing migration files.'); } public function testCheckDBCollation(): void { $collation = DB::connection($this->connection)->select(DB::raw("SELECT DEFAULT_CHARACTER_SET_NAME, DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA S WHERE schema_name = '$this->db_name' AND ( DEFAULT_CHARACTER_SET_NAME != 'utf8mb4' OR DEFAULT_COLLATION_NAME != 'utf8mb4_unicode_ci')")->getValue(DB::connection($this->connection)->getQueryGrammar())); if (isset($collation[0])) { $error = implode(' ', (array) $collation[0]); } else { $error = ''; } $this->assertEmpty($collation, 'Wrong Database Collation or Character set: ' . $error); } public function testCheckTableCollation(): void { $collation = DB::connection($this->connection)->select(DB::raw("SELECT T.TABLE_NAME, C.CHARACTER_SET_NAME, C.COLLATION_NAME FROM information_schema.TABLES AS T, information_schema.COLLATION_CHARACTER_SET_APPLICABILITY AS C WHERE C.collation_name = T.table_collation AND T.table_schema = '$this->db_name' AND ( C.CHARACTER_SET_NAME != 'utf8mb4' OR C.COLLATION_NAME != 'utf8mb4_unicode_ci' );")->getValue(DB::connection($this->connection)->getQueryGrammar())); $error = ''; foreach ($collation as $data) { $error .= implode(' ', (array) $data) . PHP_EOL; } $this->assertEmpty($collation, 'Wrong Table Collation or Character set: ' . $error); } public function testCheckColumnCollation(): void { $collation = DB::connection($this->connection)->select(DB::raw("SELECT TABLE_NAME, COLUMN_NAME, CHARACTER_SET_NAME, COLLATION_NAME FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = '$this->db_name' AND ( CHARACTER_SET_NAME != 'utf8mb4' OR COLLATION_NAME != 'utf8mb4_unicode_ci' );")->getValue(DB::connection($this->connection)->getQueryGrammar())); $error = ''; foreach ($collation as $data) { $error .= implode(' ', (array) $data) . PHP_EOL; } $this->assertEmpty($collation, 'Wrong Column Collation or Character set: ' . $error); } public function testSqlMode(): void { $result = DB::connection($this->connection)->selectOne(DB::raw('SELECT @@version AS version, @@sql_mode AS mode')->getValue(DB::connection($this->connection)->getQueryGrammar())); preg_match('/([0-9.]+)(?:-(\w+))?/', $result->version, $matches); $version = $matches[1] ?? null; $vendor = $matches[2] ?? null; $mode = $result->mode; // NO_AUTO_CREATE_USER is removed in mysql 8 $expected = ( ($vendor !== 'MariaDB' && version_compare($version, '8.0.0') >= 0) || ($vendor == 'MariaDB' && version_compare($version, '10.5.15') >= 0)) ? 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' : 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'; $this->assertEquals($expected, $mode); } public function testValidateSchema(): void { if (is_file('misc/db_schema.yaml')) { DB::connection($this->connection)->statement('SET time_zone = "+00:00";'); $master_schema = \Symfony\Component\Yaml\Yaml::parse( file_get_contents('misc/db_schema.yaml') ); $current_schema = Schema::dump($this->connection); $message = "Schema does not match the expected schema defined by misc/db_schema.yaml\n"; $message .= "If you have changed the schema, make sure you update it with: lnms schema:dump\n"; $this->assertEquals($master_schema, $current_schema, $message); } } }