Skip to content

Commit 2df6ebf

Browse files
authored
Merge pull request #488 from magento/MQE-1796
[Documentation] MQE-1796: Magento Git vs Composer and MFTF
2 parents e254e73 + 2789a15 commit 2df6ebf

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Git vs Composer installation of Magento with MFTF
2+
3+
Depending on how you plan to use Magnto code, there are different options for installing Magento.
4+
5+
## GitHub Installation
6+
7+
If you are contributing a pull request to the Magento 2 codebase, download Magento 2 from our GitHub repository. Contribution to the codebase is done using the 'fork and pull' model where contributors maintain their own fork of the repo. This repo is then used to submit a pull request to the base repo.
8+
9+
Install guide: [GitHub Installation][]
10+
11+
## Composer based Installation
12+
13+
A Composer install downloads released packages of Magento 2 from the composer repo [https://repo.magento.com](https://repo.magento.com).
14+
15+
All Magento modules and their MFTF tests are put under `<vendor>` directory, for convenience of 3rd party developers. With this setup, you can keep your custom modules separate from core modules. You can also develop modules in a separate VCS repository and add them to your `composer.json` which installs them into the `vendor` directory.
16+
17+
Install guide: [Composer based Installation][]
18+
19+
## MFTF Installation
20+
21+
After installing your Magento project in either of the above ways, the composer dependency `magento/magento2-functional-testing-framework` downloads and installs MFTF. MFTF is embedded in your Magento 2 installation and will cover your project with functional tests.
22+
23+
If you want to contribute a pull request into MFTF codebase, you will need to install MFTF in the [Standalone][] mode.
24+
25+
## Managing modules - Composer vs GitHub
26+
27+
### Via GitHub
28+
29+
Cloning the Magento 2 git repository is a way of installing where you do not have to worry about matching your codebase with production. Your version control system generally holds and manages your `app/code` folder and you can do manual, ad-hoc development here.
30+
31+
### Via Composer
32+
33+
Magento advocates the use of composer for managing modules. When you install a module through composer, it is added to `vendor/<vendor-name>/<module>`.
34+
35+
When developing your own module or adding MFTF tests to a module, you should not edit in `vendor` because a composer update could overwrite your changes. Instead, overwrite a module under `vendor` by adding files or cloning your module-specific Git repo to `app/code/<vendor-name>/<module>`.
36+
37+
To distribute the module and its tests, you can initialize a git repo and create a [composer package][]. In this way others will be able to download and install your module and access your tests as a composer package, in their `<vendor>` folder.
38+
39+
## MFTF test materials location
40+
41+
- For GitHub installations, MFTF test materials are located in `<magento_root>/app/code/<vendor_name>/<module_name>/Test/Mftf/`. This is the directory for new tests or to maintain existing ones.
42+
- For Composer-based installations, MFTF test materials are located at `<magento_root>/vendor/<vendor_name>/<module_name>/Test/Mftf/`. This is the directory to run tests fetched by Composer.
43+
44+
The file structure under both paths is the same:
45+
46+
```tree
47+
<Path>
48+
├── ActionGroup
49+
│   └── ...
50+
├── Data
51+
│   └── ...
52+
├── Metadata
53+
│   └── ...
54+
├── Page
55+
│   └── ...
56+
├── Section
57+
│   └── ...
58+
└── Test
59+
└── ...
60+
```
61+
62+
## How ModuleResolver reads modules
63+
64+
With either type of installation, all tests and test data are read and merged by MFTF's ModuleResolver in this order:
65+
66+
1. `<magento_root>/app/code/<vendor_name>/<module_name>/Test/Mftf/`
67+
1. `<magento_root>/vendor/<vendor_name>/<module_name>/Test/Mftf/`
68+
69+
## Conclusion
70+
71+
There is no difference between having the test materials in `app/code` or in `/vendor`: it works the same. Composer-based installs may benefit teams when there is a need to match file systems in `development` and `production`.
72+
73+
If you are a contributing developer with an understanding of Git and Composer commands, you can choose the GitHub installation method instead.
74+
75+
<!-- Link definitions -->
76+
77+
[Composer based Installation]: https://devdocs.magento.com/guides/v2.3/install-gde/composer.html
78+
[GitHub Installation]: https://devdocs.magento.com/guides/v2.3/install-gde/prereq/dev_install.html
79+
[Standalone]: ../getting-started.html#set-up-a-standalone-mftf
80+
[composer package]: https://devdocs.magento.com/guides/v2.3/extension-dev-guide/package/package_module.html

0 commit comments

Comments
 (0)