summaryrefslogtreecommitdiffstats
path: root/tests/Components/CaseExpressionTest.php
blob: afe5e60953d2d1ba3fca4c4b833de50c7dcbd840 (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
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
<?php

namespace PhpMyAdmin\SqlParser\Tests\Components;

use PhpMyAdmin\SqlParser\Components\CaseExpression;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;

class CaseExpressionTest extends TestCase
{
    public function testParseBuild()
    {
        $caseExprQuery = 'case 1 when 1 then "Some" else "Other" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE 1 WHEN 1 THEN "Some" ELSE "Other" END'
        );
    }

    public function testParseBuild2()
    {
        $caseExprQuery = 'case when 1=1 then "India" else "Other" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE WHEN 1=1 THEN "India" ELSE "Other" END'
        );
    }

    public function testParseBuild3()
    {
        $caseExprQuery = 'case 1 when 1 then "Some" '
            . 'when 2 then "SomeOther" else "Other" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE 1 WHEN 1 THEN "Some" WHEN 2 THEN "SomeOther" ELSE "Other" END'
        );
    }

    public function testParseBuild4()
    {
        $caseExprQuery = 'case 1 when 1 then "Some" '
            . 'when 2 then "SomeOther" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE 1 WHEN 1 THEN "Some" WHEN 2 THEN "SomeOther" END'
        );
    }

    public function testParseBuild5()
    {
        $caseExprQuery = 'case when 1=1 then "Some" '
            . 'when 1=2 then "SomeOther" else "Other" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE WHEN 1=1 THEN "Some" WHEN 1=2 THEN "SomeOther" ELSE "Other" END'
        );
    }

    public function testParseBuild6()
    {
        $caseExprQuery = 'case when 1=1 then "Some" '
            . 'when 1=2 then "SomeOther" end';
        $component = CaseExpression::parse(
            new Parser(),
            $this->getTokensList($caseExprQuery));
        $this->assertEquals(
            CaseExpression::build($component),
            'CASE WHEN 1=1 THEN "Some" WHEN 1=2 THEN "SomeOther" END'
        );
    }
}