[tests] Execute test env setup on host instead of wp-env container (reverts #50445) (#51021)

This commit is contained in:
Adrian Moldovan 2024-08-29 09:17:31 +01:00 committed by GitHub
parent 84532c8823
commit 0a3c4dde65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 16 additions and 12 deletions

View File

@ -16,8 +16,8 @@
"test-data/images/": "./tests/e2e-pw/test-data/images/" "test-data/images/": "./tests/e2e-pw/test-data/images/"
}, },
"lifecycleScripts": { "lifecycleScripts": {
"afterStart": "wp-env run tests-cli bash wp-content/plugins/woocommerce/tests/e2e-pw/bin/test-env-setup.sh", "afterStart": "./tests/e2e-pw/bin/test-env-setup.sh",
"afterClean": "wp-env run tests-cli bash wp-content/plugins/woocommerce/tests/e2e-pw/bin/test-env-setup.sh" "afterClean": "./tests/e2e-pw/bin/test-env-setup.sh"
}, },
"env": { "env": {
"development": { "development": {

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Execute test env setup on host instead of wp-env container

View File

@ -1,24 +1,24 @@
#!/usr/bin/env bash #!/usr/bin/env bash
echo -e 'Activate default theme \n' echo -e 'Activate default theme \n'
wp theme activate twentytwentythree wp-env run tests-cli wp theme activate twentytwentythree
echo -e 'Update URL structure \n' echo -e 'Update URL structure \n'
wp rewrite structure '/%postname%/' --hard wp-env run tests-cli wp rewrite structure '/%postname%/' --hard
echo -e 'Activate Filter Setter utility plugin \n' echo -e 'Activate Filter Setter utility plugin \n'
wp plugin activate filter-setter wp-env run tests-cli wp plugin activate filter-setter
# This plugin allows you to process queued scheduled actions immediately. # This plugin allows you to process queued scheduled actions immediately.
# It's used in the analytics e2e tests so that order numbers are shown in Analytics. # It's used in the analytics e2e tests so that order numbers are shown in Analytics.
echo -e 'Activate Process Waiting Actions utility plugin \n' echo -e 'Activate Process Waiting Actions utility plugin \n'
wp plugin activate process-waiting-actions wp-env run tests-cli wp plugin activate process-waiting-actions
echo -e 'Activate Test Helper APIs utility plugin \n' echo -e 'Activate Test Helper APIs utility plugin \n'
wp plugin activate test-helper-apis wp-env run tests-cli wp plugin activate test-helper-apis
echo -e 'Add Customer user \n' echo -e 'Add Customer user \n'
wp user create customer customer@woocommercecoree2etestsuite.com \ wp-env run tests-cli wp user create customer customer@woocommercecoree2etestsuite.com \
--user_pass=password \ --user_pass=password \
--role=customer \ --role=customer \
--first_name='Jane' \ --first_name='Jane' \
@ -26,17 +26,17 @@ wp user create customer customer@woocommercecoree2etestsuite.com \
--user_registered='2022-01-01 12:23:45' --user_registered='2022-01-01 12:23:45'
echo -e 'Update Blog Name \n' echo -e 'Update Blog Name \n'
wp option update blogname 'WooCommerce Core E2E Test Suite' wp-env run tests-cli wp option update blogname 'WooCommerce Core E2E Test Suite'
echo -e 'Preparing Test Files \n' echo -e 'Preparing Test Files \n'
sudo cp /var/www/html/wp-content/plugins/woocommerce/tests/legacy/unit-tests/importer/sample.csv /var/www/sample.csv wp-env run tests-cli sudo cp /var/www/html/wp-content/plugins/woocommerce/tests/legacy/unit-tests/importer/sample.csv /var/www/sample.csv
ENABLE_TRACKING="${ENABLE_TRACKING:-0}" ENABLE_TRACKING="${ENABLE_TRACKING:-0}"
if [ $ENABLE_TRACKING == 1 ]; then if [ $ENABLE_TRACKING == 1 ]; then
echo -e 'Enable tracking\n' echo -e 'Enable tracking\n'
wp option update woocommerce_allow_tracking 'yes' wp-env run tests-cli wp option update woocommerce_allow_tracking 'yes'
fi fi
echo -e 'Upload test images \n' echo -e 'Upload test images \n'
wp media import './test-data/images/image-01.png' './test-data/images/image-02.png' './test-data/images/image-03.png' wp-env run tests-cli wp media import './test-data/images/image-01.png' './test-data/images/image-02.png' './test-data/images/image-03.png'