You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
4.6 KiB
143 lines
4.6 KiB
<?php
|
|
|
|
namespace App\Test\Controller;
|
|
|
|
use App\Entity\Post;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Doctrine\ORM\EntityRepository;
|
|
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
|
|
|
class PostControllerTest extends WebTestCase
|
|
{
|
|
private KernelBrowser $client;
|
|
private EntityManagerInterface $manager;
|
|
private EntityRepository $repository;
|
|
private string $path = '/post/';
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->client = static::createClient();
|
|
$this->manager = static::getContainer()->get('doctrine')->getManager();
|
|
$this->repository = $this->manager->getRepository(Post::class);
|
|
|
|
foreach ($this->repository->findAll() as $object) {
|
|
$this->manager->remove($object);
|
|
}
|
|
|
|
$this->manager->flush();
|
|
}
|
|
|
|
public function testIndex(): void
|
|
{
|
|
$crawler = $this->client->request('GET', $this->path);
|
|
|
|
self::assertResponseStatusCodeSame(200);
|
|
self::assertPageTitleContains('Post index');
|
|
|
|
// Use the $crawler to perform additional assertions e.g.
|
|
// self::assertSame('Some text on the page', $crawler->filter('.p')->first());
|
|
}
|
|
|
|
public function testNew(): void
|
|
{
|
|
$this->markTestIncomplete();
|
|
$this->client->request('GET', sprintf('%snew', $this->path));
|
|
|
|
self::assertResponseStatusCodeSame(200);
|
|
|
|
$this->client->submitForm('Save', [
|
|
'post[foundDate]' => 'Testing',
|
|
'post[latitude]' => 'Testing',
|
|
'post[longitude]' => 'Testing',
|
|
'post[altitude]' => 'Testing',
|
|
'post[commentary]' => 'Testing',
|
|
'post[species]' => 'Testing',
|
|
]);
|
|
|
|
self::assertResponseRedirects($this->path);
|
|
|
|
self::assertSame(1, $this->repository->count([]));
|
|
}
|
|
|
|
public function testShow(): void
|
|
{
|
|
$this->markTestIncomplete();
|
|
$fixture = new Post();
|
|
$fixture->setFoundDate('My Title');
|
|
$fixture->setLatitude('My Title');
|
|
$fixture->setLongitude('My Title');
|
|
$fixture->setAltitude('My Title');
|
|
$fixture->setCommentary('My Title');
|
|
$fixture->setSpecies('My Title');
|
|
|
|
$this->manager->persist($fixture);
|
|
$this->manager->flush();
|
|
|
|
$this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
|
|
|
|
self::assertResponseStatusCodeSame(200);
|
|
self::assertPageTitleContains('Post');
|
|
|
|
// Use assertions to check that the properties are properly displayed.
|
|
}
|
|
|
|
public function testEdit(): void
|
|
{
|
|
$this->markTestIncomplete();
|
|
$fixture = new Post();
|
|
$fixture->setFoundDate('Value');
|
|
$fixture->setLatitude('Value');
|
|
$fixture->setLongitude('Value');
|
|
$fixture->setAltitude('Value');
|
|
$fixture->setCommentary('Value');
|
|
$fixture->setSpecies('Value');
|
|
|
|
$this->manager->persist($fixture);
|
|
$this->manager->flush();
|
|
|
|
$this->client->request('GET', sprintf('%s%s/edit', $this->path, $fixture->getId()));
|
|
|
|
$this->client->submitForm('Update', [
|
|
'post[foundDate]' => 'Something New',
|
|
'post[latitude]' => 'Something New',
|
|
'post[longitude]' => 'Something New',
|
|
'post[altitude]' => 'Something New',
|
|
'post[commentary]' => 'Something New',
|
|
'post[species]' => 'Something New',
|
|
]);
|
|
|
|
self::assertResponseRedirects('/post/');
|
|
|
|
$fixture = $this->repository->findAll();
|
|
|
|
self::assertSame('Something New', $fixture[0]->getFoundDate());
|
|
self::assertSame('Something New', $fixture[0]->getLatitude());
|
|
self::assertSame('Something New', $fixture[0]->getLongitude());
|
|
self::assertSame('Something New', $fixture[0]->getAltitude());
|
|
self::assertSame('Something New', $fixture[0]->getCommentary());
|
|
self::assertSame('Something New', $fixture[0]->getSpecies());
|
|
}
|
|
|
|
public function testRemove(): void
|
|
{
|
|
$this->markTestIncomplete();
|
|
$fixture = new Post();
|
|
$fixture->setFoundDate('Value');
|
|
$fixture->setLatitude('Value');
|
|
$fixture->setLongitude('Value');
|
|
$fixture->setAltitude('Value');
|
|
$fixture->setCommentary('Value');
|
|
$fixture->setSpecies('Value');
|
|
|
|
$this->manager->persist($fixture);
|
|
$this->manager->flush();
|
|
|
|
$this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
|
|
$this->client->submitForm('Delete');
|
|
|
|
self::assertResponseRedirects('/post/');
|
|
self::assertSame(0, $this->repository->count([]));
|
|
}
|
|
}
|