summaryrefslogtreecommitdiff
path: root/tests/units/ConfigTest.php
blob: 7298936e604fb95f2befd4673920a047bf2fe902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

require_once __DIR__.'/Base.php';

use Model\Config;

class ConfigTest extends Base
{
    public function testDefaultValues()
    {
        $c = new Config($this->registry);

        $this->assertEquals('en_US', $c->get('language'));
        $this->assertEquals('UTC', $c->get('timezone'));

        $this->assertEmpty($c->get('webhooks_url_task_modification'));
        $this->assertEmpty($c->get('webhooks_url_task_creation'));
        $this->assertEmpty($c->get('default_columns'));

        $this->assertNotEmpty($c->get('webhooks_token'));
        $this->assertNotEmpty($c->get('api_token'));
    }

    public function testGet()
    {
        $c = new Config($this->registry);

        $this->assertEquals('', $c->get('default_columns'));
        $this->assertEquals('test', $c->get('default_columns', 'test'));
        $this->assertEquals(0, $c->get('default_columns', 0));
    }
}