mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-03 21:15:26 +00:00
tests
This commit is contained in:
parent
1aa5f484c3
commit
7609c98db3
1 changed files with 4 additions and 2 deletions
|
@ -235,12 +235,14 @@ class CustomerControllerTest extends ControllerBaseTest
|
|||
$comments = $this->getEntityManager()->getRepository(CustomerComment::class)->findAll();
|
||||
$id = $comments[0]->getId();
|
||||
|
||||
$this->request($client, '/admin/customer/' . $id . '/comment_pin');
|
||||
$token = self::$container->get('security.csrf.token_manager')->getToken('customer.pin_comment');
|
||||
|
||||
$this->request($client, '/admin/customer/' . $id . '/comment_pin/' . $token);
|
||||
$this->assertIsRedirect($client, $this->createUrl('/admin/customer/1/details'));
|
||||
$client->followRedirect();
|
||||
$node = $client->getCrawler()->filter('div.box#comments_box .box-body a.btn.active');
|
||||
self::assertEquals(1, $node->count());
|
||||
self::assertEquals($this->createUrl('/admin/customer/' . $id . '/comment_pin'), $node->attr('href'));
|
||||
self::assertEquals($this->createUrl('/admin/customer/' . $id . '/comment_pin/' . $token), $node->attr('href'));
|
||||
}
|
||||
|
||||
public function testCreateDefaultTeamAction()
|
||||
|
|
Loading…
Add table
Reference in a new issue