2015-03-29 10:53:10 +02:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
namespace Tests\Wallabag\ApiBundle\Controller;
|
2015-03-29 10:53:10 +02:00
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
|
2015-03-29 10:53:10 +02:00
|
|
|
|
2015-11-01 23:42:52 +01:00
|
|
|
class WallabagRestControllerTest extends WallabagApiTestCase
|
2015-03-29 10:53:10 +02:00
|
|
|
{
|
2016-03-08 09:22:25 +01:00
|
|
|
public function testGetVersion()
|
|
|
|
{
|
2017-06-02 10:19:33 +02:00
|
|
|
// create a new client instead of using $this->client to be sure client isn't authenticated
|
|
|
|
$client = static::createClient();
|
|
|
|
$client->request('GET', '/api/version');
|
2016-03-07 15:16:27 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-03-07 15:16:27 +01:00
|
|
|
|
2017-06-02 10:19:33 +02:00
|
|
|
$content = json_decode($client->getResponse()->getContent(), true);
|
2016-03-07 15:16:27 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame($client->getContainer()->getParameter('wallabag_core.version'), $content);
|
2016-03-07 15:16:27 +01:00
|
|
|
}
|
2015-03-29 10:53:10 +02:00
|
|
|
}
|