GithubHelp home page GithubHelp logo

Comments (6)

matthewjumpsoffbuildings avatar matthewjumpsoffbuildings commented on June 15, 2024 1

I am seeing this issue when running unit tests in Laravel, with my test classes extending Illuminate\Foundation\Testing\TestCase

Is it likely that the base Laravel class incorrectly handles self-references and destructors similar to #5809 (comment), and that is the cause of the segfaults I am seeing? Laravel has a ton of methods that return $this, and none of my own tests I am adding on top of the base Laravel test classes create stubs or test self-return, so it seems like the most likely location of the issue is within the base Laravel class no?

from phpunit.

sebastianbergmann avatar sebastianbergmann commented on June 15, 2024

Thank you, @nielsdos, for investigating this.

I have stripped down the reproducer:

composer.json

{
  "require-dev": {
    "phpunit/phpunit": "^10.5"
  },
  "autoload": {
    "classmap": [
      "src/"
    ]
  }
}

src/Example.php

<?php declare(strict_types=1);
class Example {
    public function methodWithSelfReferenceReturn(): self
    {
        return $this;
    }

    public function __destruct()
    {
        $this->methodWithSelfReferenceReturn();
    }
}

tests/ExampleTest.php

<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;

final class ExampleTest extends TestCase
{
    public function testOne(): void
    {
        $this->createStub(Example::class);
    }
}
$ php-82 ./vendor/bin/phpunit --no-configuration --do-not-cache-result tests 
PHPUnit 10.5.17 by Sebastian Bergmann and contributors.

Runtime:       PHP 8.2.19-dev

[1]    327489 segmentation fault (core dumped)

from phpunit.

sebastianbergmann avatar sebastianbergmann commented on June 15, 2024

Here is what happens in #5809 (comment):

  • createStub() creates a test stub for Example (the destructor of Example is not stubbed)
  • The destructor of Example is invoked
  • The destructor of Example calls methodWithSelfReferenceReturn()
  • The return value generator is called to generate a return value as no return value was configured for methodWithSelfReferenceReturn() on the test stub
  • The return value generator looks at the return type declaration for methodWithSelfReferenceReturn(), sees self, resolves self to Example, and creates a new test stub for Example
  • And now the infinite recursion starts ...

There is no bug here, though.

The return type declaration self "only" means that an object of the same type is to be returned. It does not mean "self reference".

If you configure methodWithSelfReferenceReturn() on the test double to return a self reference (see below) then the return value generator does not get involved by the invocation handler and there will be no infinite recursion.

tests/ExampleTest.php

<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;

final class ExampleTest extends TestCase
{
    public function testOne(): void
    {
        $stub = $this->createStub(Example::class);

        $stub
            ->method('methodWithSelfReferenceReturn')
            ->willReturnSelf();
    }
}

from phpunit.

nielsdos avatar nielsdos commented on June 15, 2024

Thanks for the great explanation!

from phpunit.

sebastianbergmann avatar sebastianbergmann commented on June 15, 2024

@matthewjumpsoffbuildings Please raise this question with the vendor of your framework.

from phpunit.

eleftrik avatar eleftrik commented on June 15, 2024

@matthewjumpsoffbuildings Take a look: laravel/framework#51046 (comment)

from phpunit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.