2015-05-24 19:32:32 +00:00
|
|
|
<?php
|
2015-09-30 17:29:14 +00:00
|
|
|
|
2015-05-24 19:32:32 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Administrator
|
|
|
|
* @subpackage com_weblinks
|
|
|
|
*
|
|
|
|
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class InstallWeblinksCest
|
|
|
|
{
|
2015-09-30 17:29:14 +00:00
|
|
|
public function installJoomla(\AcceptanceTester $I)
|
2015-07-22 11:53:07 +00:00
|
|
|
{
|
|
|
|
$I->am('Administrator');
|
2015-10-31 11:07:53 +00:00
|
|
|
$I->installJoomlaRemovingInstallationFolder();
|
2015-07-22 11:53:07 +00:00
|
|
|
$I->doAdministratorLogin();
|
2016-02-01 10:50:38 +00:00
|
|
|
$I->disableStatistics();
|
2015-07-22 11:53:07 +00:00
|
|
|
$I->setErrorReportingToDevelopment();
|
|
|
|
}
|
|
|
|
|
2015-09-30 17:29:14 +00:00
|
|
|
/**
|
|
|
|
* @depends installJoomla
|
|
|
|
*/
|
|
|
|
public function installWeblinks(\AcceptanceTester $I)
|
2015-07-29 16:23:47 +00:00
|
|
|
{
|
|
|
|
$I->doAdministratorLogin();
|
|
|
|
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
|
2015-11-01 07:44:16 +00:00
|
|
|
|
|
|
|
// URL where the package file to install is located (mostly the same as joomla-cms)
|
|
|
|
$url = $I->getConfiguration('url');
|
|
|
|
$I->installExtensionFromUrl($url . "/pkg-weblinks-current.zip");
|
2015-07-29 16:23:47 +00:00
|
|
|
$I->doAdministratorLogout();
|
|
|
|
}
|
2016-02-01 10:50:38 +00:00
|
|
|
|
2015-05-24 19:32:32 +00:00
|
|
|
}
|