misc_pterodactyl-panel/tests/Unit/Repositories/Eloquent/DatabaseRepositoryTest.php

158 lines
5.1 KiB
PHP
Raw Normal View History

2017-08-27 00:58:24 +00:00
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
2017-09-26 02:43:01 +00:00
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
2017-08-27 00:58:24 +00:00
*/
namespace Tests\Unit\Repositories\Eloquent;
use Mockery as m;
2017-08-27 19:55:25 +00:00
use Tests\TestCase;
2017-08-27 00:58:24 +00:00
use Pterodactyl\Models\Database;
2017-08-27 19:55:25 +00:00
use Illuminate\Database\Eloquent\Builder;
use Pterodactyl\Exceptions\DisplayException;
2017-08-27 00:58:24 +00:00
use Pterodactyl\Repositories\Eloquent\DatabaseRepository;
2017-08-27 19:55:25 +00:00
use Pterodactyl\Exceptions\Repository\DuplicateDatabaseNameException;
2017-08-27 00:58:24 +00:00
class DatabaseRepositoryTest extends TestCase
{
/**
* @var \Illuminate\Database\Eloquent\Builder
*/
protected $builder;
/**
* @var \Pterodactyl\Repositories\Eloquent\DatabaseRepository
*/
protected $repository;
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
$this->builder = m::mock(Builder::class);
$this->repository = m::mock(DatabaseRepository::class)->makePartial()->shouldAllowMockingProtectedMethods();
$this->repository->shouldReceive('getBuilder')->withNoArgs()->andReturn($this->builder);
$this->repository->shouldNotReceive('runStatement');
}
/**
* Test that we are returning the correct model.
*/
public function testCorrectModelIsAssigned()
{
$this->assertEquals(Database::class, $this->repository->model());
}
/**
* Test that a database can be created if it does not already exist.
*/
public function testDatabaseIsCreatedIfNotExists()
{
$data = [
'server_id' => 1,
'database_host_id' => 100,
'database' => 'somename',
];
$this->builder->shouldReceive('where')->with([
['server_id', '=', array_get($data, 'server_id')],
['database_host_id', '=', array_get($data, 'database_host_id')],
['database', '=', array_get($data, 'database')],
])->once()->andReturnSelf()
->shouldReceive('count')->withNoArgs()->once()->andReturn(0);
$this->repository->shouldReceive('create')->with($data)->once()->andReturn(true);
$this->assertTrue($this->repository->createIfNotExists($data));
}
/**
* Test that an exception is thrown if a database already exists with the given name.
*/
public function testExceptionIsThrownIfDatabaseAlreadyExists()
{
$this->builder->shouldReceive('where->count')->once()->andReturn(1);
$this->repository->shouldNotReceive('create');
try {
$this->repository->createIfNotExists([]);
} catch (DisplayException $exception) {
$this->assertInstanceOf(DuplicateDatabaseNameException::class, $exception);
$this->assertEquals('A database with those details already exists for the specified server.', $exception->getMessage());
}
}
/**
* Test SQL used to create a database.
*/
public function testCreateDatabaseStatement()
{
$query = sprintf('CREATE DATABASE IF NOT EXISTS `%s`', 'test_database');
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with($query)->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->createDatabase('test_database', 'test'));
}
/**
* Test SQL used to create a user.
*/
public function testCreateUserStatement()
{
$query = sprintf('CREATE USER `%s`@`%s` IDENTIFIED BY \'%s\'', 'test', '%', 'password');
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with($query)->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->createUser('test', '%', 'password', 'test'));
}
/**
* Test that a user is assigned the correct permissions on a database.
*/
public function testUserAssignmentToDatabaseStatement()
{
$query = sprintf('GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER, INDEX, EXECUTE ON `%s`.* TO `%s`@`%s`', 'test_database', 'test', '%');
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with($query)->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->assignUserToDatabase('test_database', 'test', '%', 'test'));
}
/**
* Test SQL for flushing privileges.
*/
public function testFlushStatement()
{
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with('FLUSH PRIVILEGES')->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->flush('test'));
}
/**
* Test SQL to drop a database.
*/
public function testDropDatabaseStatement()
{
$query = sprintf('DROP DATABASE IF EXISTS `%s`', 'test_database');
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with($query)->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->dropDatabase('test_database', 'test'));
}
/**
* Test SQL to drop a user.
*/
public function testDropUserStatement()
{
$query = sprintf('DROP USER IF EXISTS `%s`@`%s`', 'test', '%');
2017-10-24 01:12:15 +00:00
$this->repository->shouldReceive('runStatement')->with($query)->once()->andReturn(true);
2017-08-27 00:58:24 +00:00
$this->assertTrue($this->repository->dropUser('test', '%', 'test'));
}
}