| Current Path : /home/ereika83/public_html/wp-content/plugins/obfuscate-email/phpunit/bin/ |
| Current File : /home/ereika83/public_html/wp-content/plugins/obfuscate-email/phpunit/bin/install-wp-tests.sh |
#!/usr/bin/env bash if [ $# -lt 3 ]; then echo "usage: $0 <db-name> <db-user> <db-pass> <wp-version> <db-host>" exit 1 fi DB_NAME=$1 DB_USER=$2 DB_PASS=$3 WP_VERSION=$4 DB_HOST=$5 set -ex # set up testing suite svn co --ignore-externals --quiet https://develop.svn.wordpress.org/tags/$WP_VERSION $WP_TESTS_DIR cd $WP_TESTS_DIR cp wp-tests-config-sample.php wp-tests-config.php sed -i "s/youremptytestdbnamehere/$DB_NAME/" wp-tests-config.php sed -i "s/yourusernamehere/$DB_USER/" wp-tests-config.php sed -i "s/yourpasswordhere/$DB_PASS/" wp-tests-config.php if [ $DB_HOST ]; then sed -i "s/localhost/$DB_HOST/" wp-tests-config.php fi # create database mysqladmin create $DB_NAME --user="$DB_USER" --password="$DB_PASS"