mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 07:23:13 +00:00
126 lines
3.8 KiB
PHP
126 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Controller\Admin;
|
|
|
|
class AdminDashboardTest extends \PhraseanetWebTestCaseAuthenticatedAbstract
|
|
{
|
|
protected $client;
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::slash
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::connect
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::call
|
|
*/
|
|
public function testRouteDashboardUnauthorized()
|
|
{
|
|
$this->setAdmin(false);
|
|
self::$DI['client']->request('GET', '/admin/dashboard/');
|
|
|
|
$this->assertForbiddenResponse(self::$DI['client']->getResponse());
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::slash
|
|
*/
|
|
public function testRouteDashboard()
|
|
{
|
|
$this->setAdmin(true);
|
|
self::$DI['app']['phraseanet.configuration-tester']->getRequirements();
|
|
self::$DI['client']->request('GET', '/admin/dashboard/', array(
|
|
'flush_cache' => 'ok',
|
|
'email' => 'sent'
|
|
));
|
|
|
|
$this->assertTrue(self::$DI['client']->getResponse()->isOk());
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::flush
|
|
*/
|
|
public function testFlushCache()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/flush-cache/');
|
|
|
|
$this->assertTrue(self::$DI['client']->getResponse()->isRedirect());
|
|
$this->assertRegexp('/flush_cache=ok/', self::$DI['client']->getResponse()->headers->get('location'));
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::sendMail
|
|
*/
|
|
public function testSendMailTest()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
$this->mockNotificationDeliverer('Alchemy\Phrasea\Notification\Mail\MailTest');
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/send-mail-test/', array(
|
|
'email' => 'user-test@phraseanet.com'
|
|
));
|
|
|
|
$this->assertTrue(self::$DI['client']->getResponse()->isRedirect());
|
|
$this->assertRegexp('/email=/', self::$DI['client']->getResponse()->headers->get('location'));
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::sendMail
|
|
*/
|
|
public function testSendMailTestWithWrongMail()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/send-mail-test/', array(
|
|
'email' => 'user-test-phraseanet.com'
|
|
));
|
|
|
|
$this->assertEquals(400, self::$DI['client']->getResponse()->getStatusCode());
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::sendMail
|
|
*/
|
|
public function testSendMailTestBadRequest()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/send-mail-test/');
|
|
|
|
$this->assertBadResponse(self::$DI['client']->getResponse());
|
|
}
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::resetAdminRights
|
|
*/
|
|
public function testResetAdminRights()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/reset-admin-rights/');
|
|
|
|
$this->assertTrue(self::$DI['client']->getResponse()->isRedirect());
|
|
}
|
|
|
|
/**
|
|
* @covers \Alchemy\Phrasea\Controller\Admin\Dashboard::addAdmins
|
|
*/
|
|
public function testAddAdmins()
|
|
{
|
|
$this->setAdmin(true);
|
|
|
|
$admins = array_keys(\User_Adapter::get_sys_admins(self::$DI['app']));
|
|
|
|
$user = \User_Adapter::create(self::$DI['app'], uniqid('unit_test_user'), uniqid('unit_test_user'), uniqid('unit_test_user') ."@email.com", false);
|
|
|
|
$admins[] = $user->get_id();
|
|
|
|
self::$DI['client']->request('POST', '/admin/dashboard/add-admins/', array(
|
|
'admins' => $admins
|
|
));
|
|
|
|
$this->assertTrue(self::$DI['client']->getResponse()->isRedirect());
|
|
|
|
$user->delete();
|
|
}
|
|
}
|