4 namespace Shaarli\Api\Controllers
;
6 use Shaarli\Config\ConfigManager
;
8 use Slim\Http\Environment
;
10 use Slim\Http\Response
;
12 class DeleteLinkTest
extends \PHPUnit_Framework_TestCase
15 * @var string datastore to test write operations
17 protected static $testDatastore = 'sandbox/datastore.php';
20 * @var string datastore to test write operations
22 protected static $testHistory = 'sandbox/history.php';
25 * @var ConfigManager instance
30 * @var \ReferenceLinkDB instance.
32 protected $refDB = null;
35 * @var \LinkDB instance.
40 * @var \History instance.
45 * @var Container instance.
50 * @var Links controller instance.
52 protected $controller;
55 * Before each test, instantiate a new Api with its config, plugins and links.
57 public function setUp()
59 $this->conf
= new ConfigManager('tests/utils/config/configJson');
60 $this->refDB
= new \
ReferenceLinkDB();
61 $this->refDB
->write(self
::$testDatastore);
62 $this->linkDB
= new \
LinkDB(self
::$testDatastore, true, false);
63 $refHistory = new \
ReferenceHistory();
64 $refHistory->write(self
::$testHistory);
65 $this->history
= new \
History(self
::$testHistory);
66 $this->container
= new Container();
67 $this->container
['conf'] = $this->conf
;
68 $this->container
['db'] = $this->linkDB
;
69 $this->container
['history'] = $this->history
;
71 $this->controller
= new Links($this->container
);
75 * After each test, remove the test datastore.
77 public function tearDown()
79 @unlink(self
::$testDatastore);
80 @unlink(self
::$testHistory);
84 * Test DELETE link endpoint: the link should be removed.
86 public function testDeleteLinkValid()
89 $this->assertTrue(isset($this->linkDB
[$id]));
90 $env = Environment
::mock([
91 'REQUEST_METHOD' => 'DELETE',
93 $request = Request
::createFromEnvironment($env);
95 $response = $this->controller
->deleteLink($request, new Response(), ['id' => $id]);
96 $this->assertEquals(204, $response->getStatusCode());
97 $this->assertEmpty((string) $response->getBody());
99 $this->linkDB
= new \
LinkDB(self
::$testDatastore, true, false);
100 $this->assertFalse(isset($this->linkDB
[$id]));
102 $historyEntry = $this->history
->getHistory()[0];
103 $this->assertEquals(\History
::DELETED
, $historyEntry['event']);
105 (new \
DateTime())->add(\DateInterval
::createFromDateString('-5 seconds')) < $historyEntry['datetime']
107 $this->assertEquals($id, $historyEntry['id']);
111 * Test DELETE link endpoint: reach not existing ID.
113 * @expectedException Shaarli\Api\Exceptions\ApiLinkNotFoundException
115 public function testDeleteLink404()
118 $this->assertFalse(isset($this->linkDB
[$id]));
119 $env = Environment
::mock([
120 'REQUEST_METHOD' => 'DELETE',
122 $request = Request
::createFromEnvironment($env);
124 $this->controller
->deleteLink($request, new Response(), ['id' => $id]);