Added some more tests.

This commit is contained in:
Jan Böhmer 2019-11-09 16:14:57 +01:00
parent 24e4a554f8
commit 3438f15274
6 changed files with 219 additions and 30 deletions

View file

@ -0,0 +1,89 @@
<?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
namespace App\Tests\Services;
use App\Entity\Attachments\PartAttachment;
use App\Entity\Base\DBElement;
use App\Entity\Base\NamedDBElement;
use App\Entity\Parts\Category;
use App\Entity\Parts\Part;
use App\Exceptions\EntityNotSupportedException;
use App\Services\AmountFormatter;
use App\Services\ElementTypeNameGenerator;
use PHPUnit\Framework\TestCase;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ElementTypeNameGeneratorTest extends WebTestCase
{
/**
* @var AmountFormatter
*/
protected $service;
public function setUp()
{
parent::setUp();
//Get an service instance.
self::bootKernel();
$this->service = self::$container->get(ElementTypeNameGenerator::class);
}
public function testGetLocalizedTypeNameCombination()
{
//We only test in english
$this->assertEquals('Part', $this->service->getLocalizedTypeLabel(new Part()));
$this->assertEquals('Category', $this->service->getLocalizedTypeLabel(new Category()));
//Test inheritance
$this->assertEquals('Attachment', $this->service->getLocalizedTypeLabel(new PartAttachment()));
//Test exception for unknpwn type
$this->expectException(EntityNotSupportedException::class);
$this->service->getLocalizedTypeLabel(new class extends DBElement {
public function getIDString(): string
{
return 'Stub';
}
});
}
public function testGetTypeNameCombination()
{
$part = new Part();
$part->setName('Test<Part');
//When the text version is used, dont escape the name
$this->assertEquals('Part: Test<Part', $this->service->getTypeNameCombination($part, false));
$this->assertEquals('<i>Part:</i> Test&lt;Part', $this->service->getTypeNameCombination($part, true));
//Test exception
$this->expectException(EntityNotSupportedException::class);
$this->service->getTypeNameCombination(new class extends NamedDBElement {
public function getIDString(): string
{
return 'Stub';
}
});
}
}

View file

@ -0,0 +1,84 @@
<?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
namespace App\Tests\Services;
use App\Entity\Attachments\AttachmentType;
use App\Services\AmountFormatter;
use App\Services\ElementTypeNameGenerator;
use App\Services\EntityImporter;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class EntityImporterTest extends WebTestCase
{
/**
* @var AmountFormatter
*/
protected $service;
public function setUp()
{
parent::setUp();
//Get an service instance.
self::bootKernel();
$this->service = self::$container->get(EntityImporter::class);
}
public function testMassCreationResults()
{
$errors = [];
$results = $this->service->massCreation('', AttachmentType::class, null, $errors);
$this->assertEmpty($results);
$this->assertEmpty($errors);
$errors = [];
$lines = "Test 1 \n Test 2 \n Test 3";
$results = $this->service->massCreation($lines, AttachmentType::class, null, $errors);
$this->assertCount(0, $errors);
$this->assertCount(3, $results);
//Check type
$this->assertInstanceOf(AttachmentType::class, $results[0]);
//Check names
$this->assertEquals('Test 1', $results[0]->getName());
$this->assertEquals('Test 2', $results[1]->getName());
//Check parent
$this->assertNull($results[0]->getMasterPictureAttachment());
$parent = new AttachmentType();
$results = $this->service->massCreation($lines, AttachmentType::class, $parent, $errors);
$this->assertCount(3, $results);
$this->assertEquals($parent, $results[0]->getParent());
}
public function testMassCreationErrors()
{
$errors = [];
//Node 1 and Node 2 are created in datafixtures, so their attemp to create them again must fail.
$lines = "Test 1 \n Node 1 \n Node 2";
$results = $this->service->massCreation($lines, AttachmentType::class, null, $errors);
$this->assertCount(1, $results);
$this->assertEquals('Test 1', $results[0]->getName());
$this->assertCount(2, $errors);
$this->assertEquals('Node 1', $errors[0]['entity']->getName());
}
}