Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124434 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 EBE841A00B7 for ; Mon, 15 Jul 2024 19:23:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1721071502; bh=s/+CLis21pi3gKiTPT22PZdqEpS6/LIyA/EPxxabn+k=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=VpOrIGo97ZFSimyZDOZ+omq0xY0XXuennTrUgfkRwbMq7Wrcgph6yDErMZc1XTR2H rH9VF5YzcnBiHyRSvDKcVXeqJTEC05hx+RZLu7W9Pig0fVHISScZTYGqfeHJjtP3pK WUm61YWN3ck9E2r50QxGFQ8SM9urXA/qqs+BMGQe0B7YCsYGodcJGLEut40SFf1UpS JC+Abd/Aa+bQXqNdAvAhPCekk9qDxHA0WZySdwAFuXiAetlr18XCdLvaJgLdZZxX3A O/iEbse6WDcTLg1i+4YseFF3NhE7qHDQLAiSU/3mwaR7SFbWDO0nVaOEXD1s/tZlek cTmN53c9pX2jQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id E5C08180039 for ; Mon, 15 Jul 2024 19:25:01 +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_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (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 ; Mon, 15 Jul 2024 19:25:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1721071410; bh=tdoVMxKDdCk0sp23AVxrTBKHaRySKpLoqZhVAD152wY=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=N3mWkVVj+IOv4khxF7SD+lWypKKSClZUs+Kbwff551LrMXvNhqO2AKnE86w/nJkcZ NwYHslWp1ixzLbs5W4CIspVctrkwXPX4zKohuzxrCVETE6rz1VYieJ61QnfJgTykV3 +z38RH42OqxsytJoN3FYrkhWj5O6bmwk3vuGjvHeEvEqNuuAY7pBbY9bGGGXUH/M2A fHlLeRQDmvRkFbDWs4rN1xC9lRQiNnci1yZAONm6f2ZxXasR3YoKyaX9G+PGjAMVkI vkKqjF1ct7AZAgh55ZeyPxCLBj6QN++sqZq4Wi2EXD6hQ8tAXd8udsQNROpiMRhSGG ifAzOZ98dLA+Q== Message-ID: Date: Mon, 15 Jul 2024 21:23:29 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] Lazy Objects To: Rob Landers , =?UTF-8?Q?Benjamin_Au=C3=9Fenhofer?= Cc: PHP Internals List , Nicolas Grekas References: <1118bbcd-a7b4-47bf-bf35-1a36ab4628e1@bastelstu.be> <45847b93-02bf-459f-bcd2-81ba35a12c24@bastelstu.be> <46bd4098-2936-4e46-98e9-fe55118325c2@bastelstu.be> <61ab36bc-b045-452a-84e0-87367d4c680e@bastelstu.be> <07e065f2-8f64-4bad-9a98-51f4eaf63ddb@app.fastmail.com> Content-Language: en-US In-Reply-To: <07e065f2-8f64-4bad-9a98-51f4eaf63ddb@app.fastmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 7/12/24 08:00, Rob Landers wrote: > For what it’s worth, I see “resetAsLazy()” being most useful for unit testing libraries that build proxies. While this feature will remove most of the tricky nuances around proxies, it doesn’t make it any easier in generating the code for them, so that has to be tested. Being able to write a test like this (abbreviated): > > $realObj = new $foo() > $proxy = clone $realObj; > makeTestProxy($proxy); // resets as lazy with initializer > assert($realObj == $proxy); > > Is really simple. Without a reset method, this isn’t straightforward. > I'm not sure if I follow this example. With the native support for lazy objects there should no longer be a need for code generation, no? Testing that PHP works correctly in your own test suite is not a value-add, PHP has its own tests for that. Best regards Tim Düsterhus