2018-10-31 09:16:15 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-31 09:16:15 +00:00
|
|
|
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
|
2019-02-17 20:41:45 +00:00
|
|
|
use Friendica\Database\DBStructure;
|
2018-10-31 09:24:07 +00:00
|
|
|
use Mockery\MockInterface;
|
|
|
|
|
2018-10-31 09:16:15 +00:00
|
|
|
/**
|
|
|
|
* Trait to mock the DBStructure connection status
|
|
|
|
*/
|
|
|
|
trait DBStructureMockTrait
|
|
|
|
{
|
2018-10-31 09:24:07 +00:00
|
|
|
/**
|
|
|
|
* @var MockInterface The mocking interface of Friendica\Database\DBStructure
|
|
|
|
*/
|
2018-10-31 09:16:15 +00:00
|
|
|
private $dbStructure;
|
|
|
|
|
2018-10-31 09:24:07 +00:00
|
|
|
/**
|
|
|
|
* Mocking DBStructure::update()
|
2019-02-17 20:41:45 +00:00
|
|
|
* @see DBStructure::update();
|
2018-10-31 09:24:07 +00:00
|
|
|
*
|
|
|
|
* @param array $args The arguments for the update call
|
|
|
|
* @param bool $return True, if the connect was successful, otherwise false
|
|
|
|
* @param null|int $times How often the method will get used
|
|
|
|
*/
|
2020-10-18 18:31:57 +00:00
|
|
|
public function mockUpdate(array $args = [], bool $return = true, int $times = null)
|
2018-10-31 09:16:15 +00:00
|
|
|
{
|
|
|
|
if (!isset($this->dbStructure)) {
|
2019-02-24 12:40:54 +00:00
|
|
|
$this->dbStructure = \Mockery::mock('alias:' . DBStructure::class);
|
2018-10-31 09:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->dbStructure
|
|
|
|
->shouldReceive('update')
|
|
|
|
->withArgs($args)
|
|
|
|
->times($times)
|
|
|
|
->andReturn($return);
|
|
|
|
}
|
|
|
|
|
2018-10-31 09:24:07 +00:00
|
|
|
/**
|
|
|
|
* Mocking DBStructure::existsTable()
|
|
|
|
*
|
2020-10-18 18:31:57 +00:00
|
|
|
* @param string $tableName The name of the table to check
|
|
|
|
* @param bool $return True, if the connect was successful, otherwise false
|
|
|
|
* @param null|int $times How often the method will get used
|
2018-10-31 09:24:07 +00:00
|
|
|
*/
|
2020-10-18 18:31:57 +00:00
|
|
|
public function mockExistsTable(string $tableName, bool $return = true, int $times = null)
|
2018-10-31 09:16:15 +00:00
|
|
|
{
|
|
|
|
if (!isset($this->dbStructure)) {
|
2019-02-24 12:40:54 +00:00
|
|
|
$this->dbStructure = \Mockery::mock('alias:' . DBStructure::class);
|
2018-10-31 09:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->dbStructure
|
|
|
|
->shouldReceive('existsTable')
|
|
|
|
->with($tableName)
|
|
|
|
->times($times)
|
|
|
|
->andReturn($return);
|
|
|
|
}
|
|
|
|
}
|