2020-04-15 12:48:02 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2022 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 Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-05-10 21:39:31 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-04-15 12:48:02 +02:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2020 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 Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Tests\Services\LabelSystem\PlaceholderProviders;
|
|
|
|
|
2023-06-11 14:55:06 +02:00
|
|
|
use Doctrine\ORM\EntityManager;
|
2020-04-15 12:48:02 +02:00
|
|
|
use App\Entity\Parts\Category;
|
|
|
|
use App\Entity\Parts\Footprint;
|
|
|
|
use App\Entity\Parts\Part;
|
|
|
|
use App\Services\LabelSystem\PlaceholderProviders\PartProvider;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DB
|
|
|
|
*/
|
|
|
|
class PartProviderTest extends WebTestCase
|
|
|
|
{
|
2020-05-10 21:39:31 +02:00
|
|
|
/**
|
|
|
|
* @var PartProvider
|
|
|
|
*/
|
2023-04-15 22:05:29 +02:00
|
|
|
protected PartProvider $service;
|
2020-04-15 12:48:02 +02:00
|
|
|
|
2023-04-15 22:05:29 +02:00
|
|
|
protected Part $target;
|
2020-04-15 12:48:02 +02:00
|
|
|
|
2020-05-10 21:39:31 +02:00
|
|
|
/**
|
2023-06-11 14:55:06 +02:00
|
|
|
* @var EntityManager
|
2020-05-10 21:39:31 +02:00
|
|
|
*/
|
2020-04-15 12:48:02 +02:00
|
|
|
protected $em;
|
|
|
|
|
2020-05-10 21:39:31 +02:00
|
|
|
protected function setUp(): void
|
2020-04-15 12:48:02 +02:00
|
|
|
{
|
|
|
|
self::bootKernel();
|
2022-12-18 19:45:04 +01:00
|
|
|
$this->service = self::getContainer()->get(PartProvider::class);
|
2020-04-15 12:48:02 +02:00
|
|
|
$this->target = new Part();
|
2022-12-18 19:45:04 +01:00
|
|
|
$this->em = self::getContainer()->get(EntityManagerInterface::class);
|
2020-04-15 12:48:02 +02:00
|
|
|
|
|
|
|
$this->target->setCategory($this->em->find(Category::class, 6));
|
|
|
|
$this->target->setFootprint($this->em->find(Footprint::class, 6));
|
|
|
|
$this->target->setManufacturer(null);
|
|
|
|
|
|
|
|
$this->target->setMass(1234.2);
|
|
|
|
$this->target->setTags('SMD, Tag1, Tag2');
|
|
|
|
$this->target->setManufacturerProductNumber('MPN123');
|
|
|
|
$this->target->setManufacturingStatus('active');
|
|
|
|
|
|
|
|
$this->target->setDescription('<b>Bold</b> *Italic*');
|
|
|
|
$this->target->setComment('<b>Bold</b> *Italic*');
|
|
|
|
}
|
|
|
|
|
2023-06-11 15:15:55 +02:00
|
|
|
public function dataProvider(): \Iterator
|
2020-04-15 12:48:02 +02:00
|
|
|
{
|
2023-06-11 15:15:55 +02:00
|
|
|
yield ['Node 2.1', '[[CATEGORY]]'];
|
|
|
|
yield ['Node 2 → Node 2.1', '[[CATEGORY_FULL]]'];
|
|
|
|
yield ['Node 2.1', '[[FOOTPRINT]]'];
|
|
|
|
yield ['Node 2 → Node 2.1', '[[FOOTPRINT_FULL]]'];
|
|
|
|
yield ['', '[[MANUFACTURER]]'];
|
|
|
|
yield ['', '[[MANUFACTURER_FULL]]'];
|
|
|
|
yield ['1.2 kg', '[[MASS]]'];
|
|
|
|
yield ['MPN123', '[[MPN]]'];
|
|
|
|
yield ['SMD, Tag1, Tag2', '[[TAGS]]'];
|
|
|
|
yield ['Active', '[[M_STATUS]]'];
|
|
|
|
yield ['<b>Bold</b> <em>Italic</em>', '[[DESCRIPTION]]'];
|
|
|
|
yield ['Bold Italic', '[[DESCRIPTION_T]]'];
|
|
|
|
yield ['<b>Bold</b> <em>Italic</em>', '[[COMMENT]]'];
|
|
|
|
yield ['Bold Italic', '[[COMMENT_T]]'];
|
2020-04-15 12:48:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataProvider
|
|
|
|
*/
|
|
|
|
public function testReplace(string $expected, string $placeholder): void
|
|
|
|
{
|
|
|
|
$this->assertSame($expected, $this->service->replace($placeholder, $this->target));
|
|
|
|
}
|
|
|
|
}
|