Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Testing framework for Magento 2 modules. Can be used for pipelines test of a single module

License

Notifications You must be signed in to change notification settings

sashas777/magento2-testing-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magento 2 Testing Framework

Latest Stable Version Total Downloads Latest Unstable Version License

Magento 2 static/unit testing framework for single modules tests

Installation

To use within your Magento 2 project you can use:

composer require --dev thesgroup/magento2-testing-framework

Tests

You can run all tests by using the command:

vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard,vendor/phpcompatibility/php-compatibility/PHPCompatibility
vendor/bin/run-all-tests

PHP Coding Standard Verification

These testsuite includes PHPCS PHPMD PHPCPD PHPStan Tests and strict types declaration. You can run only them using following command:

vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard,vendor/phpcompatibility/php-compatibility/PHPCompatibility
vendor/bin/phpunit --testsuite="PHP Coding Standard Verification" -c vendor/thesgroup/magento2-testing-framework/static/integrity/phpunit.xml

PHP Code Style (PHPCS)

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 

PHP Mess Detector (PHPMD)

Specific files/folders can be added to blacklist at the module folder by adding at new line

Test/_files/phpmd/ignorelist/*.txt
Magento Specific Rules
AllPurposeAction

Controllers (classes implementing ActionInterface) have to implement marker HttpActionInterface to restrict incoming requests by methods.

CookieAndSessionMisuse

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

FinalImplementation

Final keyword is prohibited in Magento as this decreases extensibility and customizability. Final classes and method are not compatible with plugins and proxies.

PHP Copy/Paste Detector (PHPMD)

Specific files/folders can be added to blacklist at the module folder by adding at new line

Test/_files/phpcpd/blacklist/*.txt

Strict type declarations

Specific files/folders can be added to blacklist at the module folder by adding at new line

Test/_files/blacklist/strict_type.txt
PHPStan - PHP Static Analysis Tool

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

Code Integrity Tests

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.

HTML Static Code Analysis

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

Less Static Code Analysis

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

GraphQL Static Code Analysis

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

PHPUnit

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

Javascript Tests

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 .

Contribute to this module

Feel free to Fork and contribute to this module and create a pull request so we will merge your changes to master branch.

Credits

Thanks the the contributors

Related Resources

About

Testing framework for Magento 2 modules. Can be used for pipelines test of a single module

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published