2017-05-06 17:32:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace Shaarli\Api\Controllers;
|
|
|
|
|
2019-01-12 23:55:38 +01:00
|
|
|
use Shaarli\Bookmark\LinkDB;
|
2017-05-06 17:32:16 +02:00
|
|
|
use Shaarli\Config\ConfigManager;
|
2019-01-12 23:55:38 +01:00
|
|
|
use Shaarli\History;
|
2017-05-06 17:32:16 +02:00
|
|
|
use Slim\Container;
|
|
|
|
use Slim\Http\Environment;
|
|
|
|
use Slim\Http\Request;
|
|
|
|
use Slim\Http\Response;
|
|
|
|
|
2019-01-12 23:55:38 +01:00
|
|
|
class DeleteLinkTest extends \PHPUnit\Framework\TestCase
|
2017-05-06 17:32:16 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string datastore to test write operations
|
|
|
|
*/
|
|
|
|
protected static $testDatastore = 'sandbox/datastore.php';
|
|
|
|
|
2017-05-07 16:50:20 +02:00
|
|
|
/**
|
|
|
|
* @var string datastore to test write operations
|
|
|
|
*/
|
|
|
|
protected static $testHistory = 'sandbox/history.php';
|
|
|
|
|
2017-05-06 17:32:16 +02:00
|
|
|
/**
|
|
|
|
* @var ConfigManager instance
|
|
|
|
*/
|
|
|
|
protected $conf;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \ReferenceLinkDB instance.
|
|
|
|
*/
|
|
|
|
protected $refDB = null;
|
|
|
|
|
|
|
|
/**
|
2019-01-12 23:55:38 +01:00
|
|
|
* @var LinkDB instance.
|
2017-05-06 17:32:16 +02:00
|
|
|
*/
|
|
|
|
protected $linkDB;
|
|
|
|
|
2017-05-07 16:50:20 +02:00
|
|
|
/**
|
2019-01-12 23:55:38 +01:00
|
|
|
* @var HistoryController instance.
|
2017-05-07 16:50:20 +02:00
|
|
|
*/
|
|
|
|
protected $history;
|
|
|
|
|
2017-05-06 17:32:16 +02:00
|
|
|
/**
|
|
|
|
* @var Container instance.
|
|
|
|
*/
|
|
|
|
protected $container;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Links controller instance.
|
|
|
|
*/
|
|
|
|
protected $controller;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Before each test, instantiate a new Api with its config, plugins and links.
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->conf = new ConfigManager('tests/utils/config/configJson');
|
|
|
|
$this->refDB = new \ReferenceLinkDB();
|
|
|
|
$this->refDB->write(self::$testDatastore);
|
2019-01-12 23:55:38 +01:00
|
|
|
$this->linkDB = new LinkDB(self::$testDatastore, true, false);
|
2017-05-07 16:50:20 +02:00
|
|
|
$refHistory = new \ReferenceHistory();
|
|
|
|
$refHistory->write(self::$testHistory);
|
2019-01-12 23:55:38 +01:00
|
|
|
$this->history = new History(self::$testHistory);
|
2017-05-06 17:32:16 +02:00
|
|
|
$this->container = new Container();
|
|
|
|
$this->container['conf'] = $this->conf;
|
|
|
|
$this->container['db'] = $this->linkDB;
|
2017-05-07 16:50:20 +02:00
|
|
|
$this->container['history'] = $this->history;
|
2017-05-06 17:32:16 +02:00
|
|
|
|
|
|
|
$this->controller = new Links($this->container);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* After each test, remove the test datastore.
|
|
|
|
*/
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
@unlink(self::$testDatastore);
|
2017-05-07 16:50:20 +02:00
|
|
|
@unlink(self::$testHistory);
|
2017-05-06 17:32:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test DELETE link endpoint: the link should be removed.
|
|
|
|
*/
|
|
|
|
public function testDeleteLinkValid()
|
|
|
|
{
|
|
|
|
$id = '41';
|
|
|
|
$this->assertTrue(isset($this->linkDB[$id]));
|
|
|
|
$env = Environment::mock([
|
|
|
|
'REQUEST_METHOD' => 'DELETE',
|
|
|
|
]);
|
|
|
|
$request = Request::createFromEnvironment($env);
|
|
|
|
|
|
|
|
$response = $this->controller->deleteLink($request, new Response(), ['id' => $id]);
|
|
|
|
$this->assertEquals(204, $response->getStatusCode());
|
|
|
|
$this->assertEmpty((string) $response->getBody());
|
|
|
|
|
2019-01-12 23:55:38 +01:00
|
|
|
$this->linkDB = new LinkDB(self::$testDatastore, true, false);
|
2017-05-06 17:32:16 +02:00
|
|
|
$this->assertFalse(isset($this->linkDB[$id]));
|
2017-05-07 16:50:20 +02:00
|
|
|
|
|
|
|
$historyEntry = $this->history->getHistory()[0];
|
2019-01-12 23:55:38 +01:00
|
|
|
$this->assertEquals(History::DELETED, $historyEntry['event']);
|
2017-05-07 16:50:20 +02:00
|
|
|
$this->assertTrue(
|
|
|
|
(new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime']
|
|
|
|
);
|
|
|
|
$this->assertEquals($id, $historyEntry['id']);
|
2017-05-06 17:32:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test DELETE link endpoint: reach not existing ID.
|
|
|
|
*
|
2019-01-12 23:55:38 +01:00
|
|
|
* @expectedException \Shaarli\Api\Exceptions\ApiLinkNotFoundException
|
2017-05-06 17:32:16 +02:00
|
|
|
*/
|
|
|
|
public function testDeleteLink404()
|
|
|
|
{
|
|
|
|
$id = -1;
|
|
|
|
$this->assertFalse(isset($this->linkDB[$id]));
|
|
|
|
$env = Environment::mock([
|
|
|
|
'REQUEST_METHOD' => 'DELETE',
|
|
|
|
]);
|
|
|
|
$request = Request::createFromEnvironment($env);
|
|
|
|
|
|
|
|
$this->controller->deleteLink($request, new Response(), ['id' => $id]);
|
|
|
|
}
|
|
|
|
}
|