tainacan/run-cypress.sh

58 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
if [ $# - lt 2 ]; then
echo "usage: $0 [skip-head]"
2018-03-06 20:27:41 +00:00
exit 1
fi
SKIP_HEAD=${1-1}
source build-config.cfg
./build.sh
2018-03-22 15:23:54 +00:00
plugin_tainacan=`basename $wp_plugin_dir`
plugin_wpclear='wpress-db-cleaner'
test_db_prefix='wptests_'
2018-03-06 20:27:41 +00:00
cy_record_key='a15e6599-d240-4d98-b582-dea93a3008c0'
2018-03-06 20:27:41 +00:00
################# set up cypress environment
# replace table prefix in wp_config
echo "Changing DB prefix in wp_config..."
sed -i s/"require_once(ABSPATH . 'wp-settings.php');"/"\$table_prefix = '$test_db_prefix';\nrequire_once(ABSPATH . 'wp-settings.php');"/ $wp_base_dir/wp-config.php
# install WordPress
cd $wp_base_dir
echo "Installing WordPress..."
wp core install --url=$wp_url --title=Test --admin_user=admin --admin_password=admin --admin_email=admin@admin.com
# Activate Tainacan
2018-03-22 15:23:54 +00:00
wp plugin activate $plugin_tainacan $plugin_wpclear
2018-04-02 19:16:37 +00:00
# Add options wpress plugin_wpclear
wp option add api_namespace tainacan/v2
wp option add wpress_prefix $test_db_prefix
# back to tainacan dev directory
cd -
# cypress beginning
if [ ${SKIP_HEAD} = "0" ]
then
2018-04-10 19:38:27 +00:00
# ./node_modules/.bin/cypress run --config baseUrl=$wp_url --record --key $cy_record_key
./node_modules/.bin/cypress run --spec cypress/integration/repository/collection/field/field_text_spec.js --config baseUrl=$wp_url
else
2018-03-06 20:27:41 +00:00
./node_modules/.bin/cypress open --config baseUrl=$wp_url
fi
################## teardown cypress environment
# remove WordPress
echo "Removing WordPress..."
2018-03-06 20:27:41 +00:00
cd $wp_base_dir/
wp db query "DROP TABLES $(wp db tables | paste -s -d, -);"
# recover table prefix in wp_config
echo "Restoring DB prefix in wp_config..."
2018-03-06 20:27:41 +00:00
sed -i s/"\$table_prefix = '$test_db_prefix';"/test/ $wp_base_dir/wp-config.php
sed -i '/test/d' $wp_base_dir/wp-config.php