Drupal 8は補足Simpletest に基づくテストフレームワーク PHPUnit を使用し、Simpletestは 削除 in Drupal 9。
Drupal 8)にまだアップグレードしていませんが、Drupal = 7、代わりにSimpletest?
PHPUnitをDrupal 7と統合するための方法またはモジュールはありますか?
PHPUnitテストは、各テストファイル内でDrupalをブートストラップすることで実行できます。理想的ではありませんが、機能します。
define('DRUPAL_ROOT', 'your/path/to/drupal');
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
// Bootstrap Drupal.
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
// Proceed with PHPUnit tests as usual from here.
class MyTest extends \PHPUnit_Framework_TestCase {
...
PHPUnitはオブジェクトを構築するための素晴らしいAPIを提供しますが、Drupalの最も単純なものは提供しません。 PHPUnitをDrupal 7 と統合するためにGistで利用可能な1つのライブラリがあります。
これらのスクリプトを実行するには、これをチェックアウトする必要があります Gist-repository 。コマンドラインで単体テストを実行するには、Drupalサイト(つまり、<DRUPAL_ROOT>/sites/default
)を使用し、phpunitコマンドと同じようにdphpunit.bashを使用します。
スクリプトは3つのファイルで構成されています。
出典: http://devblog.more-onion.com/content/writing-unit-tests-drupal-7
bootstrap.inc.php
<?php
$path = CWD;
$site_dir = NULL;
$dpl_dir = NULL;
while ($path != '/') {
if (file_exists($path . '/settings.php')) {
$site_dir = $path;
}
if (file_exists($path . '/index.php') && file_exists($path . '/includes/bootstrap.inc')) {
$dpl_dir = $path;
break;
}
$path = dirname($path);
}
if (!$dpl_dir) {
echo "No drupal directory found in or above current working directory. Aborting. \n";
exit(1);
}
if (!$site_dir) {
$site_dir = $dpl_dir . '/sites/default';
if (!file_exists($site_dir . '/settings.php')) {
echo "No configured site found. Aborting.\n";
exit(1);
}
}
$_SERVER['HTTP_Host'] = basename($site_dir);
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
define('DRUPAL_ROOT', $dpl_dir);
set_include_path($dpl_dir . PATH_SEPARATOR . get_include_path());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
dphpunit.bash
#!/bin/bash
# get dirname of the script
DIR="$(dirname $(readlink "$0"))"
# assume the boostrap script is stored in the same directory
php "$DIR/drun-phpunit.php" "$(pwd)" --bootstrap "$DIR/bootstrap.inc.php" "$@"
drun-phpunit.php
<?php
require_once 'PHP/CodeCoverage/Filter.php';
PHP_CodeCoverage_Filter::getInstance()->addFileToBlacklist(__FILE__, 'PHPUNIT');
if (extension_loaded('xdebug')) {
xdebug_disable();
}
if (strpos('/usr/bin/php', '@php_bin') === 0) {
set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
}
require_once 'PHPUnit/Autoload.php';
define('PHPUnit_MAIN_METHOD', 'PHPUnit_TextUI_Command::main');
define('CWD', $_SERVER['argv'][1]);
unset($_SERVER['argv'][1]);
$command = new PHPUnit_TextUI_Command;
$command->run($_SERVER['argv']);
Drupal 7: https://github.com/sebastianbergmann/phpunit との統合PHPUnitに使用できるライブラリがもう1つあります
このスクリプトの詳細については、ここで確認できます: http://thomaslattimore.com/blog/using-phpunit-with-drupal-7
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="phpunit.xsd" bootstrap="drupal_phpunit_bootstrap.php" verbose="true"> </phpunit>
<?php $_SERVER['HTTP_Host'] = 'your.url'; $_SERVER['SCRIPT_NAME'] = '/index.php'; $_SERVER['REMOTE_ADDR'] = '127.0.0.1'; $_SERVER['REQUEST_METHOD'] = 'GET'; $_SERVER['SERVER_NAME'] = NULL; $_SERVER['SERVER_SOFTWARE'] = NULL; $_SERVER['HTTP_USER_AGENT'] = NULL; // Fix for behat drupal instantiation. define('DRUPAL_ROOT', dirname(realpath(__FILE__))); require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
要旨: https://Gist.github.com/permanovd/cb9c02920c49a29c97653f4f697147b1
それがすべてです。これで、いくつかの方法でテストを開始できます。
phpunit -c phpunit.xml.dist QuestionValidationValueOptionsInputTest /yoursite.dir/public_html/profiles/standard/modules/some_module/tests/QuestionValidationTest.php
どこ:
テスト実行構成を追加する必要があります
また、すべてのテストにdrupal bootstrapコードを含める必要はありません。
環境のphpバージョンが間違っているため、テストで問題が発生する可能性があります。