Magento 2 static/unit testing framework for single modules tests
To use within your Magento 2 project you can use:
composer require --dev thesgroup/magento2-testing-framework
You can run all tests by using the command:
vendor/bin/run-all-tests
These testsuite includes PHPCS PHPMD PHPCPD PHPStan Tests and strict types declaration. You can run only them using following command:
vendor/bin/phpunit --testsuite="PHP Coding Standard Verification" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml
In progress:
- Add ability to specify phpcs severity
Also, you can run phpcbf from the command-line to fix some issues automatically:
vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard/
vendor/bin/phpcbf --standard=Magento2 .
Specific files/folders can be added to blacklist at the module folder by adding at new line
Test/_files/phpcs/ignorelist/*.txt
Specific files/folders can be added to blacklist at the module folder by adding at new line
Test/_files/phpmd/ignorelist/*.txt
Controllers (classes implementing ActionInterface) have to implement marker HttpActionInterface to restrict incoming requests by methods.
Sessions and cookies must only be used in classes directly responsible for HTML presentation because Web APIs do not rely on cookies and sessions. If you need to get current user use Magento\Authorization\Model\UserContextInterface
Final keyword is prohibited in Magento as this decreases extensibility and customizability. Final classes and method are not compatible with plugins and proxies.
Specific files/folders can be added to blacklist at the module folder by adding at new line
Test/_files/phpcpd/blacklist/*.txt
Specific files/folders can be added to blacklist at the module folder by adding at new line
Test/_files/blacklist/strict_type.txt
Run PHPStan static analysis Specific files/folders can be added to blacklist at the module folder by adding at new line
Test/_files/phpstan/blacklist/*.txt
You can run only them using following command:
vendor/bin/phpunit --testsuite="Code Integrity Tests" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml
The command above will perform following tests:
- Compiler test. Check compilation of DI definitions and code generation
- Test block names exists
- Test layout declaration and usage of block elements
- Test format of layout files
- Test layout declaration and usage of block elements
- Test declarations of handles in theme layout updates
- Test ACL in the admin area by various assertions.
- Find adminhtml/system.xml files and validate them.
- Find fieldset.xml files and validate them.
- Check interfaces inherited from \Magento\Framework\Api\ExtensibleDataInterface.
- Find webapi xml files and validate them.
- Find widget.xml files and validate them.
- Scan source code for references to classes and see if they indeed exist.
- A test that enforces validity of composer.json files and any other conventions in Magento components.
- Validates information on the dependency between the modules according to the declarative schema.
- Oberver Implementation. (PAY ATTENTION: Current implementation does not support of virtual types)
- Scan source code for incorrect or undeclared modules dependencies.
- Check Magento modules structure for circular dependencies
- Verify whether all payment methods are declared in appropriate modules
- Tests to find obsolete install/upgrade schema/data scripts.
- Coverage of obsolete nodes in layout
- Static test for phtml template files.
- Less Static Code Analysis
- GraphQL Static Code Analysis
- Scan source code for detects invocations of outdated __() method.
- Scan source code for detects invocations of __() function or Phrase object, analyzes placeholders with arguments and see if they not equal.
- Will check if phrase is empty.
- xsi:noNamespaceSchemaLocation validation.
- XML DOM Validation.
You can run only them using following command:
vendor/bin/phpunit --testsuite="HTML Static Code Analysis" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml
You can run only them using following command:
vendor/bin/phpunit --testsuite="Less Static Code Analysis" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml
You can run only them using following command:
vendor/bin/phpunit --testsuite="GraphQL Static Code Analysis" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml
Run unit tests and check for code coverage threshold.
vendor/bin/phpunit-tests
After execution following reports generated:
- JUnit log test-reports/junit.xml
- Html test coverage report test-coverage-html/
- Clover test coverage report clover.xml
To set code coverage threshold 80% (Default value 70%):
vendor/bin/phpunit-tests 80
Run ESLint to ensure the quality of your JavaScript code:
vendor/bin/js-tests
Fix ESLint Locally:
npm install eslint --save-dev
npx eslint -c vendor/thesgroup/magento2-testing-framework/static/js/eslint/.eslintrc --ignore-pattern=vendor/** --no-error-on-unmatched-pattern .
Feel free to Fork and contribute to this module and create a pull request so we will merge your changes to master branch.
Thanks the the contributors