123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace Gedmo\Sluggable;
- use Doctrine\Common\EventManager;
- use Tool\BaseTestCaseORM;
- use Gedmo\SoftDeleteable\SoftDeleteableListener;
- use Sluggable\Fixture\Issue449\Article;
- /**
- * These are tests for Sluggable behavior
- *
- * @author Craig Marvelley <craig.marvelley@gmail.com>
- * @link http://marvelley.com
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Issue449Test extends BaseTestCaseORM
- {
- const TARGET = 'Sluggable\\Fixture\\Issue449\\Article';
- const SOFT_DELETEABLE_FILTER_NAME = 'soft-deleteable';
- private $softDeleteableListener;
- protected function setUp()
- {
- parent::setUp();
- $evm = new EventManager;
- $sluggableListener = new SluggableListener;
- $sluggableListener->addManagedFilter(self::SOFT_DELETEABLE_FILTER_NAME, true);
- $evm->addEventSubscriber($sluggableListener);
- $this->softDeleteableListener = new SoftDeleteableListener();
- $evm->addEventSubscriber($this->softDeleteableListener);
- $config = $this->getMockAnnotatedConfig();
- $config->addFilter(self::SOFT_DELETEABLE_FILTER_NAME, 'Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter');
- $this->em = $this->getMockSqliteEntityManager($evm, $config);
- $this->em->getFilters()->enable(self::SOFT_DELETEABLE_FILTER_NAME);
- }
- protected function getUsedEntityFixtures()
- {
- return array(
- self::TARGET
- );
- }
- /**
- * @test
- */
- public function shouldBuildUniqueSlugAfterSoftDeleteFilterIsDisabled()
- {
- $article = new Article();
- $article->setTitle('the soft title');
- $article->setCode('my soft code');
- $this->em->persist($article);
- $this->em->flush();
- $slug = $article->getSlug();
- $this->em->remove($article);
- $this->em->flush();
- $article = new Article();
- $article->setTitle('the soft title');
- $article->setCode('my soft code');
- $this->em->persist($article);
- $this->em->flush();
- $this->em->clear();
- $this->assertNotEquals($slug, $article->getSlug());
- }
- }
|