-
Thomas Steur a rédigéThomas Steur a rédigé
UITest.php 13,03 Kio
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
use Piwik\Access;
use Piwik\AssetManager;
use Piwik\Date;
use Piwik\Db;
use Piwik\DbHelper;
use Piwik\Plugins\VisitsSummary\API;
use Piwik\Plugins\UsersManager\API as UsersManagerApi;
use Piwik\ArchiveProcessor\Rules;
abstract class UITest extends IntegrationTestCase
{
const IMAGE_TYPE = 'png';
const CAPTURE_PROGRAM = 'phantomjs';
const SCREENSHOT_GROUP_SIZE = 12;
const DEBUG_IMAGE_MAGICK_COMPARE = true;
private static $recursiveProxyLinkNames = array('libs', 'plugins', 'tests');
private static $imageMagickAvailable = false;
public static $failureScreenshotNames = array();
public static function createAccessInstance()
{
Access::setSingletonInstance($access = new Test_Access_OverrideLogin());
\Piwik\Piwik::postEvent('Request.initAuthenticationObject');
}
public static function setUpBeforeClass()
{
if (self::CAPTURE_PROGRAM == 'slimerjs'
&& !self::isSlimerJsAvailable()
) {
self::markTestSkipped("slimerjs is not available, skipping UI integration tests. "
. "(install by downloading http://slimerjs.org/download.html)");
} else if (self::CAPTURE_PROGRAM == 'phantomjs'
&& !self::isPhantomJsAvailable()
) {
self::markTestSkipped("phantomjs is not available, skipping UI integration tests. "
. "(install by downloading http://phantomjs.org/download.html)");
}
parent::setUpBeforeClass();
DbHelper::createAnonymousUser();
UsersManagerApi::getInstance()->addUser('superUserLogin', 'test', 'hello2@example.org');
UsersManagerApi::getInstance()->setSuperUserAccess('superUserLogin', true);
AssetManager::getInstance()->removeMergedAssets();
// launch archiving so tests don't run out of time
$date = Date::factory(static::$fixture->dateTime)->toString();
API::getInstance()->get(static::$fixture->idSite, 'year', $date);
// make sure processed & expected dirs exist
self::makeDirsAndLinks();
// run slimerjs/phantomjs w/ all urls so we only invoke it once per 25 entries (travis needs
// there to be output)
$urlsToTest = static::getUrlsForTesting();
reset($urlsToTest);
for ($i = 0; $i < count($urlsToTest); $i += self::SCREENSHOT_GROUP_SIZE) {
$urls = array();