E2E: Improve the setup script (https://github.com/woocommerce/woocommerce-blocks/pull/10611)
This commit is contained in:
parent
4199533688
commit
1868b62ba0
|
@ -1,3 +0,0 @@
|
||||||
<!-- wp:woocommerce/all-products {"columns":3,"rows":3,"alignButtons":false,"contentVisibility":{"orderBy":true},"orderby":"date","layoutConfig":[["woocommerce/product-image",{"imageSizing":"cropped"}],["woocommerce/product-title"],["woocommerce/product-price"],["woocommerce/product-rating"],["woocommerce/product-button"]]} -->
|
|
||||||
<div class="wp-block-woocommerce-all-products wc-block-all-products" data-attributes="{"alignButtons":false,"columns":3,"contentVisibility":{"orderBy":true},"isPreview":false,"layoutConfig":[["woocommerce/product-image",{"imageSizing":"cropped"}],["woocommerce/product-title"],["woocommerce/product-price"],["woocommerce/product-rating"],["woocommerce/product-button"]],"orderby":"date","rows":3}"></div>
|
|
||||||
<!-- /wp:woocommerce/all-products -->
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp wc product_attribute create \
|
||||||
|
--name=Color \
|
||||||
|
--slug=pa_color \
|
||||||
|
--user=1
|
||||||
|
|
||||||
|
wp wc product_attribute create \
|
||||||
|
--name=Size \
|
||||||
|
--slug=pa_size \
|
||||||
|
--user=1
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
|
# Empty the site to remove unused pages and posts created by WP and Woo.
|
||||||
|
wp site empty --yes
|
||||||
|
|
||||||
|
# Attributes must be created before importing products.
|
||||||
|
bash $script_dir/attributes.sh
|
||||||
|
|
||||||
|
# Run all scripts in parallel at maximum 10 at a time
|
||||||
|
find $script_dir/parallel/*.sh -maxdepth 1 -type f | xargs -P10 -n1 bash
|
||||||
|
|
||||||
|
# Run rewrite script last to ensure all posts are created before running it
|
||||||
|
bash $script_dir/rewrite.sh
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp option update blogname 'WooCommerce Blocks E2E Test Suite'
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp user create customer customer@woocommerceblockse2etestsuite.com \
|
||||||
|
--user_pass=password \
|
||||||
|
--role=subscriber \
|
||||||
|
--first_name='Jane' \
|
||||||
|
--last_name='Smith' \
|
||||||
|
--path=/var/www/html \
|
||||||
|
--user_registered='2022-01-01 12:23:45'
|
|
@ -0,0 +1,55 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && cd ../../pages && pwd)"
|
||||||
|
|
||||||
|
post_id=$(wp post create \
|
||||||
|
--porcelain \
|
||||||
|
--menu_order=1 \
|
||||||
|
--post_type=page \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title='Cart block' \
|
||||||
|
${script_dir}/cart.html
|
||||||
|
)
|
||||||
|
wp option update woocommerce_cart_page_id $post_id
|
||||||
|
|
||||||
|
post_id=$(wp post create \
|
||||||
|
--porcelain \
|
||||||
|
--menu_order=2 \
|
||||||
|
--post_type=page \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title='Checkout block' \
|
||||||
|
${script_dir}/checkout.html
|
||||||
|
)
|
||||||
|
wp option update woocommerce_checkout_page_id $post_id
|
||||||
|
|
||||||
|
post_id=$(wp post create \
|
||||||
|
--porcelain \
|
||||||
|
--menu_order=3 \
|
||||||
|
--post_type=page \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title='My Account' \
|
||||||
|
${script_dir}/my-account.html
|
||||||
|
)
|
||||||
|
wp option update woocommerce_myaccount_page_id $post_id
|
||||||
|
|
||||||
|
post_id=$(wp post create \
|
||||||
|
--porcelain \
|
||||||
|
--menu_order=4 \
|
||||||
|
--post_type=page \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title='Terms')
|
||||||
|
wp option update woocommerce_terms_page_id $post_id
|
||||||
|
|
||||||
|
post_id=$(wp post create \
|
||||||
|
--porcelain \
|
||||||
|
--menu_order=5 \
|
||||||
|
--post_type=page \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title='Privacy'
|
||||||
|
)
|
||||||
|
wp option update wp_page_for_privacy_policy $post_id
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp option set --format=json woocommerce_cod_settings '{
|
||||||
|
"enabled":"yes",
|
||||||
|
"title":"Cash on delivery",
|
||||||
|
"description":"Cash on delivery description",
|
||||||
|
"instructions":"Cash on delivery instructions"
|
||||||
|
}'
|
||||||
|
|
||||||
|
wp option set --format=json woocommerce_bacs_settings '{
|
||||||
|
"enabled":"yes",
|
||||||
|
"title":"Direct bank transfer",
|
||||||
|
"description":"Direct bank transfer description",
|
||||||
|
"instructions":"Direct bank transfer instructions"
|
||||||
|
}'
|
||||||
|
|
||||||
|
wp option set --format=json woocommerce_cheque_settings '{
|
||||||
|
"enabled":"yes",
|
||||||
|
"title":"Check payments",
|
||||||
|
"description":"Check payments description",
|
||||||
|
"instructions":"Check payments instructions"
|
||||||
|
}'
|
|
@ -0,0 +1,17 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && cd ../../posts/ && pwd)"
|
||||||
|
|
||||||
|
function create_post {
|
||||||
|
name=$(basename -s .html $1) # Remove .html extension
|
||||||
|
title=$(IFS=- read -ra str <<<"$name"; printf '%s' "${str[*]^}") # Capitalize each word
|
||||||
|
wp post create \
|
||||||
|
--post_status=publish \
|
||||||
|
--post_author=1 \
|
||||||
|
--post_title="$title block" \
|
||||||
|
$1
|
||||||
|
}
|
||||||
|
export -f create_post
|
||||||
|
|
||||||
|
find $script_dir -maxdepth 1 -type f | xargs -P5 -n1 bash -c 'create_post "$@"' _
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
###################################################################################################
|
||||||
|
# Import sample products and regenerate product lookup tables
|
||||||
|
###################################################################################################
|
||||||
|
wp import wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=skip
|
||||||
|
wp wc tool run regenerate_product_lookup_tables --user=1
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp wc shipping_zone_method create 0 \
|
||||||
|
--order=1 \
|
||||||
|
--enabled=true \
|
||||||
|
--user=1 \
|
||||||
|
--settings='{"title":"Flat rate shipping", "cost": "10"}' \
|
||||||
|
--method_id=flat_rate
|
||||||
|
|
||||||
|
wp wc shipping_zone_method create 0 \
|
||||||
|
--order=2 \
|
||||||
|
--enabled=true \
|
||||||
|
--user=1 \
|
||||||
|
--settings='{"title":"Free shipping"}' \
|
||||||
|
--method_id=free_shipping
|
|
@ -0,0 +1,18 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wp option set woocommerce_calc_taxes yes
|
||||||
|
|
||||||
|
wp wc tax create \
|
||||||
|
--user=1 \
|
||||||
|
--rate=20 \
|
||||||
|
--class=standard
|
||||||
|
|
||||||
|
wp wc tax create \
|
||||||
|
--user=1 \
|
||||||
|
--rate=10 \
|
||||||
|
--class=reduced-rate
|
||||||
|
|
||||||
|
wp wc tax create \
|
||||||
|
--user=1 \
|
||||||
|
--rate=0 \
|
||||||
|
--class=zero-rate
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Currently, the rewrite rules don't work properly in the test environment: https://github.com/WordPress/gutenberg/issues/28201
|
||||||
|
chmod -c ugo+w /var/www/html
|
||||||
|
wp rewrite structure /%postname%/ --hard
|
||||||
|
wp rewrite flush --hard
|
|
@ -1,352 +1,10 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
###################################################################################################
|
# Extract the relative path from the plugin root to this script directory.
|
||||||
# Get the directory of the current script
|
# By doing so, we can run this script from anywhere.
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
head_dir=$(cd "$(dirname "$script_dir")" && cd ../../.. && pwd)
|
||||||
|
relative_path=${script_dir#$head_dir/}
|
||||||
|
|
||||||
###################################################################################################
|
# Run the main script in the container for better performance.
|
||||||
# Empty site to prevent conflicts with existing data
|
wp-env run tests-cli "bash wp-content/plugins/$relative_path/scripts/index.sh"
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp site empty --yes"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# If no attributes exist, otherwiese create them
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
attributes=$(wp-env run tests-cli "wp wc product_attribute list --format=json --user=1")
|
|
||||||
|
|
||||||
if [ -z "$attributes" ] || [ "$attributes" == "[]" ]; then
|
|
||||||
pa_color=$(wp-env run tests-cli "wp wc product_attribute create \
|
|
||||||
--name=Color \
|
|
||||||
--slug=pa_color \
|
|
||||||
--user=1 \
|
|
||||||
--porcelain \
|
|
||||||
")
|
|
||||||
|
|
||||||
pa_size=$(wp-env run tests-cli "wp wc product_attribute create \
|
|
||||||
--name=Size \
|
|
||||||
--slug=pa_size \
|
|
||||||
--user=1 \
|
|
||||||
--porcelain \
|
|
||||||
")
|
|
||||||
fi
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Import sample products and regenerate product lookup tables
|
|
||||||
###################################################################################################
|
|
||||||
wp-env run tests-cli "wp import wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=skip"
|
|
||||||
wp-env run tests-cli "wp wc tool run regenerate_product_lookup_tables --user=1"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Create pages and posts
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/all-products.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--menu_order=0 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='All Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/cart.txt" | sed 's/"/\\"/g')
|
|
||||||
post_id=$(wp-env run tests-cli "wp post create \
|
|
||||||
--porcelain \
|
|
||||||
--menu_order=1 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Cart block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
")
|
|
||||||
wp-env run tests-cli "wp option update woocommerce_cart_page_id $post_id"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/checkout.txt" | sed 's/"/\\"/g')
|
|
||||||
post_id=$(wp-env run tests-cli "wp post create \
|
|
||||||
--porcelain \
|
|
||||||
--menu_order=2 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Checkout block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
")
|
|
||||||
wp-env run tests-cli "wp option update woocommerce_checkout_page_id $post_id"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/my-account.txt" | sed 's/"/\\"/g')
|
|
||||||
post_id=$(wp-env run tests-cli "wp post create \
|
|
||||||
--porcelain \
|
|
||||||
--menu_order=3 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='My Account' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
")
|
|
||||||
wp-env run tests-cli "wp option update woocommerce_myaccount_page_id $post_id"
|
|
||||||
|
|
||||||
post_id=$(wp-env run tests-cli "wp post create \
|
|
||||||
--porcelain \
|
|
||||||
--menu_order=4 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Terms'")
|
|
||||||
wp-env run tests-cli "wp option update woocommerce_terms_page_id $post_id"
|
|
||||||
|
|
||||||
post_id=$(wp-env run tests-cli "wp post create \
|
|
||||||
--porcelain \
|
|
||||||
--menu_order=5 \
|
|
||||||
--post_type=page \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Privacy'
|
|
||||||
")
|
|
||||||
wp-env run tests-cli "wp option update wp_page_for_privacy_policy $post_id"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/all-reviews.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='All Reviews block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
if [ "$pa_color" ] && [ "$pa_size" ]; then
|
|
||||||
post_content=$(cat "${script_dir}/active-filters.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Active Filters block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
fi
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/mini-cart.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Mini-Cart block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-best-sellers.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Best Selling Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/products-by-attribute.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Products by Attribute block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/single-product.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Single Product block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/customer-account.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Customer Account block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/featured-category.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Featured Category block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/featured-product.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Featured Product block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/handpicked-products.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Hand-picked Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-new.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Newest Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-on-sale.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='On Sale Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-category.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Products by Category block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-categories.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Product Categories List block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-search.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Product Search block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/reviews-by-category.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Reviews by Category block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/reviews-by-product.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Reviews by Product block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
post_content=$(cat "${script_dir}/product-top-rated.txt" | sed 's/"/\\"/g')
|
|
||||||
wp-env run tests-cli "wp post create \
|
|
||||||
--post_status=publish \
|
|
||||||
--post_author=1 \
|
|
||||||
--post_title='Top Rated Products block' \
|
|
||||||
--post_content=\"$post_content\"
|
|
||||||
"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Set up shipping
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp wc shipping_zone_method create 0 \
|
|
||||||
--order=1 \
|
|
||||||
--enabled=true \
|
|
||||||
--user=1 \
|
|
||||||
--settings='{\"title\":\"Flat rate shipping\", \"cost\": \"10\"}' \
|
|
||||||
--method_id=flat_rate
|
|
||||||
"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp wc shipping_zone_method create 0 \
|
|
||||||
--order=2 \
|
|
||||||
--enabled=true \
|
|
||||||
--user=1 \
|
|
||||||
--settings='{\"title\":\"Free shipping\"}' \
|
|
||||||
--method_id=free_shipping
|
|
||||||
"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Set up payment methods
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp option set --format=json woocommerce_cod_settings '{
|
|
||||||
\"enabled\":\"yes\",
|
|
||||||
\"title\":\"Cash on delivery\",
|
|
||||||
\"description\":\"Cash on delivery description\",
|
|
||||||
\"instructions\":\"Cash on delivery instructions\"
|
|
||||||
}'"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp option set --format=json woocommerce_bacs_settings '{
|
|
||||||
\"enabled\":\"yes\",
|
|
||||||
\"title\":\"Direct bank transfer\",
|
|
||||||
\"description\":\"Direct bank transfer description\",
|
|
||||||
\"instructions\":\"Direct bank transfer instructions\"
|
|
||||||
}'"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp option set --format=json woocommerce_cheque_settings '{
|
|
||||||
\"enabled\":\"yes\",
|
|
||||||
\"title\":\"Check payments\",
|
|
||||||
\"description\":\"Check payments description\",
|
|
||||||
\"instructions\":\"Check payments instructions\"
|
|
||||||
}'"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Set up tax
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp option set woocommerce_calc_taxes yes"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp wc tax create \
|
|
||||||
--user=1 \
|
|
||||||
--rate=20 \
|
|
||||||
--class=standard \
|
|
||||||
"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp wc tax create \
|
|
||||||
--user=1 \
|
|
||||||
--rate=10 \
|
|
||||||
--class=reduced-rate \
|
|
||||||
"
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp wc tax create \
|
|
||||||
--user=1 \
|
|
||||||
--rate=0 \
|
|
||||||
--class=zero-rate \
|
|
||||||
"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Adjust and flush rewrite rules
|
|
||||||
###################################################################################################
|
|
||||||
# Currently, the rewrite rules don't work properly in the test environment: https://github.com/WordPress/gutenberg/issues/28201
|
|
||||||
wp-env run tests-wordpress "chmod -c ugo+w /var/www/html"
|
|
||||||
wp-env run tests-cli "wp rewrite structure /%postname%/ --hard"
|
|
||||||
wp-env run tests-cli "wp rewrite flush --hard"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Create a customer
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp user create customer customer@woocommerceblockse2etestsuite.com \
|
|
||||||
--user_pass=password \
|
|
||||||
--role=subscriber \
|
|
||||||
--first_name='Jane' \
|
|
||||||
--last_name='Smith' \
|
|
||||||
--path=/var/www/html \
|
|
||||||
--user_registered='2022-01-01 12:23:45'
|
|
||||||
"
|
|
||||||
|
|
||||||
###################################################################################################
|
|
||||||
# Update blog name
|
|
||||||
###################################################################################################
|
|
||||||
|
|
||||||
wp-env run tests-cli "wp option update blogname 'WooCommerce Blocks E2E Test Suite'"
|
|
||||||
|
|
Loading…
Reference in New Issue