.
*/
namespace App\Tests\Services\LabelSystem\PlaceholderProviders;
use App\Entity\Contracts\TimeStampableInterface;
use App\Entity\Parts\Category;
use App\Entity\Parts\Footprint;
use App\Entity\Parts\Manufacturer;
use App\Entity\Parts\Part;
use App\Services\LabelSystem\PlaceholderProviders\GlobalProviders;
use App\Services\LabelSystem\PlaceholderProviders\PartProvider;
use DateTime;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
/**
* @group DB
*/
class PartProviderTest extends WebTestCase
{
/** @var PartProvider */
protected $service;
protected $target;
/** @var \Doctrine\ORM\EntityManager */
protected $em;
public function setUp(): void
{
self::bootKernel();
$this->service = self::$container->get(PartProvider::class);
$this->target = new Part();
$this->em = self::$container->get(EntityManagerInterface::class);
$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('Bold *Italic*');
$this->target->setComment('Bold *Italic*');
}
public function dataProvider(): array
{
return [
['Node 2.1', '%%CATEGORY%%'],
['Node 2 → Node 2.1', '%%CATEGORY_FULL%%'],
['Node 2.1', '%%FOOTPRINT%%'],
['Node 2 → Node 2.1', '%%FOOTPRINT_FULL%%'],
['', '%%MANUFACTURER%%'],
['', '%%MANUFACTURER_FULL%%'],
['1.2 kg', '%%MASS%%'],
['MPN123', '%%MPN%%'],
['SMD, Tag1, Tag2', '%%TAGS%%'],
['Active', '%%M_STATUS%%'],
['Bold Italic', '%%DESCRIPTION%%'],
['Bold Italic', '%%DESCRIPTION_T%%'],
['Bold Italic', '%%COMMENT%%'],
['Bold Italic', '%%COMMENT_T%%'],
];
}
/**
* @dataProvider dataProvider
*/
public function testReplace(string $expected, string $placeholder): void
{
$this->assertSame($expected, $this->service->replace($placeholder, $this->target));
}
}