Codeception / module-doctrine

Next gen Doctrine module for Codeception
MIT License
2 stars 1 forks source link

Second and next requests in tests reloads entities from doctrine entity manager #18

Open Dukecz opened 5 years ago

Dukecz commented 5 years ago

What are you trying to achieve?

All requests should use same instances of entities during the test.

What do you get instead?

Second and subsequent requests reloads entities which causes instances within test to be different from those that are used within those requests.

<?php

public function test(\Codeception\Actor $tester)
{
    $instance = $tester->grabEntityFromRepository(Foo::class, ['id' => 1]); // spl_object_hash: 000000006cf7be51000000007baa4f48
    $tester->sendPUT('/foo'); // spl_object_hash: 000000006cf7be51000000007baa4f48 same as first
    $tester->sendPUT('/foo'); // spl_object_hash: 000000006cf7b6b0000000007baa4f48 different than previous
    $tester->sendPUT('/foo'); // spl_object_hash: 000000006cf7b5c0000000007baa4f48 different than previous

    // $instance here has different values than those used within second and any subsequent request
}

Workaround

In order to get latest version of the entity we have to "re-grab" it from repository:

<?php
$instance = $tester->grabEntityFromRepository(Foo::class, ['id' => 1]); // spl_object_hash: 000000006cf7b5c0000000007baa4f48 is same as in last request

But it would be better to reuse the first instance the same way first request does.

Details

modules:
    enabled:
        - Asserts: ~
        - Symfony:
            cache_router: true
            rebootable_client: true
        - REST:
            url: /api
            depends: Symfony
        - Doctrine2:
            depends: Symfony
        - \Helper\Api: ~
    disabled:
        - PhpBrowser
        - WebDriver
Naktibalda commented 5 years ago

@Dukecz Have you got any idea how to fix it in Codeception?

Dukecz commented 5 years ago

@Dukecz Have you got any idea how to fix it in Codeception?

@Naktibalda Not really. I don't have even the slightest idea where the problem could be sadly.

OphiuchusAtaraxia commented 5 years ago

I have a problem due to different results between first run and following ones in version 2.2. I have found that removing var/cache/test/appTestDebugProjectContainer.php allows to run test as if it was always the first one. I guess that there may be an issue in the cache generation but haven't got time to investigate any further so far. This may be related to you problem…