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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?php
require_once __DIR__.'/../Base.php';
use Kanboard\Model\Color;
use Kanboard\Model\Config;
class ColorTest extends Base
{
public function testFind()
{
$colorModel = new Color($this->container);
$this->assertEquals('yellow', $colorModel->find('yellow'));
$this->assertEquals('yellow', $colorModel->find('Yellow'));
$this->assertEquals('dark_grey', $colorModel->find('Dark Grey'));
$this->assertEquals('dark_grey', $colorModel->find('dark_grey'));
}
public function testGetColorProperties()
{
$colorModel = new Color($this->container);
$expected = array(
'name' => 'Light Green',
'background' => '#dcedc8',
'border' => '#689f38',
);
$this->assertEquals($expected, $colorModel->getColorProperties('light_green'));
$expected = array(
'name' => 'Yellow',
'background' => 'rgb(245, 247, 196)',
'border' => 'rgb(223, 227, 45)',
);
$this->assertEquals($expected, $colorModel->getColorProperties('foobar'));
}
public function testGetList()
{
$colorModel = new Color($this->container);
$colors = $colorModel->getList();
$this->assertCount(16, $colors);
$this->assertEquals('Yellow', $colors['yellow']);
$colors = $colorModel->getList(true);
$this->assertCount(17, $colors);
$this->assertEquals('All colors', $colors['']);
$this->assertEquals('Yellow', $colors['yellow']);
}
public function testGetDefaultColor()
{
$colorModel = new Color($this->container);
$configModel = new Config($this->container);
$this->assertEquals('yellow', $colorModel->getDefaultColor());
$this->container['memoryCache']->flush();
$this->assertTrue($configModel->save(array('default_color' => 'red')));
$this->assertEquals('red', $colorModel->getDefaultColor());
}
public function testGetDefaultColors()
{
$colorModel = new Color($this->container);
$colors = $colorModel->getDefaultColors();
$this->assertCount(16, $colors);
}
public function testGetBorderColor()
{
$colorModel = new Color($this->container);
$this->assertEquals('rgb(74, 227, 113)', $colorModel->getBorderColor('green'));
}
public function testGetBackgroundColor()
{
$colorModel = new Color($this->container);
$this->assertEquals('rgb(189, 244, 203)', $colorModel->getBackgroundColor('green'));
}
public function testGetCss()
{
$colorModel = new Color($this->container);
$css = $colorModel->getCss();
$this->assertStringStartsWith('div.color-yellow {', $css);
$this->assertStringEndsWith('td.color-amber { background-color: #ffe082}', $css);
}
}
|