Difference between revisions of "Selenium.php"
m |
m |
||
Line 18: | Line 18: | ||
$dir = dirname(__FILE__); | $dir = dirname(__FILE__); | ||
− | $egSeleniumPath = preg_replace( | + | $egSeleniumPath = preg_replace("|^.+(?=[/\\\\]extensions)|", $wgScriptPath, $dir)."/selenium-core"; |
$egResultsUrlPath = "../../tmp/results.php"; | $egResultsUrlPath = "../../tmp/results.php"; | ||
− | $egSeleniumCategory = "Selenium test suites" | + | $egSeleniumCategory = "Selenium test suites"; # Category that selenium tests will automatically be categorised in |
− | $egSeleniumTag = | + | $egSeleniumTag = 'selenium'; # Name of tags to wrap selenium tests in |
− | $egSeleniumSchdeule = array( | + | $egSeleniumSchdeule = array(); # Times each day that the enabled tests should be run |
− | $egSeleniumEnabled = | + | $egSeleniumEnabled = array(); # List of test suites which should be run on the schedule |
− | $egSeleniumLog = "MediaWiki: | + | $egSeleniumLog = "MediaWiki:Selenium log"; # Article that scheduled test runs should be logged to |
$wgSpecialPages['Selenium'] = 'SpecialSelenium'; | $wgSpecialPages['Selenium'] = 'SpecialSelenium'; | ||
Line 33: | Line 33: | ||
$wgExtensionCredits['specialpage'][] = array( | $wgExtensionCredits['specialpage'][] = array( | ||
'name' => 'Selenium', | 'name' => 'Selenium', | ||
− | 'author' => | + | 'author' => "[http://www.organicdesign.co.nz/User:Sven Sven], [http://www.organicdesign.co.nz/User:Nad Nad]", |
− | 'description' => | + | 'description' => "Incorporating [http://selenium-core.openqa.org Selenium tests] into the MediaWiki environment", |
− | 'url' => | + | 'url' => "http://www.mediawiki.org/Extension:Selenium", |
'version' => SELENIUM_VERSION | 'version' => SELENIUM_VERSION | ||
); | ); |
Revision as of 12:43, 2 August 2008
<?php /**
* Selenium extension * Template:Php * See http://www.mediawiki.org/Extension:Selenium for installation and usage details * See http://www.organicdesign.co.nz/Extension_talk:Selenium.php for development notes and disucssion * * @package MediaWiki * @subpackage Extensions * @author Marcus Davy User:Sven * @copyright © 2007 Marcus Davy * @licence GNU General Public Licence 2.0 or later */
if (!defined('MEDIAWIKI')) die('Not an entry point.');
define('SELENIUM_VERSION', '0.8.0, 2008-08-02');
$dir = dirname(__FILE__); $egSeleniumPath = preg_replace("|^.+(?=[/\\\\]extensions)|", $wgScriptPath, $dir)."/selenium-core"; $egResultsUrlPath = "../../tmp/results.php"; $egSeleniumCategory = "Selenium test suites"; # Category that selenium tests will automatically be categorised in $egSeleniumTag = 'selenium'; # Name of tags to wrap selenium tests in $egSeleniumSchdeule = array(); # Times each day that the enabled tests should be run $egSeleniumEnabled = array(); # List of test suites which should be run on the schedule $egSeleniumLog = "MediaWiki:Selenium log"; # Article that scheduled test runs should be logged to
$wgSpecialPages['Selenium'] = 'SpecialSelenium'; $wgAutoloadClasses['SpecialSelenium'] = "$dir/SpecialSelenium.php"; $wgAutoloadClasses['Selenium'] = "$dir/Selenium.class.php"; $wgExtensionFunctions[] = 'efSetupSelenium'; $wgHooks['LanguageGetMagic'][] = 'efSeleniumLanguageGetMagic'; $wgExtensionCredits['specialpage'][] = array( 'name' => 'Selenium', 'author' => "Sven, Nad", 'description' => "Incorporating Selenium tests into the MediaWiki environment", 'url' => "http://www.mediawiki.org/Extension:Selenium", 'version' => SELENIUM_VERSION );
function efSetupSelenium() { global $wgRequest, $wgOut, $egSelenium, $wgLanguageCode, $wgMessageCache;
# If requesting a suite or inidividual test, then output will be raw if ($wgRequest->getText('suite')) { $wgOut->disable(); wfResetOutputBuffers(); }
# Add the messages used by the specialpage if ($wgLanguageCode == 'en') { $wgMessageCache->addMessages(array( 'selenium' => "Selenium test management", 'selenium-select' => "Select a test suite to run", 'selenium-runmanual' => "Run tests manually", 'selenium-manage' => "Manage automatic testing schedule", 'selenium-schedule' => "Select which test suites should be run automatically at $1 each day", 'selenium-create' => "Create new tests", 'selenium-createinfo' => "Use the [$1 Selenium IDE] environrment to create new tests.", 'selenium-failinfo' => "When tests fail, the information will be appended to $1." )); }
# Add specialpage and create an instance of the class SpecialPage::addPage(new SpecialSelenium()); $egSelenium = new Selenium(); }
/**
* Needed in MediaWiki >1.8.0 for magic word hooks to work properly */
function efSeleniumLanguageGetMagic(&$magicWords, $langCode = 0) { global $egSeleniumMagic; $magicWords[$egSeleniumMagic] = array($langCode, $egSeleniumMagic); return true; }