create profile test suite

This commit is contained in:
Manuel Raynaud
2014-02-24 15:14:48 +01:00
parent cd56928e81
commit e56ed20dfa
2 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,154 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* web : http://www.thelia.net */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 3 of the License */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/*************************************************************************************/
namespace Thelia\Tests\Action;
use Thelia\Action\Profile;
use Thelia\Core\Security\AccessManager;
use Thelia\Model\Profile as ProfileModel;
use Thelia\Core\Event\Profile\ProfileEvent;
use Thelia\Model\ProfileQuery;
/**
* Class ProfileTest
* @package Thelia\Tests\Action
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
class ProfileTest extends \PHPUnit_Framework_TestCase
{
protected $dispatcher;
public function setUp()
{
$this->dispatcher = $this->getMock("Symfony\Component\EventDispatcher\EventDispatcherInterface");
}
public static function setUpBeforeClass()
{
ProfileQuery::create()
->filterByCode('Test')
->delete();
}
public function testCreate()
{
$event = new ProfileEvent();
$event
->setCode("Test")
->setLocale('en_US')
->setTitle('test profile')
->setChapo('test chapo')
->setDescription('test description')
->setPostscriptum('test postscriptum')
->setDispatcher($this->dispatcher)
;
$action = new Profile();
$action->create($event);
$createdProfile = $event->getProfile();
$this->assertInstanceOf('Thelia\Model\Profile', $createdProfile);
$this->assertFalse($createdProfile->isNew());
$this->assertEquals('Test', $createdProfile->getCode());
$this->assertEquals('en_US', $createdProfile->getLocale());
$this->assertEquals('test profile', $createdProfile->getTitle());
$this->assertEquals('test chapo', $createdProfile->getChapo());
$this->assertEquals('test description', $createdProfile->getDescription());
$this->assertEquals('test postscriptum', $createdProfile->getPostscriptum());
return $createdProfile;
}
/**
* @depends testCreate
*/
public function testUpdate(ProfileModel $profile)
{
$event = new ProfileEvent();
$event
->setId($profile->getId())
->setLocale('en_US')
->setTitle('test update title')
->setChapo('test update chapo')
->setDescription('test update description')
->setPostscriptum('test update postscriptum')
->setDispatcher($this->dispatcher)
;
$action = new Profile();
$action->update($event);
$updatedProfile = $event->getProfile();
$this->assertInstanceOf('Thelia\Model\Profile', $updatedProfile);
$this->assertEquals($profile->getCode(), $updatedProfile->getCode());
$this->assertEquals('en_US', $updatedProfile->getLocale());
$this->assertEquals('test update title', $updatedProfile->getTitle());
$this->assertEquals('test update chapo', $updatedProfile->getChapo());
$this->assertEquals('test update description', $updatedProfile->getDescription());
$this->assertEquals('test update postscriptum', $updatedProfile->getPostscriptum());
return $updatedProfile;
}
/**
* @depends testUpdate
*/
public function testUpdateResourceAccess(ProfileModel $profile)
{
$event = new ProfileEvent();
$event
->setId($profile->getId())
->setResourceAccess(array(
'admin.address' => array(AccessManager::CREATE)
))
->setDispatcher($this->dispatcher);
;
$action = new Profile();
$action->updateResourceAccess($event);
$updatedProfile = $event->getProfile();
$this->assertInstanceOf('Thelia\Model\Profile', $updatedProfile);
$resources = $updatedProfile->getResources();
$this->assertEquals(1, count($resources));
$resource = $resources->getFirst();
$this->assertEquals('admin.address', $resource->getCode());
$profileResource = $updatedProfile->getProfileResources()->getFirst();
$accessManager = new AccessManager($profileResource->getAccess());
$this->assertTrue($accessManager->can(AccessManager::CREATE));
}
}