Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124728 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 4168D1A00B7 for ; Fri, 2 Aug 2024 22:00:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722636135; bh=22RpFny0YzFrKD3xnbia+HGqcy7xIu2Oia8GLftsRXs=; h=Subject:From:To:Date:In-Reply-To:References:From; b=Ro/l3ABMaZwtWyWnEk1FfyGsliFVujDoKqItU12OuWMG7bQdUFs8WPofacwlOBniC Zq5F2uTd8ECAkgW+JADrUTno8FNbo6skp/lnmsFyJZtFkyCw+V9GLnXNGsQluwamtU YsrXSieOSj3OoZNO5I9nvgn13g73bzJFmYGfrd590U7PguyYIa+pFfvuV0N3YY6h59 UXasdJkAeP0lZo0eLhHsrtUYcMG2YWPK8+kOiVRtYZ2ISQtRpF+kIPbCCTw4kqMmL4 jBg7qGEE2qmgR2P97maQIqX7OcYsG4Lv4hhAgKfR3oe0aoLmoMVZzommhFt1cHWEK8 rRQUG8WQcKlnw== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id F356318006F for ; Fri, 2 Aug 2024 22:02:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from ageofdream.com (ageofdream.com [45.33.21.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 2 Aug 2024 22:02:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1722636034; bh=22RpFny0YzFrKD3xnbia+HGqcy7xIu2Oia8GLftsRXs=; h=Subject:From:To:Date:In-Reply-To:References:From; b=vIwDs5kr0uV8fECLPJ9FFhkhnqlPeWfOsuXMnKDzqpVW+DNz9dg+kU82b6Czi11/P ku1zmPwmLpm1TCCg17gyx0wCHZZnGad+SHBO3nkEHR1QXKKmEKvbgCoM0WZJ0ESmTD LjKsXx+VbSdC7d7POGr9WUyguIcrtDIjFQ9MUVHESzAJwEzMe66wY44EJMNhd/hNmf BqwYvHMY5A3lS/ep+KqykAbIEOYF0aLeHB5sfHQM/14NqdqZHTZIOPkZNNmyG9MBkW izCmQwlZSQ1Qu+grGhjJ1GvFydSUrT58vA5hGdlNYpVYag5HdYt9/zZA1U0Zret1Pg GUhlqCZV9NMSw== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id 0CBB02788D for ; Fri, 2 Aug 2024 18:00:34 -0400 (EDT) Message-ID: Subject: Re: [PHP-DEV] [Concept] Flip relative function lookup order (global, then local) To: internals@lists.php.net Date: Fri, 02 Aug 2024 18:00:33 -0400 In-Reply-To: <48c22449-6cdf-449f-917f-365506e3f2d0@scriptfusion.com> References: <48c22449-6cdf-449f-917f-365506e3f2d0@scriptfusion.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4-2 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 From: lists@ageofdream.com (Nick Lockheart) On Fri, 2024-08-02 at 21:37 +0100, Bilge wrote: > Hi Ilija, > I think this proposal has legs, and you are right to rekindle it, > instead of letting it die quietly. > On 02/08/2024 17:51, Ilija Tovilo wrote: > =C2=A0 > > * Some mocking libraries (e.g. Symfony's ClockMock [5]) > > intentionally > > declare functions called from some file in the files namespace to > > intercept these calls. This use-case would break. That said, it is > > somewhat of a fragile approach to begin with, given that it > > wouldn't > > work for fully qualified calls, or unnamespaced code. > >=20 > My only concern is there needs to be an alternative way to do this: > intercepting internal calls. Sometimes, whether due to poor > architecture or otherwise, we just need to be able to replace an > internal function call. One example I can think of recently is where > I had to replace `header()` with a void function in tests, just to > stop some legacy code emitting headers before the main framework > kicked in, then unable to emit its own response because HTTP headers > had already been sent. In a perfect world it shouldn't be necessary, > but sometimes it is, so I think for this proposal to be palpable > there must still be a way to achieve this. > Cheers, > =C2=A0Bilge > =C2=A0 I was thinking about a similar problem this week. If class A relies on class B, but you want to swap out class B with a stub to test class A in isolation, is there a way to make every call to class B, from class A, actually call a different class during the test, without modifying class A's code? Minimal code for discussion purposes: // conf class in global namespace abstract class CONF { const DATABASE_HOST_NAME =3D 'db.example.com'; const DATABASE_NAME =3D 'production'; const DATABASE_USER_NAME =3D 'prod_user'; const DATABASE_PASSWORD =3D '123'; } // conf class in test namespace: namespace test; abstract class CONF { const DATABASE_HOST_NAME =3D 'db.sandbox.com'; const DATABASE_NAME =3D 'test'; const DATABASE_USER_NAME =3D 'test_user'; const DATABASE_PASSWORD =3D 'abc'; } // SQL class in global namespace class SQL { private function Init(){ self::$oPDO =3D new PDO( 'mysql:host=3D'.CONF::DATABASE_HOST_NAME. ';dbname=3D'.CONF::DATABASE_NAME.';charset=3Dutf8mb4', CONF::DATABASE_USER_NAME, CONF::DATABASE_PASSWORD, [] ); } } // Testing class in test namespace: namespace test; class SQLTester { // How do I make the SQL class see \test\CONF instead of // \CONF, when SQL calls for CONF in this test scope, /// without changing anything inside of the SQL class? } I think some kind of sandboxing tools would be useful for build/test/deployment.