‪TYPO3CMS  10.4
IpAnonymizationUtilityTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
22 
26 class ‪IpAnonymizationUtilityTest extends UnitTestCase
27 {
28 
35  {
36  return [
37  'empty address' => ['', 1, ''],
38  'IPv4 address with mask 0' => ['192.158.130.10', 0, '192.158.130.10'],
39  'IPv4 address with mask 1' => ['192.158.130.10', 1, '192.158.130.0'],
40  'IPv4 address with mask 2' => ['192.158.130.10', 2, '192.158.0.0'],
41  'IPv4 address with fallback' => ['192.158.130.10', null, '192.158.130.0'],
42  'IPv6 address with mask 0' => ['0064:ff9b:0000:0000:0000:0000:18.52.86.120', 0, '0064:ff9b:0000:0000:0000:0000:18.52.86.120'],
43  'IPv6 address with mask 1' => ['2002:6dcd:8c74:6501:fb2:61c:ac98:6bea', 1, '2002:6dcd:8c74:6501::'],
44  'IPv6 address with mask 2' => ['2002:6dcd:8c74:6501:fb2:61c:ac98:6bea', 2, '2002:6dcd:8c74::'],
45  'IPv6 address with fallback' => ['2002:6dcd:8c74:6501:fb2:61c:ac98:6bea', null, '2002:6dcd:8c74:6501::'],
46  'IPv4-Embedded IPv6 Address' => ['::ffff:18.52.86.120', 1, '::'],
47  'anonymized IPv4 address' => ['192.158.0.0', 1, '192.158.0.0'],
48  'invalid IPv4 address given' => ['127.0.01', 1, ''],
49  'invalid IPv6 address given' => ['ffff18.52.86.120', 1, ''],
50  ];
51  }
52 
60  public function ‪anonymizeIpReturnsCorrectValue(string $address, int $mask = null, string $expected)
61  {
62  // set the default if $mask is null
63  ‪$GLOBALS['TYPO3_CONF_VARS']['SYS']['ipAnonymization'] = 1;
64  self::assertEquals($expected, ‪IpAnonymizationUtility::anonymizeIp($address, $mask));
65  }
66 
71  {
72  $this->expectException(\UnexpectedValueException::class);
73  $this->expectExceptionCode(1519739203);
74 
76  }
77 }
‪TYPO3\CMS\Core\Tests\Unit\Utility\IpAnonymizationUtilityTest\anonymizeIpReturnsCorrectValueDataProvider
‪array anonymizeIpReturnsCorrectValueDataProvider()
Definition: IpAnonymizationUtilityTest.php:34
‪TYPO3\CMS\Core\Tests\Unit\Utility\IpAnonymizationUtilityTest\anonymizeIpReturnsCorrectValue
‪anonymizeIpReturnsCorrectValue(string $address, int $mask=null, string $expected)
Definition: IpAnonymizationUtilityTest.php:60
‪TYPO3\CMS\Core\Tests\Unit\Utility
‪TYPO3\CMS\Core\Tests\Unit\Utility\IpAnonymizationUtilityTest\wrongMaskForAnonymizeIpThrowsException
‪wrongMaskForAnonymizeIpThrowsException()
Definition: IpAnonymizationUtilityTest.php:70
‪TYPO3\CMS\Core\Utility\IpAnonymizationUtility
Definition: IpAnonymizationUtility.php:26
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Core\Tests\Unit\Utility\IpAnonymizationUtilityTest
Definition: IpAnonymizationUtilityTest.php:27
‪TYPO3\CMS\Core\Utility\IpAnonymizationUtility\anonymizeIp
‪static string anonymizeIp(string $address, int $mask=null)
Definition: IpAnonymizationUtility.php:62