mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 23:54:08 +01:00
* [ADD] Unit testing. Improved code structure
This commit is contained in:
305
test/Services/Client/ClientServiceTest.php
Normal file
305
test/Services/Client/ClientServiceTest.php
Normal file
@@ -0,0 +1,305 @@
|
||||
<?php
|
||||
/**
|
||||
* sysPass
|
||||
*
|
||||
* @author nuxsmin
|
||||
* @link https://syspass.org
|
||||
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org
|
||||
*
|
||||
* This file is part of sysPass.
|
||||
*
|
||||
* sysPass 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.
|
||||
*
|
||||
* sysPass 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 sysPass. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
namespace SP\Test\Services\Client;
|
||||
|
||||
use SP\Core\Context\ContextInterface;
|
||||
use SP\Core\Exceptions\ConstraintException;
|
||||
use SP\DataModel\ClientData;
|
||||
use SP\DataModel\ItemSearchData;
|
||||
use SP\Repositories\DuplicatedItemException;
|
||||
use SP\Repositories\NoSuchItemException;
|
||||
use SP\Services\Client\ClientService;
|
||||
use SP\Services\ServiceException;
|
||||
use SP\Services\User\UserLoginResponse;
|
||||
use SP\Storage\Database\DatabaseConnectionData;
|
||||
use SP\Test\DatabaseTestCase;
|
||||
use function SP\Test\setupContext;
|
||||
|
||||
/**
|
||||
* Class ClientServiceTest
|
||||
*
|
||||
* @package SP\Tests\Services\Client
|
||||
*/
|
||||
class ClientServiceTest extends DatabaseTestCase
|
||||
{
|
||||
/**
|
||||
* @var \Closure
|
||||
*/
|
||||
private static $setupUser;
|
||||
/**
|
||||
* @var ClientService
|
||||
*/
|
||||
private static $service;
|
||||
|
||||
/**
|
||||
* @throws \DI\NotFoundException
|
||||
* @throws \SP\Core\Context\ContextException
|
||||
* @throws \DI\DependencyException
|
||||
*/
|
||||
public static function setUpBeforeClass()
|
||||
{
|
||||
$dic = setupContext();
|
||||
|
||||
self::$dataset = 'syspass.xml';
|
||||
|
||||
// Datos de conexión a la BBDD
|
||||
self::$databaseConnectionData = $dic->get(DatabaseConnectionData::class);
|
||||
|
||||
// Inicializar el servicio
|
||||
self::$service = $dic->get(ClientService::class);
|
||||
|
||||
self::$setupUser = function (UserLoginResponse $response) use ($dic) {
|
||||
$response->setLastUpdate(time());
|
||||
|
||||
$dic->get(ContextInterface::class)->setUserData($response);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \SP\Core\Exceptions\ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
*/
|
||||
public function testSearch()
|
||||
{
|
||||
$itemSearchData = new ItemSearchData();
|
||||
$itemSearchData->setLimitCount(10);
|
||||
$itemSearchData->setSeachString('google');
|
||||
|
||||
$result = self::$service->search($itemSearchData);
|
||||
$data = $result->getDataAsArray();
|
||||
|
||||
$this->assertEquals(1, $result->getNumRows());
|
||||
$this->assertCount(1, $data);
|
||||
$this->assertInstanceOf(ClientData::class, $data[0]);
|
||||
$this->assertEquals(1, $data[0]->id);
|
||||
$this->assertEquals('Google Inc.', $data[0]->description);
|
||||
|
||||
$itemSearchData = new ItemSearchData();
|
||||
$itemSearchData->setLimitCount(10);
|
||||
$itemSearchData->setSeachString('prueba');
|
||||
|
||||
$result = self::$service->search($itemSearchData);
|
||||
|
||||
$this->assertEquals(0, $result->getNumRows());
|
||||
$this->assertCount(0, $result->getDataAsArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \SP\Core\Exceptions\ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
*/
|
||||
public function testGetAllBasic()
|
||||
{
|
||||
$count = $this->conn->getRowCount('Client');
|
||||
|
||||
$results = self::$service->getAllBasic();
|
||||
|
||||
$this->assertCount($count, $results);
|
||||
|
||||
$this->assertInstanceOf(ClientData::class, $results[0]);
|
||||
$this->assertEquals('Apple', $results[0]->getName());
|
||||
|
||||
$this->assertInstanceOf(ClientData::class, $results[1]);
|
||||
$this->assertEquals('Google', $results[1]->getName());
|
||||
|
||||
$this->assertInstanceOf(ClientData::class, $results[2]);
|
||||
$this->assertEquals('Microsoft', $results[2]->getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ConstraintException
|
||||
* @throws NoSuchItemException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
*/
|
||||
public function testGetById()
|
||||
{
|
||||
$client = self::$service->getById(1);
|
||||
|
||||
$this->assertEquals('Google', $client->getName());
|
||||
$this->assertEquals('Google Inc.', $client->getDescription());
|
||||
|
||||
$client = self::$service->getById(2);
|
||||
|
||||
$this->assertEquals('Apple', $client->getName());
|
||||
$this->assertEquals('Apple Inc.', $client->getDescription());
|
||||
|
||||
$this->expectException(NoSuchItemException::class);
|
||||
|
||||
self::$service->getById(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
*/
|
||||
public function testGetAllForUser()
|
||||
{
|
||||
$this->assertCount(3, self::$service->getAllForUser());
|
||||
|
||||
$userData = new UserLoginResponse();
|
||||
$userData->setId(4);
|
||||
|
||||
self::$setupUser->call($this, $userData);
|
||||
|
||||
$this->assertCount(1, self::$service->getAllForUser());
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \SP\Core\Exceptions\ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
* @throws \SP\Core\Exceptions\SPException
|
||||
* @throws \SP\Repositories\DuplicatedItemException
|
||||
*/
|
||||
public function testCreate()
|
||||
{
|
||||
$countBefore = $this->conn->getRowCount('Client');
|
||||
|
||||
$data = new ClientData();
|
||||
$data->name = 'Cliente prueba';
|
||||
$data->description = 'Descripción prueba';
|
||||
$data->isGlobal = 1;
|
||||
|
||||
$id = self::$service->create($data);
|
||||
|
||||
// Comprobar que el Id devuelto corresponde con el cliente creado
|
||||
$result = self::$service->getById($id);
|
||||
|
||||
$this->assertEquals($data->name, $result->getName());
|
||||
$this->assertEquals($data->isGlobal, $result->getIsGlobal());
|
||||
|
||||
$countAfter = $this->conn->getRowCount('Client');
|
||||
|
||||
$this->assertEquals($countBefore + 1, $countAfter);
|
||||
|
||||
$this->expectException(DuplicatedItemException::class);
|
||||
|
||||
self::$service->create($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \SP\Core\Exceptions\ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
* @throws \SP\Services\ServiceException
|
||||
*/
|
||||
public function testDeleteByIdBatch()
|
||||
{
|
||||
$countBefore = $this->conn->getRowCount('Client');
|
||||
|
||||
self::$service->deleteByIdBatch([3]);
|
||||
|
||||
$countAfter = $this->conn->getRowCount('Client');
|
||||
|
||||
$this->assertEquals($countBefore - 1, $countAfter);
|
||||
|
||||
// Comprobar que se produce una excepción al tratar de eliminar clientes usados
|
||||
$this->expectException(ConstraintException::class);
|
||||
|
||||
self::$service->deleteByIdBatch([1, 2]);
|
||||
|
||||
$this->expectException(ServiceException::class);
|
||||
|
||||
self::$service->deleteByIdBatch([10]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ConstraintException
|
||||
* @throws NoSuchItemException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
*/
|
||||
public function testGetByName()
|
||||
{
|
||||
$data = self::$service->getByName('Google');
|
||||
|
||||
$this->assertEquals(1, $data->getId());
|
||||
$this->assertEquals('Google Inc.', $data->getDescription());
|
||||
|
||||
$data = self::$service->getByName('Apple');
|
||||
|
||||
$this->assertEquals(2, $data->getId());
|
||||
$this->assertEquals('Apple Inc.', $data->getDescription());
|
||||
|
||||
// Se comprueba que el hash generado es el mismo en para el nombre 'Web'
|
||||
$data = self::$service->getByName(' google. ');
|
||||
|
||||
$this->assertEquals(1, $data->getId());
|
||||
$this->assertEquals('Google Inc.', $data->getDescription());
|
||||
|
||||
$this->expectException(NoSuchItemException::class);
|
||||
|
||||
self::$service->getByName('Amazon');
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \SP\Core\Exceptions\SPException
|
||||
*/
|
||||
public function testDelete()
|
||||
{
|
||||
$countBefore = $this->conn->getRowCount('Client');
|
||||
|
||||
self::$service->delete(3);
|
||||
|
||||
$countAfter = $this->conn->getRowCount('Client');
|
||||
|
||||
$this->assertEquals($countBefore - 1, $countAfter);
|
||||
|
||||
// Comprobar que se produce una excepción al tratar de eliminar clientes usados
|
||||
$this->expectException(ConstraintException::class);
|
||||
|
||||
self::$service->delete(2);
|
||||
|
||||
$this->expectException(NoSuchItemException::class);
|
||||
|
||||
self::$service->delete(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ConstraintException
|
||||
* @throws \SP\Core\Exceptions\QueryException
|
||||
* @throws \SP\Core\Exceptions\SPException
|
||||
*/
|
||||
public function testUpdate()
|
||||
{
|
||||
$data = new ClientData();
|
||||
$data->id = 1;
|
||||
$data->name = 'Cliente prueba';
|
||||
$data->description = 'Descripción cliente prueba';
|
||||
|
||||
self::$service->update($data);
|
||||
|
||||
$result = self::$service->getById(1);
|
||||
|
||||
$this->assertEquals($data->name, $result->getName());
|
||||
$this->assertEquals($data->description, $result->getDescription());
|
||||
|
||||
// Comprobar la a actualización con un nombre duplicado comprobando su hash
|
||||
$data = new ClientData();
|
||||
$data->id = 1;
|
||||
$data->name = ' apple.';
|
||||
|
||||
$this->expectException(DuplicatedItemException::class);
|
||||
|
||||
self::$service->update($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user