Make domain CRUD pages look a little better
This commit is contained in:
parent
39e94d8bdc
commit
21178d9a1f
@ -1,4 +1,4 @@
|
|||||||
<form method="post" action="{{ path('app_domain_delete', {'id': domain.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
<form method="post" action="{{ path('app_domain_delete', {'id': domain.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||||||
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ domain.id) }}">
|
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ domain.id) }}">
|
||||||
<button class="btn">Delete</button>
|
<button class="btn btn-danger m-1">Delete</button>
|
||||||
</form>
|
</form>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{{ form_start(form) }}
|
{{ form_start(form, { 'attr' : { 'class': 'mb-3' } }) }}
|
||||||
{{ form_widget(form) }}
|
{{ form_widget(form) }}
|
||||||
<button class="btn">{{ button_label|default('Save') }}</button>
|
<button class="btn btn-primary float-start m-1">{{ button_label|default('Save') }}</button>
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
{{ include('domain/_form.html.twig', {'button_label': 'Update'}) }}
|
{{ include('domain/_form.html.twig', {'button_label': 'Update'}) }}
|
||||||
|
|
||||||
<a href="{{ path('app_domain_index') }}">back to list</a>
|
<a href="{{ path('app_domain_index') }}" class="btn btn-secondary float-end m-1">Cancel</a>
|
||||||
|
|
||||||
{{ include('domain/_delete_form.html.twig') }}
|
{{ include('domain/_delete_form.html.twig') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -7,5 +7,5 @@
|
|||||||
|
|
||||||
{{ include('domain/_form.html.twig') }}
|
{{ include('domain/_form.html.twig') }}
|
||||||
|
|
||||||
<a href="{{ path('app_domain_index') }}">back to list</a>
|
<a href="{{ path('app_domain_index') }}" class="btn btn-secondary float-end m-1">Cancel</a>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
137
tests/Controller/DomainControllerTest.php
Normal file
137
tests/Controller/DomainControllerTest.php
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Test\Controller;
|
||||||
|
|
||||||
|
use App\Entity\Domain;
|
||||||
|
use App\Repository\DomainRepository;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
|
|
||||||
|
class DomainControllerTest extends WebTestCase
|
||||||
|
{
|
||||||
|
private KernelBrowser $client;
|
||||||
|
private DomainRepository $repository;
|
||||||
|
private string $path = '/domain/';
|
||||||
|
private EntityManagerInterface $manager;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->client = static::createClient();
|
||||||
|
$this->repository = static::getContainer()->get('doctrine')->getRepository(Domain::class);
|
||||||
|
|
||||||
|
foreach ($this->repository->findAll() as $object) {
|
||||||
|
$this->manager->remove($object);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testIndex(): void
|
||||||
|
{
|
||||||
|
$crawler = $this->client->request('GET', $this->path);
|
||||||
|
|
||||||
|
self::assertResponseStatusCodeSame(200);
|
||||||
|
self::assertPageTitleContains('Domain 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
|
||||||
|
{
|
||||||
|
$originalNumObjectsInRepository = count($this->repository->findAll());
|
||||||
|
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
$this->client->request('GET', sprintf('%snew', $this->path));
|
||||||
|
|
||||||
|
self::assertResponseStatusCodeSame(200);
|
||||||
|
|
||||||
|
$this->client->submitForm('Save', [
|
||||||
|
'domain[domain]' => 'Testing',
|
||||||
|
'domain[name]' => 'Testing',
|
||||||
|
'domain[enabled]' => 'Testing',
|
||||||
|
'domain[defaultSortPolicy]' => 'Testing',
|
||||||
|
]);
|
||||||
|
|
||||||
|
self::assertResponseRedirects('/domain/');
|
||||||
|
|
||||||
|
self::assertSame($originalNumObjectsInRepository + 1, count($this->repository->findAll()));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testShow(): void
|
||||||
|
{
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
$fixture = new Domain();
|
||||||
|
$fixture->setDomain('localhost');
|
||||||
|
$fixture->setName('My Title');
|
||||||
|
$fixture->setEnabled(true);
|
||||||
|
$fixture->setDefaultSortPolicy(Domain::SORT_POLICIES[0]);
|
||||||
|
|
||||||
|
$this->manager->persist($fixture);
|
||||||
|
$this->manager->flush();
|
||||||
|
|
||||||
|
$this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
|
||||||
|
|
||||||
|
self::assertResponseStatusCodeSame(200);
|
||||||
|
self::assertPageTitleContains('Domain');
|
||||||
|
|
||||||
|
// Use assertions to check that the properties are properly displayed.
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testEdit(): void
|
||||||
|
{
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
$fixture = new Domain();
|
||||||
|
$fixture->setDomain('localhost');
|
||||||
|
$fixture->setName('My Title');
|
||||||
|
$fixture->setEnabled(true);
|
||||||
|
$fixture->setDefaultSortPolicy(Domain::SORT_POLICIES[0]);
|
||||||
|
|
||||||
|
$this->manager->persist($fixture);
|
||||||
|
$this->manager->flush();
|
||||||
|
|
||||||
|
$this->client->request('GET', sprintf('%s%s/edit', $this->path, $fixture->getId()));
|
||||||
|
|
||||||
|
$this->client->submitForm('Update', [
|
||||||
|
'domain[domain]' => 'example.com',
|
||||||
|
'domain[name]' => 'Something New',
|
||||||
|
'domain[enabled]' => false,
|
||||||
|
'domain[defaultSortPolicy]' => Domain::SORT_POLICIES[1],
|
||||||
|
]);
|
||||||
|
|
||||||
|
self::assertResponseRedirects('/domain/');
|
||||||
|
|
||||||
|
$fixture = $this->repository->findAll();
|
||||||
|
|
||||||
|
self::assertSame('example.com', $fixture[0]->getDomain());
|
||||||
|
self::assertSame('Something New', $fixture[0]->getName());
|
||||||
|
self::assertSame(false, $fixture[0]->getEnabled());
|
||||||
|
self::assertSame(Domain::SORT_POLICIES[1], $fixture[0]->getDefaultSortPolicy());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRemove(): void
|
||||||
|
{
|
||||||
|
$this->markTestIncomplete();
|
||||||
|
|
||||||
|
$originalNumObjectsInRepository = count($this->repository->findAll());
|
||||||
|
|
||||||
|
$fixture = new Domain();
|
||||||
|
$fixture->setDomain('My Title');
|
||||||
|
$fixture->setOwnerToken('My Title');
|
||||||
|
$fixture->setName('My Title');
|
||||||
|
$fixture->setEnabled('My Title');
|
||||||
|
$fixture->setDefaultSortPolicy('My Title');
|
||||||
|
$fixture->setUpdatedAt('My Title');
|
||||||
|
$fixture->setCreatedAt('My Title');
|
||||||
|
|
||||||
|
$this->manager->persist($fixture);
|
||||||
|
$this->manager->flush();
|
||||||
|
|
||||||
|
self::assertSame($originalNumObjectsInRepository + 1, count($this->repository->findAll()));
|
||||||
|
|
||||||
|
$this->client->request('GET', sprintf('%s%s', $this->path, $fixture->getId()));
|
||||||
|
$this->client->submitForm('Delete');
|
||||||
|
|
||||||
|
self::assertSame($originalNumObjectsInRepository, count($this->repository->findAll()));
|
||||||
|
self::assertResponseRedirects('/domain/');
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user