]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tests/api/controllers/InfoTest.php
application: introduce the Shaarli\Config namespace
[github/shaarli/Shaarli.git] / tests / api / controllers / InfoTest.php
CommitLineData
18e67967 1<?php
18e67967
A
2namespace Shaarli\Api\Controllers;
3
3c66e564
V
4use Shaarli\Config\ConfigManager;
5
18e67967
A
6use Slim\Container;
7use Slim\Http\Environment;
8use Slim\Http\Request;
9use Slim\Http\Response;
10
11/**
12 * Class InfoTest
13 *
14 * Test REST API controller Info.
15 *
16 * @package Api\Controllers
17 */
18class InfoTest extends \PHPUnit_Framework_TestCase
19{
20 /**
21 * @var string datastore to test write operations
22 */
23 protected static $testDatastore = 'sandbox/datastore.php';
24
25 /**
3c66e564 26 * @var ConfigManager instance
18e67967
A
27 */
28 protected $conf;
29
30 /**
31 * @var \ReferenceLinkDB instance.
32 */
33 protected $refDB = null;
34
35 /**
36 * @var Container instance.
37 */
38 protected $container;
39
40 /**
41 * @var Info controller instance.
42 */
43 protected $controller;
44
45 /**
46 * Before every test, instantiate a new Api with its config, plugins and links.
47 */
48 public function setUp()
49 {
3c66e564 50 $this->conf = new ConfigManager('tests/utils/config/configJson.json.php');
18e67967
A
51 $this->refDB = new \ReferenceLinkDB();
52 $this->refDB->write(self::$testDatastore);
53
54 $this->container = new Container();
55 $this->container['conf'] = $this->conf;
56 $this->container['db'] = new \LinkDB(self::$testDatastore, true, false);
57
58 $this->controller = new Info($this->container);
59 }
60
61 /**
62 * After every test, remove the test datastore.
63 */
64 public function tearDown()
65 {
66 @unlink(self::$testDatastore);
67 }
68
69 /**
70 * Test /info service.
71 */
72 public function testGetInfo()
73 {
74 $env = Environment::mock([
75 'REQUEST_METHOD' => 'GET',
76 ]);
77 $request = Request::createFromEnvironment($env);
78
79 $response = $this->controller->getInfo($request, new Response());
80 $this->assertEquals(200, $response->getStatusCode());
81 $data = json_decode((string) $response->getBody(), true);
82
83 $this->assertEquals(8, $data['global_counter']);
84 $this->assertEquals(2, $data['private_counter']);
85 $this->assertEquals('Shaarli', $data['settings']['title']);
86 $this->assertEquals('?', $data['settings']['header_link']);
87 $this->assertEquals('UTC', $data['settings']['timezone']);
3c66e564 88 $this->assertEquals(ConfigManager::$DEFAULT_PLUGINS, $data['settings']['enabled_plugins']);
18e67967
A
89 $this->assertEquals(false, $data['settings']['default_private_links']);
90
91 $title = 'My links';
92 $headerLink = 'http://shaarli.tld';
93 $timezone = 'Europe/Paris';
94 $enabledPlugins = array('foo', 'bar');
95 $defaultPrivateLinks = true;
96 $this->conf->set('general.title', $title);
97 $this->conf->set('general.header_link', $headerLink);
98 $this->conf->set('general.timezone', $timezone);
99 $this->conf->set('general.enabled_plugins', $enabledPlugins);
100 $this->conf->set('privacy.default_private_links', $defaultPrivateLinks);
101
102 $response = $this->controller->getInfo($request, new Response());
103 $this->assertEquals(200, $response->getStatusCode());
104 $data = json_decode((string) $response->getBody(), true);
105
106 $this->assertEquals(8, $data['global_counter']);
107 $this->assertEquals(2, $data['private_counter']);
108 $this->assertEquals($title, $data['settings']['title']);
109 $this->assertEquals($headerLink, $data['settings']['header_link']);
110 $this->assertEquals($timezone, $data['settings']['timezone']);
111 $this->assertEquals($enabledPlugins, $data['settings']['enabled_plugins']);
112 $this->assertEquals($defaultPrivateLinks, $data['settings']['default_private_links']);
113 }
114}