2015-05-24 19:32:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This is project's console commands configuration for Robo task runner.
|
|
|
|
*
|
|
|
|
* Download robo.phar from http://robo.li/robo.phar and type in the root of the repo: $ php robo.phar
|
|
|
|
* Or do: $ composer update, and afterwards you will be able to execute robo like $ php vendor/bin/robo
|
|
|
|
*
|
|
|
|
* @see http://robo.li/
|
|
|
|
*/
|
|
|
|
|
2015-05-30 20:11:54 +00:00
|
|
|
require_once 'vendor/autoload.php';
|
2015-05-24 19:32:32 +00:00
|
|
|
|
|
|
|
class RoboFile extends \Robo\Tasks
|
|
|
|
{
|
2015-05-30 20:11:54 +00:00
|
|
|
// Load tasks from composer, see composer.json
|
|
|
|
use \joomla_projects\robo\loadTasks;
|
2015-05-24 19:32:32 +00:00
|
|
|
|
2015-05-30 19:31:14 +00:00
|
|
|
private $extension = '';
|
2015-05-30 20:11:54 +00:00
|
|
|
|
|
|
|
/**
|
2015-06-11 15:34:33 +00:00
|
|
|
* Set the Execute extension for Windows Operating System
|
2015-05-30 20:11:54 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2015-05-30 20:17:14 +00:00
|
|
|
*/
|
2015-06-11 15:34:33 +00:00
|
|
|
private function setExecExtension()
|
2015-05-30 20:11:54 +00:00
|
|
|
{
|
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
|
|
|
|
{
|
2015-05-30 19:31:14 +00:00
|
|
|
$this->extension = '.exe';
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 20:11:54 +00:00
|
|
|
|
|
|
|
/**
|
2015-06-09 11:53:47 +00:00
|
|
|
* Executes all the Selenium System Tests in a suite on your machine
|
2015-05-30 20:11:54 +00:00
|
|
|
*
|
2015-06-09 11:53:47 +00:00
|
|
|
* @param string $seleniumPath Optional path to selenium-standalone-server-x.jar
|
|
|
|
* @param string $suite Optional, the name of the tests suite
|
2015-05-30 20:11:54 +00:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-06-09 11:53:47 +00:00
|
|
|
public function runTests($seleniumPath = null, $suite = 'acceptance')
|
2015-05-30 20:11:54 +00:00
|
|
|
{
|
2015-05-30 19:31:14 +00:00
|
|
|
$this->setExecExtension();
|
2015-05-30 20:11:54 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->createTestingSite();
|
2015-05-30 20:11:54 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->getComposer();
|
2015-05-30 20:11:54 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->taskComposerInstall()->run();
|
2015-05-30 20:11:54 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->runSelenium();
|
2015-05-24 19:32:32 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->_exec('php' . $this->extension . ' vendor/bin/codecept build');
|
2015-05-24 19:32:32 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->taskCodecept()
|
|
|
|
->arg('--steps')
|
|
|
|
->arg('--debug')
|
|
|
|
->arg('--fail-fast')
|
|
|
|
->arg('tests/acceptance/install/')
|
2015-05-30 20:11:54 +00:00
|
|
|
->run()
|
|
|
|
->stopOnFail();
|
2015-05-24 19:32:32 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->taskCodecept()
|
|
|
|
->arg('--steps')
|
|
|
|
->arg('--debug')
|
|
|
|
->arg('--fail-fast')
|
|
|
|
->arg('tests/acceptance/administrator/')
|
|
|
|
->run()
|
|
|
|
->stopOnFail();
|
2015-05-30 20:11:54 +00:00
|
|
|
|
|
|
|
$this->taskCodecept()
|
|
|
|
->arg('--steps')
|
|
|
|
->arg('--debug')
|
2015-09-30 15:20:31 +00:00
|
|
|
->arg('--fail-fast')
|
|
|
|
->arg('tests/acceptance/frontend/')
|
2015-05-30 20:11:54 +00:00
|
|
|
->run()
|
|
|
|
->stopOnFail();
|
|
|
|
|
|
|
|
// Kill selenium server
|
|
|
|
// $this->_exec('curl http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer');
|
|
|
|
|
|
|
|
/*
|
|
|
|
// Uncomment this lines if you need to debug selenium errors
|
|
|
|
$seleniumErrors = file_get_contents('selenium.log');
|
|
|
|
if ($seleniumErrors) {
|
|
|
|
$this->say('Printing Selenium Log files');
|
|
|
|
$this->say('------ selenium.log (start) ---------');
|
|
|
|
$this->say($seleniumErrors);
|
|
|
|
$this->say('------ selenium.log (end) -----------');
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
2015-06-09 11:53:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes a specific Selenium System Tests in your machine
|
|
|
|
*
|
|
|
|
* @param string $seleniumPath Optional path to selenium-standalone-server-x.jar
|
|
|
|
* @param string $pathToTestFile Optional name of the test to be run
|
|
|
|
* @param string $suite Optional name of the suite containing the tests, Acceptance by default.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-09-30 15:20:31 +00:00
|
|
|
public function runTest($pathToTestFile = null, $suite = 'acceptance')
|
2015-06-09 11:53:47 +00:00
|
|
|
{
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->runSelenium();
|
2015-06-09 11:53:47 +00:00
|
|
|
|
|
|
|
// Make sure to Run the Build Command to Generate AcceptanceTester
|
|
|
|
$this->_exec("php vendor/bin/codecept build");
|
|
|
|
|
|
|
|
if (!$pathToTestFile)
|
|
|
|
{
|
|
|
|
$this->say('Available tests in the system:');
|
2015-09-30 15:20:31 +00:00
|
|
|
|
|
|
|
$iterator = new RecursiveIteratorIterator(
|
|
|
|
new RecursiveDirectoryIterator(
|
|
|
|
'tests/' . $suite,
|
|
|
|
RecursiveDirectoryIterator::SKIP_DOTS
|
|
|
|
),
|
|
|
|
RecursiveIteratorIterator::SELF_FIRST
|
|
|
|
);
|
|
|
|
|
|
|
|
$tests = array();
|
|
|
|
|
|
|
|
$iterator->rewind();
|
2015-06-09 11:53:47 +00:00
|
|
|
$i = 1;
|
2015-06-09 17:10:05 +00:00
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
while ($iterator->valid())
|
2015-06-09 11:53:47 +00:00
|
|
|
{
|
2015-09-30 15:20:31 +00:00
|
|
|
if (strripos($iterator->getSubPathName(), 'cept.php')
|
|
|
|
|| strripos($iterator->getSubPathName(), 'cest.php'))
|
2015-06-09 11:53:47 +00:00
|
|
|
{
|
2015-09-30 15:20:31 +00:00
|
|
|
$this->say('[' . $i . '] ' . $iterator->getSubPathName());
|
|
|
|
$tests[$i] = $iterator->getSubPathName();
|
2015-06-09 11:53:47 +00:00
|
|
|
$i++;
|
|
|
|
}
|
2015-09-30 15:20:31 +00:00
|
|
|
|
|
|
|
$iterator->next();
|
2015-06-09 11:53:47 +00:00
|
|
|
}
|
2015-06-09 17:10:05 +00:00
|
|
|
|
2015-06-09 11:53:47 +00:00
|
|
|
$this->say('');
|
2015-09-30 15:20:31 +00:00
|
|
|
$testNumber = $this->ask('Type the number of the test in the list that you want to run...');
|
|
|
|
$test = $tests[$testNumber];
|
2015-06-09 11:53:47 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 15:20:31 +00:00
|
|
|
$pathToTestFile = 'tests/' . $suite . '/' . $test;
|
|
|
|
|
2015-06-09 11:53:47 +00:00
|
|
|
$this->taskCodecept()
|
|
|
|
->test($pathToTestFile)
|
|
|
|
->arg('--steps')
|
|
|
|
->arg('--debug')
|
|
|
|
->run()
|
|
|
|
->stopOnFail();
|
|
|
|
|
|
|
|
// Kill selenium server
|
|
|
|
// $this->_exec('curl http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a testing Joomla site for running the tests (use it before run:test)
|
|
|
|
*/
|
|
|
|
public function createTestingSite()
|
|
|
|
{
|
|
|
|
// Get Joomla Clean Testing sites
|
|
|
|
if (is_dir('tests/joomla-cms3'))
|
|
|
|
{
|
|
|
|
$this->taskDeleteDir('tests/joomla-cms3')->run();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_exec('git' . $this->extension . ' clone -b staging --single-branch --depth 1 https://github.com/joomla/joomla-cms.git tests/joomla-cms3');
|
|
|
|
$this->say('Joomla CMS site created at tests/joomla-cms3');
|
|
|
|
}
|
2015-09-30 15:20:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs Selenium Standalone Server.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function runSelenium()
|
|
|
|
{
|
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')
|
|
|
|
{
|
|
|
|
$this->_exec("vendor/bin/selenium-server-standalone >> selenium.log 2>&1 &");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->_exec("START java.exe -jar .\\vendor\\joomla-projects\\selenium-server-standalone\\bin\\selenium-server-standalone.jar");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
|
|
|
|
{
|
|
|
|
sleep(10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->taskWaitForSeleniumStandaloneServer()
|
|
|
|
->run()
|
|
|
|
->stopOnFail();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Downloads Composer
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function getComposer()
|
|
|
|
{
|
|
|
|
// Make sure we have Composer
|
|
|
|
if (!file_exists('./composer.phar'))
|
|
|
|
{
|
|
|
|
$this->_exec('curl --retry 3 --retry-delay 5 -sS https://getcomposer.org/installer | php');
|
|
|
|
}
|
|
|
|
}
|
2015-06-09 17:10:05 +00:00
|
|
|
}
|