Files
Phraseanet/tests/classes/userTest.php
Nicolas Le Goff 26bd977d5f Delete references to usr.usr_id field in entities
Conflicts:
	lib/Alchemy/Phrasea/Controller/Prod/Push.php
	lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php
	lib/conf.d/migrations.yml

Conflicts:
	lib/Alchemy/Phrasea/ACL/BasketACL.php
	lib/Alchemy/Phrasea/Authentication/Authenticator.php
	lib/Alchemy/Phrasea/Controller/Prod/Order.php
	lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php
	lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php
	lib/Alchemy/Phrasea/Controller/Root/Session.php
	lib/Alchemy/Phrasea/Model/Entities/Basket.php
	lib/Alchemy/Phrasea/Model/Entities/BasketElement.php
	lib/Alchemy/Phrasea/Model/Entities/Feed.php
	lib/Alchemy/Phrasea/Model/Entities/FeedEntry.php
	lib/Alchemy/Phrasea/Model/Entities/FtpExport.php
	lib/Alchemy/Phrasea/Model/Entities/Session.php
	lib/Alchemy/Phrasea/Model/Entities/StoryWZ.php
	lib/Alchemy/Phrasea/Model/Entities/UsrList.php
	lib/Alchemy/Phrasea/Model/Entities/UsrListEntry.php
	lib/Alchemy/Phrasea/Model/Entities/UsrListOwner.php
	lib/Alchemy/Phrasea/Model/Entities/ValidationParticipant.php
	lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php
	lib/Alchemy/Phrasea/Model/Repositories/StoryWZRepository.php
	lib/classes/API/V1/adapter.php
	templates/mobile/lightbox/sc_note.html.twig
	templates/web/admin/connected-users.html.twig
	templates/web/admin/publications/fiche.html.twig
	templates/web/lightbox/IE6/agreement_box.html.twig
	templates/web/lightbox/agreement_box.html.twig
	templates/web/lightbox/basket_content_report.html.twig
	templates/web/lightbox/sc_note.html.twig
	templates/web/prod/WorkZone/Browser/Basket.html.twig
	templates/web/prod/WorkZone/Browser/Results.html.twig
	templates/web/prod/WorkZone/Macros.html.twig
	templates/web/prod/actions/Feedback/List-Share.html.twig
	templates/web/prod/actions/Feedback/ListsMacros.html.twig
	templates/web/prod/orders/order_box.html.twig
	templates/web/prod/orders/order_item.html.twig
	templates/web/prod/upload/lazaret.html.twig
	tests/Alchemy/Tests/Phrasea/Controller/Root/SessionTest.php
2014-02-19 17:29:25 +01:00

141 lines
5.2 KiB
PHP

<?php
use Alchemy\Phrasea\Model\Entities\User;
class userTest extends \PhraseanetTestCase
{
public function testMail()
{
$this->assertNull(self::$DI['app']['manipulator.user']->getRepository()->findByEmail(null));
try {
self::$DI['user']->setEmail(null);
$this->assertNull(self::$DI['app']['manipulator.user']->getRepository()->findByEmail(null));
self::$DI['user']->setEmail('');
$this->assertNull(self::$DI['app']['manipulator.user']->getRepository()->findByEmail(null));
self::$DI['user']->setEmail('noone@example.com');
$this->assertEquals(self::$DI['user'], self::$DI['app']['manipulator.user']->getRepository()->findByEmail('noone@example.com'));
} catch (Exception $e) {
$this->fail($e->getMessage());
}
try {
self::$DI['user']->setEmail('noonealt1@example.com');
$this->fail('A user already got this address');
} catch (Exception $e) {
}
$this->assertNull(self::$DI['app']['manipulator.user']->getRepository()->findByEmail(null));
}
public function testDeleteSetMailToNullAndRemovesProviders()
{
if (null === $user = self::$DI['app']['manipulator.user']->getRepository()->findByLogin('test_phpunit_providers')) {
$user = self::$DI['app']['manipulator.user']->createUser('test_phpunit_providers', 'any');
}
$provider = new Alchemy\Phrasea\Model\Entities\UsrAuthProvider();
$provider->setDistantId(12345);
$provider->setProvider('custom-one');
$provider->setUser($user);
self::$DI['app']['EM']->persist($provider);
self::$DI['app']['EM']->flush();
self::$DI['app']['model.user-manager']->delete($user);
$repo = self::$DI['app']['EM']->getRepository('Phraseanet:UsrAuthProvider');
$this->assertNull($repo->findWithProviderAndId('custom-one', 12345));
}
public function testDeleteSetMailToNullAndRemovesSessions()
{
try {
$usrId = \User_Adapter::get_usr_id_from_login(self::$DI['app'], 'test_phpunit_sessions');
$user = \User_Adapter::getInstance($usrId, self::$DI['app']);
} catch (\Exception $e) {
$user = \User_Adapter::create(self::$DI['app'], 'test_phpunit_sessions', 'any', null, false);
}
$session = new \Alchemy\Phrasea\Model\Entities\Session();
$session
->setUsrId($user->get_id())
->setUserAgent('');
self::$DI['app']['EM']->persist($session);
self::$DI['app']['EM']->flush();
$user->delete();
$repo = self::$DI['app']['EM']->getRepository('Phraseanet:Session');
$this->assertCount(0, $repo->findByUser($user));
}
public function testGetPref()
{
$user = $this->get_user();
$this->assertNull($user->getSettingValue('lalala'));
$this->assertSame('popo', $user->getSettingValue('lalala', 'popo'));
$this->assertSame(User::$defaultUserSettings['editing_top_box'], $user->getSettingValue('editing_top_box'));
}
public function testGetPrefWithACustomizedConf()
{
$data = self::$DI['app']['conf']->get(['user-settings']);
self::$DI['app']['conf']->set('user-settings', [
'images_per_page' => 42,
'images_size' => 666,
'lalala' => 'didou',
]);
$user = $this->get_user();
$user->setPrefs('images_per_page', 35);
$this->assertNull($user->getSettingValue('lalala'));
$this->assertSame(666, $user->getSettingValue('images_size'));
$this->assertSame(42, $user->getSettingValue('images_per_page'));
$this->assertSame(User::$defaultUserSettings['editing_top_box'], $user->getSettingValue('editing_top_box'));
if (null === $data) {
self::$DI['app']['conf']->remove('user-settings');
} else {
self::$DI['app']['conf']->set('user-settings', $data);
}
}
public function testSetPref()
{
$user = $this->get_user();
$user->setSettingValue('prout', 'pooop');
$this->assertSame('pooop', $user->getSettingValue('prout'));
}
public function testGetNotificationPref()
{
$user = $this->get_user();
$this->assertSame('1', $user->getNotificationSettingValue('eventsmanager_notify_push'));
}
public function testNotificationPref()
{
$user = $this->get_user();
$this->assertSame('1', $user->getNotificationSettingValue('eventsmanager_notify_push'));
$user->setNotificationSettingValue('eventsmanager_notify_push', false);
$this->assertSame('0', $user->getNotificationSettingValue('eventsmanager_notify_push'));
$user->setNotificationSettingValue('eventsmanager_notify_push', true);
$this->assertSame('1', $user->getNotificationSettingValue('eventsmanager_notify_push'));
}
private function get_user()
{
if (null !== $user = self::$DI['app']['manipulator.user']->getRepository()->findByLogin('notif_ref_test')) {
self::$DI['app']['model.user-manager']->delete($user);
}
return self::$DI['app']['manipulator.user']->create('notif_ref_test', mt_rand(), null, false);
}
}