summaryrefslogtreecommitdiff
path: root/tests/units/Validator/GroupValidatorTest.php
blob: 879f99ceaad2022d4f38297b4f3890a3f280e20f (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
<?php

require_once __DIR__.'/../Base.php';

use Kanboard\Validator\GroupValidator;

class GroupValidatorTest extends Base
{
    public function testValidateCreation()
    {
        $validator = new GroupValidator($this->container);

        $result = $validator->validateCreation(array('name' => 'Test'));
        $this->assertTrue($result[0]);

        $result = $validator->validateCreation(array('name' => ''));
        $this->assertFalse($result[0]);
    }

    public function testValidateModification()
    {
        $validator = new GroupValidator($this->container);

        $result = $validator->validateModification(array('name' => 'Test', 'id' => 1));
        $this->assertTrue($result[0]);

        $result = $validator->validateModification(array('name' => 'Test'));
        $this->assertFalse($result[0]);
    }
}