‪TYPO3CMS  ‪main
DocumentTypeExclusionRestrictionTest.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 
20 use PHPUnit\Framework\Attributes\DataProvider;
21 use PHPUnit\Framework\Attributes\Test;
23 
25 {
27  {
28  return [
29  'build with one parameter' => [
30  [1],
31  '"pages"."doktype" NOT IN (1)',
32  ],
33  'build with multiple parameter' => [
34  [1, 4, 100],
35  '"pages"."doktype" NOT IN (1, 4, 100)',
36  ],
37  'build with int parameter' => [
38  1,
39  '"pages"."doktype" NOT IN (1)',
40  ],
41  ];
42  }
43 
44  #[DataProvider('buildRestrictionsAddsDoktypeWhereClauseDataProvider')]
45  #[Test]
46  public function ‪buildRestrictionsAddsDoktypeWhereClause($excludedDocumentTypes, string $expected): void
47  {
48  $subject = new ‪DocumentTypeExclusionRestriction($excludedDocumentTypes);
49  $expression = $subject->buildExpression(['pages' => 'pages'], $this->expressionBuilder);
50  self::assertSame($expected, (string)$expression);
51  }
52 }
‪TYPO3\CMS\Core\Database\Query\Restriction\DocumentTypeExclusionRestriction
Definition: DocumentTypeExclusionRestriction.php:27
‪TYPO3\CMS\Core\Tests\Unit\Database\Query\Restriction\DocumentTypeExclusionRestrictionTest\buildRestrictionsAddsDoktypeWhereClauseDataProvider
‪static buildRestrictionsAddsDoktypeWhereClauseDataProvider()
Definition: DocumentTypeExclusionRestrictionTest.php:26
‪TYPO3\CMS\Core\Tests\Unit\Database\Query\Restriction
Definition: AbstractRestrictionContainerTest.php:18
‪TYPO3\CMS\Core\Tests\Unit\Database\Query\Restriction\DocumentTypeExclusionRestrictionTest
Definition: DocumentTypeExclusionRestrictionTest.php:25
‪TYPO3\CMS\Core\Tests\Unit\Database\Query\Restriction\AbstractRestrictionTestCase
Definition: AbstractRestrictionTestCase.php:27
‪TYPO3\CMS\Core\Tests\Unit\Database\Query\Restriction\DocumentTypeExclusionRestrictionTest\buildRestrictionsAddsDoktypeWhereClause
‪buildRestrictionsAddsDoktypeWhereClause($excludedDocumentTypes, string $expected)
Definition: DocumentTypeExclusionRestrictionTest.php:46