]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tests/api/controllers/links/DeleteLinkTest.php
Optimize and cleanup imports
[github/shaarli/Shaarli.git] / tests / api / controllers / links / DeleteLinkTest.php
CommitLineData
0843848c
A
1<?php
2
3
4namespace Shaarli\Api\Controllers;
5
dea72c71 6use Shaarli\Bookmark\LinkDB;
0843848c 7use Shaarli\Config\ConfigManager;
dea72c71 8use Shaarli\History;
0843848c
A
9use Slim\Container;
10use Slim\Http\Environment;
11use Slim\Http\Request;
12use Slim\Http\Response;
13
dea72c71 14class DeleteLinkTest extends \PHPUnit\Framework\TestCase
0843848c
A
15{
16 /**
17 * @var string datastore to test write operations
18 */
19 protected static $testDatastore = 'sandbox/datastore.php';
20
813849e5
A
21 /**
22 * @var string datastore to test write operations
23 */
24 protected static $testHistory = 'sandbox/history.php';
25
0843848c
A
26 /**
27 * @var ConfigManager instance
28 */
29 protected $conf;
30
31 /**
32 * @var \ReferenceLinkDB instance.
33 */
34 protected $refDB = null;
35
36 /**
dea72c71 37 * @var LinkDB instance.
0843848c
A
38 */
39 protected $linkDB;
40
813849e5 41 /**
dea72c71 42 * @var HistoryController instance.
813849e5
A
43 */
44 protected $history;
45
0843848c
A
46 /**
47 * @var Container instance.
48 */
49 protected $container;
50
51 /**
52 * @var Links controller instance.
53 */
54 protected $controller;
55
56 /**
57 * Before each test, instantiate a new Api with its config, plugins and links.
58 */
59 public function setUp()
60 {
61 $this->conf = new ConfigManager('tests/utils/config/configJson');
62 $this->refDB = new \ReferenceLinkDB();
63 $this->refDB->write(self::$testDatastore);
dea72c71 64 $this->linkDB = new LinkDB(self::$testDatastore, true, false);
813849e5
A
65 $refHistory = new \ReferenceHistory();
66 $refHistory->write(self::$testHistory);
dea72c71 67 $this->history = new History(self::$testHistory);
0843848c
A
68 $this->container = new Container();
69 $this->container['conf'] = $this->conf;
70 $this->container['db'] = $this->linkDB;
813849e5 71 $this->container['history'] = $this->history;
0843848c
A
72
73 $this->controller = new Links($this->container);
74 }
75
76 /**
77 * After each test, remove the test datastore.
78 */
79 public function tearDown()
80 {
81 @unlink(self::$testDatastore);
813849e5 82 @unlink(self::$testHistory);
0843848c
A
83 }
84
85 /**
86 * Test DELETE link endpoint: the link should be removed.
87 */
88 public function testDeleteLinkValid()
89 {
90 $id = '41';
91 $this->assertTrue(isset($this->linkDB[$id]));
92 $env = Environment::mock([
93 'REQUEST_METHOD' => 'DELETE',
94 ]);
95 $request = Request::createFromEnvironment($env);
96
97 $response = $this->controller->deleteLink($request, new Response(), ['id' => $id]);
98 $this->assertEquals(204, $response->getStatusCode());
99 $this->assertEmpty((string) $response->getBody());
100
dea72c71 101 $this->linkDB = new LinkDB(self::$testDatastore, true, false);
0843848c 102 $this->assertFalse(isset($this->linkDB[$id]));
813849e5
A
103
104 $historyEntry = $this->history->getHistory()[0];
dea72c71 105 $this->assertEquals(History::DELETED, $historyEntry['event']);
813849e5
A
106 $this->assertTrue(
107 (new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime']
108 );
109 $this->assertEquals($id, $historyEntry['id']);
0843848c
A
110 }
111
112 /**
113 * Test DELETE link endpoint: reach not existing ID.
114 *
dea72c71 115 * @expectedException \Shaarli\Api\Exceptions\ApiLinkNotFoundException
0843848c
A
116 */
117 public function testDeleteLink404()
118 {
119 $id = -1;
120 $this->assertFalse(isset($this->linkDB[$id]));
121 $env = Environment::mock([
122 'REQUEST_METHOD' => 'DELETE',
123 ]);
124 $request = Request::createFromEnvironment($env);
125
126 $this->controller->deleteLink($request, new Response(), ['id' => $id]);
127 }
128}