diff options
Diffstat (limited to 'tests/api/controllers/links/PostLinkTest.php')
-rw-r--r-- | tests/api/controllers/links/PostLinkTest.php | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/tests/api/controllers/links/PostLinkTest.php b/tests/api/controllers/links/PostLinkTest.php index 100a9170..d683a984 100644 --- a/tests/api/controllers/links/PostLinkTest.php +++ b/tests/api/controllers/links/PostLinkTest.php | |||
@@ -2,9 +2,9 @@ | |||
2 | 2 | ||
3 | namespace Shaarli\Api\Controllers; | 3 | namespace Shaarli\Api\Controllers; |
4 | 4 | ||
5 | |||
6 | use PHPUnit\Framework\TestCase; | 5 | use PHPUnit\Framework\TestCase; |
7 | use Shaarli\Config\ConfigManager; | 6 | use Shaarli\Config\ConfigManager; |
7 | use Shaarli\History; | ||
8 | use Slim\Container; | 8 | use Slim\Container; |
9 | use Slim\Http\Environment; | 9 | use Slim\Http\Environment; |
10 | use Slim\Http\Request; | 10 | use Slim\Http\Request; |
@@ -41,7 +41,7 @@ class PostLinkTest extends TestCase | |||
41 | protected $refDB = null; | 41 | protected $refDB = null; |
42 | 42 | ||
43 | /** | 43 | /** |
44 | * @var \History instance. | 44 | * @var HistoryController instance. |
45 | */ | 45 | */ |
46 | protected $history; | 46 | protected $history; |
47 | 47 | ||
@@ -71,12 +71,12 @@ class PostLinkTest extends TestCase | |||
71 | 71 | ||
72 | $refHistory = new \ReferenceHistory(); | 72 | $refHistory = new \ReferenceHistory(); |
73 | $refHistory->write(self::$testHistory); | 73 | $refHistory->write(self::$testHistory); |
74 | $this->history = new \History(self::$testHistory); | 74 | $this->history = new History(self::$testHistory); |
75 | 75 | ||
76 | $this->container = new Container(); | 76 | $this->container = new Container(); |
77 | $this->container['conf'] = $this->conf; | 77 | $this->container['conf'] = $this->conf; |
78 | $this->container['db'] = new \LinkDB(self::$testDatastore, true, false); | 78 | $this->container['db'] = new \Shaarli\Bookmark\LinkDB(self::$testDatastore, true, false); |
79 | $this->container['history'] = new \History(self::$testHistory); | 79 | $this->container['history'] = new History(self::$testHistory); |
80 | 80 | ||
81 | $this->controller = new Links($this->container); | 81 | $this->controller = new Links($this->container); |
82 | 82 | ||
@@ -122,17 +122,19 @@ class PostLinkTest extends TestCase | |||
122 | $data = json_decode((string) $response->getBody(), true); | 122 | $data = json_decode((string) $response->getBody(), true); |
123 | $this->assertEquals(self::NB_FIELDS_LINK, count($data)); | 123 | $this->assertEquals(self::NB_FIELDS_LINK, count($data)); |
124 | $this->assertEquals(43, $data['id']); | 124 | $this->assertEquals(43, $data['id']); |
125 | $this->assertRegExp('/[\w-_]{6}/', $data['shorturl']); | 125 | $this->assertRegExp('/[\w_-]{6}/', $data['shorturl']); |
126 | $this->assertEquals('http://domain.tld/?' . $data['shorturl'], $data['url']); | 126 | $this->assertEquals('http://domain.tld/?' . $data['shorturl'], $data['url']); |
127 | $this->assertEquals('?' . $data['shorturl'], $data['title']); | 127 | $this->assertEquals('?' . $data['shorturl'], $data['title']); |
128 | $this->assertEquals('', $data['description']); | 128 | $this->assertEquals('', $data['description']); |
129 | $this->assertEquals([], $data['tags']); | 129 | $this->assertEquals([], $data['tags']); |
130 | $this->assertEquals(false, $data['private']); | 130 | $this->assertEquals(false, $data['private']); |
131 | $this->assertTrue(new \DateTime('5 seconds ago') < \DateTime::createFromFormat(\DateTime::ATOM, $data['created'])); | 131 | $this->assertTrue( |
132 | new \DateTime('5 seconds ago') < \DateTime::createFromFormat(\DateTime::ATOM, $data['created']) | ||
133 | ); | ||
132 | $this->assertEquals('', $data['updated']); | 134 | $this->assertEquals('', $data['updated']); |
133 | 135 | ||
134 | $historyEntry = $this->history->getHistory()[0]; | 136 | $historyEntry = $this->history->getHistory()[0]; |
135 | $this->assertEquals(\History::CREATED, $historyEntry['event']); | 137 | $this->assertEquals(History::CREATED, $historyEntry['event']); |
136 | $this->assertTrue( | 138 | $this->assertTrue( |
137 | (new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime'] | 139 | (new \DateTime())->add(\DateInterval::createFromDateString('-5 seconds')) < $historyEntry['datetime'] |
138 | ); | 140 | ); |
@@ -165,13 +167,15 @@ class PostLinkTest extends TestCase | |||
165 | $data = json_decode((string) $response->getBody(), true); | 167 | $data = json_decode((string) $response->getBody(), true); |
166 | $this->assertEquals(self::NB_FIELDS_LINK, count($data)); | 168 | $this->assertEquals(self::NB_FIELDS_LINK, count($data)); |
167 | $this->assertEquals(43, $data['id']); | 169 | $this->assertEquals(43, $data['id']); |
168 | $this->assertRegExp('/[\w-_]{6}/', $data['shorturl']); | 170 | $this->assertRegExp('/[\w_-]{6}/', $data['shorturl']); |
169 | $this->assertEquals('http://' . $link['url'], $data['url']); | 171 | $this->assertEquals('http://' . $link['url'], $data['url']); |
170 | $this->assertEquals($link['title'], $data['title']); | 172 | $this->assertEquals($link['title'], $data['title']); |
171 | $this->assertEquals($link['description'], $data['description']); | 173 | $this->assertEquals($link['description'], $data['description']); |
172 | $this->assertEquals($link['tags'], $data['tags']); | 174 | $this->assertEquals($link['tags'], $data['tags']); |
173 | $this->assertEquals(true, $data['private']); | 175 | $this->assertEquals(true, $data['private']); |
174 | $this->assertTrue(new \DateTime('2 seconds ago') < \DateTime::createFromFormat(\DateTime::ATOM, $data['created'])); | 176 | $this->assertTrue( |
177 | new \DateTime('2 seconds ago') < \DateTime::createFromFormat(\DateTime::ATOM, $data['created']) | ||
178 | ); | ||
175 | $this->assertEquals('', $data['updated']); | 179 | $this->assertEquals('', $data['updated']); |
176 | } | 180 | } |
177 | 181 | ||
@@ -207,11 +211,11 @@ class PostLinkTest extends TestCase | |||
207 | $this->assertEquals(['gnu', 'media', 'web', '.hidden', 'hashtag'], $data['tags']); | 211 | $this->assertEquals(['gnu', 'media', 'web', '.hidden', 'hashtag'], $data['tags']); |
208 | $this->assertEquals(false, $data['private']); | 212 | $this->assertEquals(false, $data['private']); |
209 | $this->assertEquals( | 213 | $this->assertEquals( |
210 | \DateTime::createFromFormat(\LinkDB::LINK_DATE_FORMAT, '20130614_184135'), | 214 | \DateTime::createFromFormat(\Shaarli\Bookmark\LinkDB::LINK_DATE_FORMAT, '20130614_184135'), |
211 | \DateTime::createFromFormat(\DateTime::ATOM, $data['created']) | 215 | \DateTime::createFromFormat(\DateTime::ATOM, $data['created']) |
212 | ); | 216 | ); |
213 | $this->assertEquals( | 217 | $this->assertEquals( |
214 | \DateTime::createFromFormat(\LinkDB::LINK_DATE_FORMAT, '20130615_184230'), | 218 | \DateTime::createFromFormat(\Shaarli\Bookmark\LinkDB::LINK_DATE_FORMAT, '20130615_184230'), |
215 | \DateTime::createFromFormat(\DateTime::ATOM, $data['updated']) | 219 | \DateTime::createFromFormat(\DateTime::ATOM, $data['updated']) |
216 | ); | 220 | ); |
217 | } | 221 | } |