Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
961 views
in Technique[技术] by (71.8m points)

symfony - Disable Soft Deleteable filter for hard delete record doesn't work

I'm trying to disable "Soft Deleteable" filter during functional testing and I do it as follow:

First option: tried to disable at tearDown() in my test:

protected function tearDown() {
    parent::tearDown();

    $entityUser = $this->em->getRepository("UserSecurityBundle:User")->find($this->user->getUser()->getId());

    $filter = $this->em->getFilters()->disable('softdeleteable');

    $this->em->remove($entityUser);
    $this->em->flush();
    $this->em->close();
}

Didn't work.

Second option: make a doctrine_test.yml and import in config_test.yml:

imports:
    - { resource: config.yml }
    - { resource: doctrine_test.yml }
    - { resource: security_test.yml }

In this case I remove the doctrine.yml and include in config_prod.yml.

Didn't work.

This is how my doctrine_test.yml section look like:

filters:
    softdeleteable:
        class: GedmoSoftDeleteableFilterSoftDeleteableFilter
        enabled: false

Third option: disable the filter in setUp():

public function setUp() {
    static::$kernel = static::createKernel();
    static::$kernel->boot();
    $this->em = static::$kernel->getContainer()->get('doctrine')->getManager();

    $fixture = new LoadFeeData();
    $fixture->load($this->em);

    $this->em->getFilters()->disable('softdeleteable');
    $this->user = $this->createUser();

    parent::setUp();
}

Didn't work.

Any advice? Solution?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

So after some research, after doing more test I found the solution, see below:

protected function tearDown() {
    parent::tearDown();

    $entityAccount = $this->em->getRepository("UserSecurityBundle:Account")->find(array("id" => $this->user->getId(), "user" => $this->user->getUser()->getId()));
    $entityUser = $entityAccount->getUser();

    $entityCompanyHasWtax = $this->em->getRepository("ApprovalBundle:CompanyHasWtax")->findOneBy(array("company" => $this->company, "wtax" => $this->fee, "user" => $this->user->getUser()->getId()));

    foreach ($this->em->getEventManager()->getListeners() as $eventName => $listeners) {
        foreach ($listeners as $listener) {
            if ($listener instanceof GedmoSoftDeleteableSoftDeleteableListener) {
                $this->em->getEventManager()->removeEventListener($eventName, $listener);
            }
        }
    }

    $this->em->remove($entityCompanyHasWtax);
    $this->em->remove($entityAccount);
    $this->em->remove($entityUser);

    $this->em->flush();
    $this->em->close();
}

Aparently Doctrine has a bug since disabling the filter in this way:

$this->em->getFilters()->disable('softdeleteable');

Doesn't work, good look for others


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...