Difference between revisions of "Selenium.php"
m |
m |
||
Line 18: | Line 18: | ||
$dir = dirname(__FILE__); | $dir = dirname(__FILE__); | ||
− | $egSeleniumPath = preg_replace('|^.+(?=[/\\\\]extensions)|', $wgScriptPath, | + | $egSeleniumPath = preg_replace('|^.+(?=[/\\\\]extensions)|', $wgScriptPath, $dir).'/selenium-core'; |
$egResultsUrlPath = "../../tmp/results.php"; | $egResultsUrlPath = "../../tmp/results.php"; | ||
− | $egSeleniumCategory = "Selenium" | + | $egSeleniumCategory = "Selenium test suites" # Category that selenium tests will automatically be categorised in |
− | $egSeleniumTag = "selenium"; | + | $egSeleniumTag = "selenium"; # Name of tags to wrap selenium tests in |
+ | $egSeleniumSchdeule = array('03:00','10:30','23:20'); # Times each day that the enabled tests should be run | ||
+ | $egSeleniumEnabled = "Mediawiki:Scheduled tests"; # Article in which the test to run on the schedule are listed | ||
+ | $egSeleniumLog = "MediaWiki:Scheduled test log"; # Article that scheduled test runs should be logged to | ||
$wgSpecialPages['Selenium'] = 'SpecialSelenium'; | $wgSpecialPages['Selenium'] = 'SpecialSelenium'; | ||
Line 48: | Line 51: | ||
if ($wgLanguageCode == 'en') { | if ($wgLanguageCode == 'en') { | ||
$wgMessageCache->addMessages(array( | $wgMessageCache->addMessages(array( | ||
− | 'selenium' => "Selenium | + | 'selenium' => "Selenium test management", |
− | |||
− | |||
− | |||
'selenium-select' => "Select a test suite to run", | 'selenium-select' => "Select a test suite to run", | ||
− | |||
'selenium-runmanual' => "Run tests manually", | 'selenium-runmanual' => "Run tests manually", | ||
'selenium-manage' => "Manage automatic testing schedule", | 'selenium-manage' => "Manage automatic testing schedule", | ||
− | 'selenium-create' => "Create new tests" | + | '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]]." | ||
)); | )); | ||
} | } |
Revision as of 12:25, 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('03:00','10:30','23:20'); # Times each day that the enabled tests should be run $egSeleniumEnabled = "Mediawiki:Scheduled tests"; # Article in which the test to run on the schedule are listed $egSeleniumLog = "MediaWiki:Scheduled test 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; }