3

我正在尝试在 Ubuntu 14.04 上进行 WordPress 插件测试,并且正在完成 WP-CLI 的设置,但我无法下载必要的文件(includes/functions.php)。

这是我正在使用的命令:

bash bin/install-wp-tests.sh wordpress_test root '' localhost latest

这是输出:

+ install_wp
+ '[' -d /tmp/wordpress/ ']'
+ return
+ install_test_suite
++ uname -s
+ [[ Linux == \D\a\r\w\i\n ]]
+ local ioption=-i
+ '[' '!' -d /tmp/wordpress-tests-lib ']'
+ cd /tmp/wordpress-tests-lib
+ '[' '!' -f wp-tests-config.php ']'
+ download https://develop.svn.wordpress.org/trunk/wp-tests-config-sample.php /tmp/wordpress-tests-lib/wp-tests-config.php
++ which curl
+ '[' /opt/lampp/bin/curl ']'
+ curl -s https://develop.svn.wordpress.org/trunk/wp-tests-config-sample.php
+ sed -i 's:dirname( __FILE__ ) . '\''/src/'\'':'\''/tmp/wordpress/'\'':' /tmp/wordpress-tests-lib/wp-tests-config.php
+ sed -i s/youremptytestdbnamehere/wordpress_test/ /tmp/wordpress-tests-lib/wp-tests-config.php
+ sed -i s/yourusernamehere/root/ /tmp/wordpress-tests-lib/wp-tests-config.php
+ sed -i s/yourpasswordhere// /tmp/wordpress-tests-lib/wp-tests-config.php
+ sed -i 's|localhost|localhost|' /tmp/wordpress-tests-lib/wp-tests-config.php
+ install_db
+ PARTS=(${DB_HOST//\:/ })
+ local PARTS
+ local DB_HOSTNAME=localhost
+ local DB_SOCK_OR_PORT=
+ local EXTRA=
+ '[' -z localhost ']'
++ echo
++ grep -e '^[0-9]\{1,\}$'
+ '[' ']'
+ '[' -z ']'
+ '[' -z localhost ']'
+ EXTRA=' --host=localhost --protocol=tcp'
+ mysqladmin create wordpress_test --user=root --password= --host=localhost --protocol=tcp
Warning: Using a password on the command line interface can be insecure.

在使用 phpunit 命令时,它会引发错误:

Fatal error: require_once(): Failed opening required '/tmp/wordpress-tests-lib/includes/functions.php' (include_path='.:/opt/lampp/lib/php')

我在办公室,所以我认为防火墙可能会阻止此命令,尽管我在 /etc/environment 中设置了代理。

帮助表示赞赏。

4

2 回答 2

7

我遇到了这个问题,您可以尝试以下方法:

  1. 确认/tmp/wordpress-tests-lib缺少includes目录。

  2. 确认您在机器上安装了svn 。如果不运行sudo apt-get install subversion

  3. 删除/tmp/wordpress-tests-lib文件夹

  4. 在您的插件目录中打开bin/install-wp-tests.sh文件并删除 Subversion 调用上的quiet标志。更改此行:

    svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
    
    to
    
    svn co https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
    
  5. 再次运行安装 shell 脚本命令。

您现在应该能够运行 PHPUnit 并看到一个默认测试通过。

于 2016-04-15T18:55:43.587 回答
0

我遇到了同样的问题;按照此处的说明解决它:https ://github.com/wp-cli/wp-cli/wiki/Plugin-Unit-Tests 。具体来说,我需要初始化测试环境。

bash bin/install-wp-tests.sh wordpress_test root '' localhost latest

其中wordpress_test是测试数据库,root是数据库用户并''包含密码。

更多资源:

于 2015-11-02T04:51:27.077 回答