PHPUnit वस्तुओं के निर्माण के लिए एक अच्छा एपीआई प्रदान करता है जबकि Drupal का सरलतम नहीं है। नहीं है एक पुस्तकालय ड्रुपल 7 के साथ PHPUnit एकीकृत करने के लिए सार में उपलब्ध ।
उन लिपियों को निष्पादित करने के लिए जिन्हें आपको इस जिस्ट-रिपॉजिटरी को जांचना होगा । कमांड-लाइन में यूनिट-टेस्ट को निष्पादित करने के लिए बस एक ड्रुपल साइट (यानी। <DRUPAL_ROOT>/sites/default
) पर जाएं और dphpunit.bash का उपयोग करें जैसे कि आप फ़पुनिट कमांड का उपयोग करेंगे।
स्क्रिप्ट में 3 फाइलें हैं:
- dphpunit.bash - जो केवल कुछ अतिरिक्त मापदंडों के साथ drun-dphpunit.php को आमंत्रित करता है। यह आवश्यक है क्योंकि PHP सहानुभूति के साथ सही ढंग से निपटने में असमर्थ है।
- drun-dphpunit.php - जो मूल रूप से अपस्ट्रीम phpunit धावक के समान है, सिवाय इसके कि यह अतिरिक्त पैरामीटर को संभालता है।
- bootstrap.inc.php - जो ड्रुपल बूटस्ट्रैप को ड्रश के समान बनाता है।
स्रोत: 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 के साथ PHPUnit: https://github.com/sebastianbergmann/ppunit
इस स्क्रिप्ट के बारे में अधिक जानकारी यहाँ जाँची जा सकती है: http://thomaslattimore.com/blog/use-phpunit-with-drupal-7