mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 08:56:59 +01:00
158 lines
4.8 KiB
PHP
158 lines
4.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2024, 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\Tests\Domain\Export\Services;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use PHPUnit\Framework\MockObject\Exception;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use RuntimeException;
|
|
use SP\Domain\Account\Ports\AccountService;
|
|
use SP\Domain\Account\Ports\AccountToTagService;
|
|
use SP\Domain\Common\Models\Item;
|
|
use SP\Domain\Common\Services\ServiceException;
|
|
use SP\Domain\Export\Services\XmlAccountExport;
|
|
use SP\Tests\Generators\AccountDataGenerator;
|
|
use SP\Tests\UnitaryTestCase;
|
|
|
|
/**
|
|
* Class XmlAccountExportTest
|
|
*
|
|
*/
|
|
#[Group('unitary')]
|
|
class XmlAccountExportTest extends UnitaryTestCase
|
|
{
|
|
use XmlTrait;
|
|
|
|
private AccountService|MockObject $accountService;
|
|
private AccountToTagService|MockObject $accountToTagService;
|
|
private XmlAccountExport $xmlAccountExport;
|
|
|
|
/**
|
|
* @throws Exception
|
|
* @throws ServiceException
|
|
*/
|
|
public function testExport()
|
|
{
|
|
$account = AccountDataGenerator::factory()->buildAccount();
|
|
$tag = new Item(['id' => self::$faker->randomNumber(3)]);
|
|
|
|
$this->accountService
|
|
->expects(self::once())
|
|
->method('getAllBasic')
|
|
->willReturn([$account]);
|
|
|
|
$this->accountToTagService
|
|
->expects(self::once())
|
|
->method('getTagsByAccountId')
|
|
->with($account->getId())
|
|
->willReturn([$tag]);
|
|
|
|
$out = $this->xmlAccountExport->export();
|
|
|
|
$this->assertEquals('Accounts', $out->nodeName);
|
|
$this->assertEquals('Account', $out->firstChild->nodeName);
|
|
$this->assertEquals($account->getId(), $out->firstChild->attributes->getNamedItem('id')->nodeValue);
|
|
$this->assertEquals(9, $out->firstChild->childNodes->count());
|
|
|
|
$nodes = [
|
|
'name' => $account->getName(),
|
|
'clientId' => $account->getClientId(),
|
|
'categoryId' => $account->getCategoryId(),
|
|
'login' => $account->getLogin(),
|
|
'url' => $account->getUrl(),
|
|
'notes' => $account->getNotes(),
|
|
'pass' => $account->getPass(),
|
|
'key' => $account->getKey(),
|
|
'tags' => '',
|
|
];
|
|
|
|
$this->checkNodes($out->firstChild->childNodes, $nodes);
|
|
|
|
$tagsNode = $out->firstChild->childNodes->item(8);
|
|
|
|
$this->assertEquals('tag', $tagsNode->firstChild->nodeName);
|
|
$this->assertEquals(
|
|
$tag->getId(),
|
|
$tagsNode->firstChild->attributes->getNamedItem('id')->nodeValue
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
* @throws ServiceException
|
|
*/
|
|
public function testExportWithoutAccounts()
|
|
{
|
|
$this->accountService
|
|
->expects(self::once())
|
|
->method('getAllBasic')
|
|
->willReturn([]);
|
|
|
|
$this->accountToTagService
|
|
->expects(self::never())
|
|
->method('getTagsByAccountId');
|
|
|
|
$out = $this->xmlAccountExport->export();
|
|
|
|
$this->assertEquals('Accounts', $out->nodeName);
|
|
$this->assertEquals(0, $out->childNodes->count());
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
* @throws ServiceException
|
|
*/
|
|
public function testExportWithException()
|
|
{
|
|
$this->accountService
|
|
->expects(self::once())
|
|
->method('getAllBasic')
|
|
->willThrowException(new RuntimeException('test'));
|
|
|
|
$this->accountToTagService
|
|
->expects(self::never())
|
|
->method('getTagsByAccountId');
|
|
|
|
$this->expectException(ServiceException::class);
|
|
$this->expectExceptionMessage('test');
|
|
$this->xmlAccountExport->export();
|
|
}
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->accountService = $this->createMock(AccountService::class);
|
|
$this->accountToTagService = $this->createMock(AccountToTagService::class);
|
|
|
|
$this->xmlAccountExport = new XmlAccountExport(
|
|
$this->application,
|
|
$this->accountService,
|
|
$this->accountToTagService
|
|
);
|
|
}
|
|
}
|