futtern/tests/Controller/FoodVendorControllerTest.php

142 lines
3.9 KiB
PHP
Raw Normal View History

2024-06-10 18:23:36 +00:00
<?php declare(strict_types=1);
2024-06-10 18:22:44 +00:00
2024-06-14 18:43:11 +00:00
namespace App\Tests\Controller;
2024-06-10 18:22:44 +00:00
use App\Entity\FoodVendor;
use App\Entity\MenuItem;
2024-06-14 15:41:00 +00:00
use App\Tests\DbWebTest;
2024-06-10 18:23:36 +00:00
use Override;
2024-06-10 18:22:44 +00:00
2024-06-10 18:23:36 +00:00
use function sprintf;
2024-06-14 15:41:00 +00:00
final class FoodVendorControllerTest extends DbWebTest
2024-06-10 18:22:44 +00:00
{
private string $path = '/food/vendor/';
public function testIndex(): void
{
2024-06-10 18:23:36 +00:00
$this->client->request('GET', $this->path);
2024-06-10 18:22:44 +00:00
self::assertResponseStatusCodeSame(200);
self::assertPageTitleContains('FoodVendor index');
}
public function testNew(): void
{
$this->client->request('GET', sprintf('%snew', $this->path));
self::assertResponseStatusCodeSame(200);
$this->client->submitForm('Save', [
'food_vendor[name]' => 'Testing',
]);
self::assertSame(1, $this->repository->count([]));
}
public function testShow(): void
{
2024-06-10 18:23:36 +00:00
$fixture = new FoodVendor;
2024-06-10 18:22:44 +00:00
$fixture->setName('My Title');
2024-08-16 19:52:53 +00:00
$fixture->setMenuLink('https://example.com/');
2024-06-10 18:22:44 +00:00
$this->manager->persist($fixture);
$this->manager->flush();
2024-06-14 18:21:16 +00:00
$crawler = $this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
2024-06-10 18:22:44 +00:00
2024-06-14 18:21:16 +00:00
$this->assertResponseIsSuccessful();
2024-08-16 19:52:53 +00:00
2024-06-14 18:21:16 +00:00
$nameNode = $crawler->filter('td')
->last();
2024-08-16 19:52:53 +00:00
$nameNode = $crawler->filter(
'.table > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2)'
)->text();
$menuLinkNode = $crawler->filter(
'.table > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > a:nth-child(1)'
)->text();
$this->assertSame('My Title', $nameNode);
$this->assertSame('https://example.com/', $menuLinkNode);
2024-06-10 18:22:44 +00:00
}
public function testShowMenuItems(): void
{
$fixture = new FoodVendor;
$fixture->setName('My Title');
$this->manager->persist($fixture);
$this->manager->flush();
$itemOne = new MenuItem;
$itemOne->setName('Item One');
$fixture->addMenuItem($itemOne);
$this->manager->persist($itemOne);
$itemTwo = new MenuItem;
$itemTwo->setName('Item Two');
$itemTwo->setFoodVendor($fixture);
$fixture->addMenuItem($itemTwo);
$this->manager->persist($itemTwo);
$itemThree = new MenuItem;
$itemThree->setName('Item Three');
$itemThree->setFoodVendor($fixture);
$fixture->addMenuItem($itemThree);
$this->manager->persist($itemThree);
$itemFour = new MenuItem;
$itemFour->setName('Item Four');
$itemFour->setFoodVendor($fixture);
$fixture->addMenuItem($itemFour);
$this->manager->persist($itemFour);
$this->manager->flush();
$crawler = $this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
$this->assertResponseIsSuccessful();
2024-08-16 19:52:53 +00:00
$nameNode = $crawler->filter(
'.table > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2)'
)->text();
$this->assertSame('My Title', $nameNode);
2024-07-29 11:04:57 +00:00
$itemNodes = $crawler->filter('li');
$this->assertCount(4, $itemNodes);
}
2024-06-10 18:22:44 +00:00
public function testEdit(): void
{
2024-06-10 18:23:36 +00:00
$fixture = new FoodVendor;
2024-06-10 18:22:44 +00:00
$fixture->setName('Value');
$this->manager->persist($fixture);
$this->manager->flush();
$this->client->request('GET', sprintf('%s%s/edit', $this->path, $fixture->getId()));
$this->client->submitForm('Update', [
'food_vendor[name]' => 'Something New',
2024-08-16 19:52:53 +00:00
'food_vendor[menuLink]' => 'https://example.com/',
2024-06-10 18:22:44 +00:00
]);
self::assertResponseRedirects('/food/vendor/');
$fixture = $this->repository->findAll();
self::assertSame('Something New', $fixture[0]->getName());
2024-08-16 19:52:53 +00:00
self::assertSame('https://example.com/', $fixture[0]->getMenuLink());
2024-06-10 18:22:44 +00:00
}
2024-06-14 15:41:00 +00:00
#[Override]
public function getEntityClass(): string
{
return FoodVendor::class;
}
2024-06-10 18:22:44 +00:00
}