summaryrefslogtreecommitdiffstats
path: root/test/php/library/X509/Model/Behavior/IpTest.php
blob: 87c4c687a37d728688e7a9026b94f430c4ddcc58 (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
87
88
89
90
91
92
<?php

/* Icinga Web 2 X.509 Module | (c) 2023 Icinga GmbH | GPLv2 */

namespace Tests\Icinga\Modules\X509\Model\Behavior;

use Icinga\Module\X509\Model\Behavior\Ip;
use ipl\Orm\Query;
use ipl\Sql\Connection;
use PHPUnit\Framework\TestCase;

class IpTest extends TestCase
{
    protected const IPV4 = '10.211.55.32';

    protected const IPV6 = '2a01:4a0:4:2102:8a9:5103:1cba:4915';

    protected const IPV4_HEX = '0000000000000000000000000ad33720';

    protected const IPV6_HEX = '2a0104a00004210208a951031cba4915';

    protected const COLUMN = 'ip';

    public function testFromDbReturnsNullWhenNullIsPassed()
    {
        $this->assertNull($this->behavior()->retrieveProperty(null, static::COLUMN));
        $this->assertNull($this->behavior(true)->retrieveProperty(null, static::COLUMN));
    }

    public function testFromDBTransformsBinaryIpToHumanReadable()
    {
        $this->assertSame(
            static::IPV4,
            $this->behavior()->retrieveProperty(hex2bin(static::IPV4_HEX), static::COLUMN)
        );
        $this->assertSame(
            static::IPV6,
            $this->behavior()->retrieveProperty(hex2bin(static::IPV6_HEX), static::COLUMN)
        );

        $this->assertSame(
            static::IPV4,
            $this->behavior(true)->retrieveProperty(hex2bin(static::IPV4_HEX), static::COLUMN)
        );
        $this->assertSame(
            static::IPV6,
            $this->behavior(true)->retrieveProperty(hex2bin(static::IPV6_HEX), static::COLUMN)
        );
    }

    public function testToDbReturnsInvalidValueAsIs()
    {
        $this->assertNull($this->behavior()->persistProperty(null, static::COLUMN));
        $this->assertSame('*', $this->behavior()->persistProperty('*', static::COLUMN));

        $this->assertNull($this->behavior(true)->persistProperty(null, static::COLUMN));
        $this->assertSame('*', $this->behavior(true)->persistProperty('*', static::COLUMN));

        $ipv4Bin = hex2bin(static::IPV4_HEX);
        $ipv6Bin = hex2bin(static::IPV6_HEX);

        $this->assertSame($ipv4Bin, $this->behavior()->persistProperty($ipv4Bin, static::COLUMN));
        $this->assertSame($ipv6Bin, $this->behavior()->persistProperty($ipv6Bin, static::COLUMN));

        $this->assertSame($ipv4Bin, $this->behavior(true)->persistProperty($ipv4Bin, static::COLUMN));
        $this->assertSame($ipv6Bin, $this->behavior(true)->persistProperty($ipv6Bin, static::COLUMN));
    }

    public function testToDbTransformsIpToBinaryCorrectly()
    {
        $this->assertSame(hex2bin(static::IPV4_HEX), $this->behavior()->persistProperty(static::IPV4, static::COLUMN));
        $this->assertSame(hex2bin(static::IPV6_HEX), $this->behavior()->persistProperty(static::IPV6, static::COLUMN));

        $this->assertSame(
            sprintf('\\x%s', static::IPV4_HEX),
            $this->behavior(true)->persistProperty(static::IPV4, static::COLUMN)
        );
        $this->assertSame(
            sprintf('\\x%s', static::IPV6_HEX),
            $this->behavior(true)->persistProperty(static::IPV6, static::COLUMN)
        );
    }

    protected function behavior(bool $postgres = false): Ip
    {
        return (new Ip(['ip']))
            ->setQuery(
                (new Query())
                    ->setDb(new Connection(['db' => $postgres ? 'pgsql' : 'mysql']))
            );
    }
}