pax_global_header00006660000000000000000000000064137624236330014523gustar00rootroot0000000000000052 comment=2870b3622b8f47eafbc8df5f70f3d0c29e1f53af php-doctrine-instantiator-1.4.0/000077500000000000000000000000001376242363300166365ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/.doctrine-project.json000066400000000000000000000016041376242363300230630ustar00rootroot00000000000000{ "active": true, "name": "Instantiator", "slug": "instantiator", "docsSlug": "doctrine-instantiator", "codePath": "/src", "versions": [ { "name": "1.4", "branchName": "master", "slug": "latest", "upcoming": true }, { "name": "1.3", "branchName": "1.3.x", "slug": "1.3", "aliases": [ "current", "stable" ], "maintained": true, "current": true }, { "name": "1.2", "branchName": "1.2.x", "slug": "1.2" }, { "name": "1.1", "branchName": "1.1.x", "slug": "1.1" }, { "name": "1.0", "branchName": "1.0.x", "slug": "1.0" } ] } php-doctrine-instantiator-1.4.0/.github/000077500000000000000000000000001376242363300201765ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/.github/FUNDING.yml000066400000000000000000000001731376242363300220140ustar00rootroot00000000000000patreon: phpdoctrine tidelift: packagist/doctrine%2Finstantiator custom: https://www.doctrine-project.org/sponsorship.html php-doctrine-instantiator-1.4.0/.github/workflows/000077500000000000000000000000001376242363300222335ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/.github/workflows/coding-standards.yml000066400000000000000000000022021376242363300261760ustar00rootroot00000000000000 name: "Coding Standards" on: pull_request: branches: - "*.x" push: branches: - "*.x" env: COMPOSER_ROOT_VERSION: "1.4" jobs: coding-standards: name: "Coding Standards" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" tools: "cs2pr" - name: "Cache dependencies installed with Composer" uses: "actions/cache@v2" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with Composer" run: "composer install --no-interaction --no-progress" # https://github.com/doctrine/.github/issues/3 - name: "Run PHP_CodeSniffer" run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" php-doctrine-instantiator-1.4.0/.github/workflows/continuous-integration.yml000066400000000000000000000042501376242363300275060ustar00rootroot00000000000000 name: "Continuous Integration" on: pull_request: branches: - "*.x" push: branches: - "*.x" env: fail-fast: true COMPOSER_ROOT_VERSION: "1.4" jobs: phpunit: name: "PHPUnit with SQLite" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.1" - "7.2" - "7.3" - "7.4" - "8.0" steps: - name: "Checkout" uses: "actions/checkout@v2" with: fetch-depth: 2 - name: "Install PHP with XDebug" uses: "shivammathur/setup-php@v2" if: "${{ matrix.php-version == '7.1' }}" with: php-version: "${{ matrix.php-version }}" coverage: "xdebug" ini-values: "zend.assertions=1" - name: "Install PHP with PCOV" uses: "shivammathur/setup-php@v2" if: "${{ matrix.php-version != '7.1' }}" with: php-version: "${{ matrix.php-version }}" coverage: "pcov" ini-values: "zend.assertions=1" - name: "Cache dependencies installed with composer" uses: "actions/cache@v2" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with composer" run: "composer update --no-interaction --no-progress" - name: "Run PHPUnit" run: "vendor/bin/phpunit --coverage-clover=coverage.xml" - name: "Upload coverage file" uses: "actions/upload-artifact@v2" with: name: "phpunit-${{ matrix.php-version }}.coverage" path: "coverage.xml" upload_coverage: name: "Upload coverage to Codecov" runs-on: "ubuntu-20.04" needs: - "phpunit" steps: - name: "Checkout" uses: "actions/checkout@v2" with: fetch-depth: 2 - name: "Download coverage files" uses: "actions/download-artifact@v2" with: path: "reports" - name: "Upload to Codecov" uses: "codecov/codecov-action@v1" with: directory: reports php-doctrine-instantiator-1.4.0/.github/workflows/phpbench.yml000066400000000000000000000022231376242363300245440ustar00rootroot00000000000000 name: "Performance benchmark" on: pull_request: branches: - "*.x" push: branches: - "*.x" env: fail-fast: true COMPOSER_ROOT_VERSION: "1.4" jobs: phpbench: name: "PHPBench" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" steps: - name: "Checkout" uses: "actions/checkout@v2" with: fetch-depth: 2 - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php-version }}" coverage: "pcov" ini-values: "zend.assertions=1" - name: "Cache dependencies installed with composer" uses: "actions/cache@v2" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with composer" run: "composer update --no-interaction --no-progress" - name: "Run PHPBench" run: "php ./vendor/bin/phpbench run --iterations=3 --warmup=1 --report=aggregate" php-doctrine-instantiator-1.4.0/.github/workflows/release-on-milestone-closed.yml000066400000000000000000000027471376242363300302660ustar00rootroot00000000000000name: "Automatic Releases" on: milestone: types: - "closed" jobs: release: name: "Git tag, release & create merge-up PR" runs-on: "ubuntu-20.04" steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Release" uses: "laminas/automatic-releases@v1" with: command-name: "laminas:automatic-releases:release" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} - name: "Create Merge-Up Pull Request" uses: "laminas/automatic-releases@v1" with: command-name: "laminas:automatic-releases:create-merge-up-pull-request" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} - name: "Create new milestones" uses: "laminas/automatic-releases@v1" with: command-name: "laminas:automatic-releases:create-milestones" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} php-doctrine-instantiator-1.4.0/.github/workflows/static-analysis.yml000066400000000000000000000021741376242363300260720ustar00rootroot00000000000000 name: "Static Analysis" on: pull_request: branches: - "*.x" push: branches: - "*.x" env: COMPOSER_ROOT_VERSION: "1.4" jobs: static-analysis-phpstan: name: "Static Analysis with PHPStan" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" steps: - name: "Checkout code" uses: "actions/checkout@v2" - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: coverage: "none" php-version: "${{ matrix.php-version }}" tools: "cs2pr" - name: "Cache dependencies installed with composer" uses: "actions/cache@v2" with: path: "~/.composer/cache" key: "php-${{ matrix.php-version }}-composer-locked-${{ hashFiles('composer.lock') }}" restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with composer" run: "composer install --no-interaction --no-progress" - name: "Run a static analysis with phpstan/phpstan" run: "vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr" php-doctrine-instantiator-1.4.0/.gitignore000066400000000000000000000001661376242363300206310ustar00rootroot00000000000000phpunit.xml /.phpunit.result.cache build vendor /composer.lock coverage.clover /phpcs.xml /.phpcs-cache /phpstan.neon php-doctrine-instantiator-1.4.0/CONTRIBUTING.md000066400000000000000000000020101376242363300210600ustar00rootroot00000000000000# Contributing * Follow the [Doctrine Coding Standard](https://github.com/doctrine/coding-standard) * The project will follow strict [object calisthenics](http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php) * Any contribution must provide tests for additional introduced conditions * Any un-confirmed issue needs a failing test case before being accepted * Pull requests must be sent from a new hotfix/feature branch, not from `master`. ## Installation To install the project and run the tests, you need to clone it first: ```sh $ git clone git://github.com/doctrine/instantiator.git ``` You will then need to run a composer installation: ```sh $ cd Instantiator $ curl -s https://getcomposer.org/installer | php $ php composer.phar update ``` ## Testing The PHPUnit version to be used is the one installed as a dev- dependency via composer: ```sh $ ./vendor/bin/phpunit ``` Accepted coverage for new contributions is 80%. Any contribution not satisfying this requirement won't be merged. php-doctrine-instantiator-1.4.0/LICENSE000066400000000000000000000020441376242363300176430ustar00rootroot00000000000000Copyright (c) 2014 Doctrine Project Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. php-doctrine-instantiator-1.4.0/README.md000066400000000000000000000030751376242363300201220ustar00rootroot00000000000000# Instantiator This library provides a way of avoiding usage of constructors when instantiating PHP classes. [![Build Status](https://travis-ci.org/doctrine/instantiator.svg?branch=master)](https://travis-ci.org/doctrine/instantiator) [![Code Coverage](https://codecov.io/gh/doctrine/instantiator/branch/master/graph/badge.svg)](https://codecov.io/gh/doctrine/instantiator/branch/master) [![Dependency Status](https://www.versioneye.com/package/php--doctrine--instantiator/badge.svg)](https://www.versioneye.com/package/php--doctrine--instantiator) [![Latest Stable Version](https://poser.pugx.org/doctrine/instantiator/v/stable.png)](https://packagist.org/packages/doctrine/instantiator) [![Latest Unstable Version](https://poser.pugx.org/doctrine/instantiator/v/unstable.png)](https://packagist.org/packages/doctrine/instantiator) ## Installation The suggested installation method is via [composer](https://getcomposer.org/): ```sh php composer.phar require "doctrine/instantiator:~1.0.3" ``` ## Usage The instantiator is able to create new instances of any class without using the constructor or any API of the class itself: ```php $instantiator = new \Doctrine\Instantiator\Instantiator(); $instance = $instantiator->instantiate(\My\ClassName\Here::class); ``` ## Contributing Please read the [CONTRIBUTING.md](CONTRIBUTING.md) contents if you wish to help out! ## Credits This library was migrated from [ocramius/instantiator](https://github.com/Ocramius/Instantiator), which has been donated to the doctrine organization, and which is now deprecated in favour of this package. php-doctrine-instantiator-1.4.0/composer.json000066400000000000000000000025501376242363300213620ustar00rootroot00000000000000{ "name": "doctrine/instantiator", "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "type": "library", "license": "MIT", "homepage": "https://www.doctrine-project.org/projects/instantiator.html", "keywords": [ "instantiate", "constructor" ], "authors": [ { "name": "Marco Pivetta", "email": "ocramius@gmail.com", "homepage": "https://ocramius.github.io/" } ], "require": { "php": "^7.1 || ^8.0" }, "require-dev": { "ext-phar": "*", "ext-pdo": "*", "doctrine/coding-standard": "^8.0", "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", "phpstan/phpstan": "^0.12", "phpstan/phpstan-phpunit": "^0.12", "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "autoload": { "psr-4": { "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" } }, "autoload-dev": { "psr-0": { "DoctrineTest\\InstantiatorPerformance\\": "tests", "DoctrineTest\\InstantiatorTest\\": "tests", "DoctrineTest\\InstantiatorTestAsset\\": "tests" } } } php-doctrine-instantiator-1.4.0/docs/000077500000000000000000000000001376242363300175665ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/docs/en/000077500000000000000000000000001376242363300201705ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/docs/en/index.rst000066400000000000000000000033371376242363300220370ustar00rootroot00000000000000Introduction ============ This library provides a way of avoiding usage of constructors when instantiating PHP classes. Installation ============ The suggested installation method is via `composer`_: .. code-block:: console $ composer require doctrine/instantiator Usage ===== The instantiator is able to create new instances of any class without using the constructor or any API of the class itself: .. code-block:: php instantiate(User::class); Contributing ============ - Follow the `Doctrine Coding Standard`_ - The project will follow strict `object calisthenics`_ - Any contribution must provide tests for additional introduced conditions - Any un-confirmed issue needs a failing test case before being accepted - Pull requests must be sent from a new hotfix/feature branch, not from ``master``. Testing ======= The PHPUnit version to be used is the one installed as a dev- dependency via composer: .. code-block:: console $ ./vendor/bin/phpunit Accepted coverage for new contributions is 80%. Any contribution not satisfying this requirement won’t be merged. Credits ======= This library was migrated from `ocramius/instantiator`_, which has been donated to the doctrine organization, and which is now deprecated in favour of this package. .. _composer: https://getcomposer.org/ .. _CONTRIBUTING.md: CONTRIBUTING.md .. _ocramius/instantiator: https://github.com/Ocramius/Instantiator .. _Doctrine Coding Standard: https://github.com/doctrine/coding-standard .. _object calisthenics: http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php php-doctrine-instantiator-1.4.0/docs/en/sidebar.rst000066400000000000000000000000461376242363300223330ustar00rootroot00000000000000.. toctree:: :depth: 3 index php-doctrine-instantiator-1.4.0/phpbench.json000066400000000000000000000001451376242363300213200ustar00rootroot00000000000000{ "bootstrap": "vendor/autoload.php", "path": "tests/DoctrineTest/InstantiatorPerformance" } php-doctrine-instantiator-1.4.0/phpcs.xml.dist000066400000000000000000000041411376242363300214370ustar00rootroot00000000000000 src tests */src/* */src/* tests/DoctrineTest/InstantiatorTestAsset/AbstractClassAsset.php src/Doctrine/Instantiator/Exception/UnexpectedValueException.php src/Doctrine/Instantiator/Exception/InvalidArgumentException.php src/Doctrine/Instantiator/Exception/ExceptionInterface.php src/Doctrine/Instantiator/InstantiatorInterface.php php-doctrine-instantiator-1.4.0/phpmd.xml.dist000066400000000000000000000020751376242363300214360ustar00rootroot00000000000000 php-doctrine-instantiator-1.4.0/phpstan.neon.dist000066400000000000000000000006351376242363300221420ustar00rootroot00000000000000includes: - vendor/phpstan/phpstan-phpunit/extension.neon - vendor/phpstan/phpstan-phpunit/rules.neon parameters: level: max paths: - src - tests ignoreErrors: # dynamic properties confuse static analysis - message: '#Access to an undefined property object::\$foo\.#' path: '*/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php' php-doctrine-instantiator-1.4.0/phpunit.xml.dist000066400000000000000000000011441376242363300220110ustar00rootroot00000000000000 ./tests/DoctrineTest/InstantiatorTest ./src php-doctrine-instantiator-1.4.0/src/000077500000000000000000000000001376242363300174255ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/src/Doctrine/000077500000000000000000000000001376242363300211745ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/000077500000000000000000000000001376242363300236535ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/Exception/000077500000000000000000000000001376242363300256115ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/Exception/ExceptionInterface.php000066400000000000000000000003001376242363300320720ustar00rootroot00000000000000 $reflectionClass */ public static function fromAbstractClass(ReflectionClass $reflectionClass): self { return new self(sprintf( 'The provided class "%s" is abstract, and can not be instantiated', $reflectionClass->getName() )); } } php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php000066400000000000000000000031111376242363300332760ustar00rootroot00000000000000 $reflectionClass */ public static function fromSerializationTriggeredException( ReflectionClass $reflectionClass, Exception $exception ): self { return new self( sprintf( 'An exception was raised while trying to instantiate an instance of "%s" via un-serialization', $reflectionClass->getName() ), 0, $exception ); } /** * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ public static function fromUncleanUnSerialization( ReflectionClass $reflectionClass, string $errorString, int $errorCode, string $errorFile, int $errorLine ): self { return new self( sprintf( 'Could not produce an instance of "%s" via un-serialization, since an error was triggered ' . 'in file "%s" at line "%d"', $reflectionClass->getName(), $errorFile, $errorLine ), 0, new Exception($errorString, $errorCode) ); } } php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/Instantiator.php000066400000000000000000000153211376242363300270450ustar00rootroot00000000000000buildAndCacheFromFactory($className); } /** * Builds the requested object and caches it in static properties for performance * * @return object * * @template T of object * @phpstan-param class-string $className * * @phpstan-return T */ private function buildAndCacheFromFactory(string $className) { $factory = self::$cachedInstantiators[$className] = $this->buildFactory($className); $instance = $factory(); if ($this->isSafeToClone(new ReflectionClass($instance))) { self::$cachedCloneables[$className] = clone $instance; } return $instance; } /** * Builds a callable capable of instantiating the given $className without * invoking its constructor. * * @throws InvalidArgumentException * @throws UnexpectedValueException * @throws ReflectionException * * @template T of object * @phpstan-param class-string $className * * @phpstan-return callable(): T */ private function buildFactory(string $className): callable { $reflectionClass = $this->getReflectionClass($className); if ($this->isInstantiableViaReflection($reflectionClass)) { return [$reflectionClass, 'newInstanceWithoutConstructor']; } $serializedString = sprintf( '%s:%d:"%s":0:{}', is_subclass_of($className, Serializable::class) ? self::SERIALIZATION_FORMAT_USE_UNSERIALIZER : self::SERIALIZATION_FORMAT_AVOID_UNSERIALIZER, strlen($className), $className ); $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString); return static function () use ($serializedString) { return unserialize($serializedString); }; } /** * @throws InvalidArgumentException * @throws ReflectionException * * @template T of object * @phpstan-param class-string $className * * @phpstan-return ReflectionClass */ private function getReflectionClass(string $className): ReflectionClass { if (! class_exists($className)) { throw InvalidArgumentException::fromNonExistingClass($className); } $reflection = new ReflectionClass($className); if ($reflection->isAbstract()) { throw InvalidArgumentException::fromAbstractClass($reflection); } return $reflection; } /** * @throws UnexpectedValueException * * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, string $serializedString): void { set_error_handler(static function (int $code, string $message, string $file, int $line) use ($reflectionClass, &$error): bool { $error = UnexpectedValueException::fromUncleanUnSerialization( $reflectionClass, $message, $code, $file, $line ); return true; }); try { $this->attemptInstantiationViaUnSerialization($reflectionClass, $serializedString); } finally { restore_error_handler(); } if ($error) { throw $error; } } /** * @throws UnexpectedValueException * * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ private function attemptInstantiationViaUnSerialization(ReflectionClass $reflectionClass, string $serializedString): void { try { unserialize($serializedString); } catch (Exception $exception) { throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception); } } /** * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ private function isInstantiableViaReflection(ReflectionClass $reflectionClass): bool { return ! ($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal()); } /** * Verifies whether the given class is to be considered internal * * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ private function hasInternalAncestors(ReflectionClass $reflectionClass): bool { do { if ($reflectionClass->isInternal()) { return true; } $reflectionClass = $reflectionClass->getParentClass(); } while ($reflectionClass); return false; } /** * Checks if a class is cloneable * * Classes implementing `__clone` cannot be safely cloned, as that may cause side-effects. * * @template T of object * @phpstan-param ReflectionClass $reflectionClass */ private function isSafeToClone(ReflectionClass $reflectionClass): bool { return $reflectionClass->isCloneable() && ! $reflectionClass->hasMethod('__clone') && ! $reflectionClass->isSubclassOf(ArrayIterator::class); } } php-doctrine-instantiator-1.4.0/src/Doctrine/Instantiator/InstantiatorInterface.php000066400000000000000000000007441376242363300306710ustar00rootroot00000000000000 $className */ public function instantiate($className); } php-doctrine-instantiator-1.4.0/tests/000077500000000000000000000000001376242363300200005ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/000077500000000000000000000000001376242363300224075ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorPerformance/000077500000000000000000000000001376242363300272505ustar00rootroot00000000000000InstantiatorPerformanceEvent.php000066400000000000000000000036311376242363300355500ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorPerformanceinstantiator = new Instantiator(); $this->instantiator->instantiate(self::class); $this->instantiator->instantiate(ArrayObject::class); $this->instantiator->instantiate(SimpleSerializableAsset::class); $this->instantiator->instantiate(SerializableArrayObjectAsset::class); $this->instantiator->instantiate(UnCloneableAsset::class); } /** * @Revs(20000) */ public function benchInstantiateSelf(): void { $this->instantiator->instantiate(self::class); } /** * @Revs(20000) */ public function benchInstantiateInternalClass(): void { $this->instantiator->instantiate(ArrayObject::class); } /** * @Revs(20000) */ public function benchInstantiateSimpleSerializableAssetClass(): void { $this->instantiator->instantiate(SimpleSerializableAsset::class); } /** * @Revs(20000) */ public function benchInstantiateSerializableArrayObjectAsset(): void { $this->instantiator->instantiate(SerializableArrayObjectAsset::class); } /** * @Revs(20000) */ public function benchInstantiateUnCloneableAsset(): void { $this->instantiator->instantiate(UnCloneableAsset::class); } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTest/000077500000000000000000000000001376242363300257265ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTest/Exception/000077500000000000000000000000001376242363300276645ustar00rootroot00000000000000InvalidArgumentExceptionTest.php000066400000000000000000000043451376242363300361340ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTest/ExceptiongetMessage()); } public function testFromNonExistingTypeWithTrait(): void { $exception = InvalidArgumentException::fromNonExistingClass(SimpleTraitAsset::class); self::assertSame( sprintf('The provided type "%s" is a trait, and can not be instantiated', SimpleTraitAsset::class), $exception->getMessage() ); } public function testFromNonExistingTypeWithInterface(): void { $exception = InvalidArgumentException::fromNonExistingClass(InstantiatorInterface::class); self::assertSame( sprintf( 'The provided type "%s" is an interface, and can not be instantiated', InstantiatorInterface::class ), $exception->getMessage() ); } public function testFromAbstractClass(): void { $reflection = new ReflectionClass(AbstractClassAsset::class); $exception = InvalidArgumentException::fromAbstractClass($reflection); self::assertSame( sprintf( 'The provided class "%s" is abstract, and can not be instantiated', AbstractClassAsset::class ), $exception->getMessage() ); } } UnexpectedValueExceptionTest.php000066400000000000000000000037201376242363300361400ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTest/ExceptiongetPrevious()); self::assertSame( 'An exception was raised while trying to instantiate an instance of "' . self::class . '" via un-serialization', $exception->getMessage() ); } public function testFromUncleanUnSerialization(): void { $reflection = new ReflectionClass(AbstractClassAsset::class); $exception = UnexpectedValueException::fromUncleanUnSerialization($reflection, 'foo', 123, 'bar', 456); self::assertInstanceOf(UnexpectedValueException::class, $exception); self::assertSame( sprintf( 'Could not produce an instance of "%s" ' . 'via un-serialization, since an error was triggered in file "bar" at line "456"', AbstractClassAsset::class ), $exception->getMessage() ); $previous = $exception->getPrevious(); self::assertInstanceOf(Exception::class, $previous); self::assertSame('foo', $previous->getMessage()); self::assertSame(123, $previous->getCode()); } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php000066400000000000000000000113001376242363300317510ustar00rootroot00000000000000instantiator = new Instantiator(); } /** * @dataProvider getInstantiableClasses * @phpstan-param class-string $className */ public function testCanInstantiate(string $className): void { self::assertInstanceOf($className, $this->instantiator->instantiate($className)); } /** * @dataProvider getInstantiableClasses * @phpstan-param class-string $className */ public function testInstantiatesSeparateInstances(string $className): void { $instance1 = $this->instantiator->instantiate($className); $instance2 = $this->instantiator->instantiate($className); self::assertEquals($instance1, $instance2); self::assertNotSame($instance1, $instance2); } public function testExceptionOnUnSerializationException(): void { $this->expectException(UnexpectedValueException::class); $this->instantiator->instantiate(PDORow::class); } /** * @dataProvider getInvalidClassNames * @phpstan-param class-string $invalidClassName */ public function testInstantiationFromNonExistingClass(string $invalidClassName): void { $this->expectException(InvalidArgumentException::class); $this->instantiator->instantiate($invalidClassName); } public function testInstancesAreNotCloned(): void { $className = 'TemporaryClass' . str_replace('.', '', uniqid('', true)); eval('namespace ' . __NAMESPACE__ . '; class ' . $className . '{}'); /** * @phpstan-var class-string */ $classNameWithNamespace = __NAMESPACE__ . '\\' . $className; $instance = $this->instantiator->instantiate($classNameWithNamespace); $instance->foo = 'bar'; $instance2 = $this->instantiator->instantiate($classNameWithNamespace); self::assertObjectNotHasAttribute('foo', $instance2); } /** * Provides a list of instantiable classes (existing) * * @return string[][] * * @phpstan-return list */ public function getInstantiableClasses(): array { return [ [stdClass::class], [self::class], [Instantiator::class], [Exception::class], [PharException::class], [SimpleSerializableAsset::class], [ExceptionAsset::class], [FinalExceptionAsset::class], [PharExceptionAsset::class], [UnCloneableAsset::class], [XMLReaderAsset::class], [PharException::class], [ArrayObject::class], [ArrayObjectAsset::class], [SerializableArrayObjectAsset::class], [WakeUpNoticesAsset::class], [UnserializeExceptionArrayObjectAsset::class], [SerializableFinalInternalChildAsset::class], ]; } /** * Provides a list of instantiable classes (existing) * * @return string[][] */ public function getInvalidClassNames(): array { return [ [self::class . str_replace('.', '', uniqid('', true))], [InstantiatorInterface::class], [AbstractClassAsset::class], [SimpleTraitAsset::class], ]; } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/000077500000000000000000000000001376242363300267265ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/AbstractClassAsset.php000066400000000000000000000002141376242363300331650ustar00rootroot00000000000000 */ class ArrayObjectAsset extends ArrayObject { /** * Constructor - should not be called * * @throws BadMethodCallException */ public function __construct() { throw new BadMethodCallException('Not supposed to be called!'); } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/ExceptionAsset.php000066400000000000000000000006541376242363300324020ustar00rootroot00000000000000 */ class SerializableArrayObjectAsset extends ArrayObject implements Serializable { /** * Constructor - should not be called * * @throws BadMethodCallException */ public function __construct() { throw new BadMethodCallException('Not supposed to be called!'); } /** * {@inheritDoc} */ public function serialize() { return ''; } /** * {@inheritDoc} * * Should not be called * * @throws BadMethodCallException */ public function unserialize($serialized) { throw new BadMethodCallException('Not supposed to be called!'); } } SerializableFinalInternalChildAsset.php000066400000000000000000000003711376242363300364020ustar00rootroot00000000000000php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset */ final class SerializableFinalInternalChildAsset extends ArrayIterator { } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/SimpleSerializableAsset.php000066400000000000000000000014001376242363300342120ustar00rootroot00000000000000 */ class UnserializeExceptionArrayObjectAsset extends ArrayObject { /** * {@inheritDoc} */ public function __wakeup() { throw new BadMethodCallException(); } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/WakeUpNoticesAsset.php000066400000000000000000000007231376242363300331620ustar00rootroot00000000000000 */ class WakeUpNoticesAsset extends ArrayObject { /** * Wakeup method called after un-serialization */ public function __wakeup(): void { trigger_error('Something went bananas while un-serializing this instance'); } } php-doctrine-instantiator-1.4.0/tests/DoctrineTest/InstantiatorTestAsset/XMLReaderAsset.php000066400000000000000000000006431376242363300322250ustar00rootroot00000000000000