|
6 | 6 |
|
7 | 7 | use PHPUnit\Framework\TestCase;
|
8 | 8 | use Sabberworm\CSS\Comment\Commentable;
|
| 9 | +use Sabberworm\CSS\CSSList\AtRuleBlockList; |
9 | 10 | use Sabberworm\CSS\CSSList\CSSList;
|
| 11 | +use Sabberworm\CSS\Property\Charset; |
| 12 | +use Sabberworm\CSS\Property\Import; |
10 | 13 | use Sabberworm\CSS\Renderable;
|
| 14 | +use Sabberworm\CSS\RuleSet\DeclarationBlock; |
11 | 15 | use Sabberworm\CSS\Tests\Unit\CSSList\Fixtures\ConcreteCSSBlockList;
|
| 16 | +use Sabberworm\CSS\Value\CSSString; |
| 17 | +use Sabberworm\CSS\Value\URL; |
12 | 18 |
|
13 | 19 | /**
|
14 | 20 | * @covers \Sabberworm\CSS\CSSList\CSSBlockList
|
@@ -45,4 +51,92 @@ public function isCSSList(): void
|
45 | 51 |
|
46 | 52 | self::assertInstanceOf(CSSList::class, $subject);
|
47 | 53 | }
|
| 54 | + |
| 55 | + /** |
| 56 | + * @test |
| 57 | + */ |
| 58 | + public function getAllDeclarationBlocksForNoContentsReturnsEmptyArray(): void |
| 59 | + { |
| 60 | + $subject = new ConcreteCSSBlockList(); |
| 61 | + |
| 62 | + self::assertSame([], $subject->getAllDeclarationBlocks()); |
| 63 | + } |
| 64 | + |
| 65 | + /** |
| 66 | + * @test |
| 67 | + */ |
| 68 | + public function getAllDeclarationBlocksCanReturnOneDirectDeclarationBlockContent(): void |
| 69 | + { |
| 70 | + $subject = new ConcreteCSSBlockList(); |
| 71 | + |
| 72 | + $declarationBlock = new DeclarationBlock(); |
| 73 | + $subject->setContents([$declarationBlock]); |
| 74 | + |
| 75 | + $result = $subject->getAllDeclarationBlocks(); |
| 76 | + |
| 77 | + self::assertSame([$declarationBlock], $result); |
| 78 | + } |
| 79 | + |
| 80 | + /** |
| 81 | + * @test |
| 82 | + */ |
| 83 | + public function getAllDeclarationBlocksCanReturnMultipleDirectDeclarationBlockContents(): void |
| 84 | + { |
| 85 | + $subject = new ConcreteCSSBlockList(); |
| 86 | + |
| 87 | + $declarationBlock1 = new DeclarationBlock(); |
| 88 | + $declarationBlock2 = new DeclarationBlock(); |
| 89 | + $subject->setContents([$declarationBlock1, $declarationBlock2]); |
| 90 | + |
| 91 | + $result = $subject->getAllDeclarationBlocks(); |
| 92 | + |
| 93 | + self::assertSame([$declarationBlock1, $declarationBlock2], $result); |
| 94 | + } |
| 95 | + |
| 96 | + /** |
| 97 | + * @test |
| 98 | + */ |
| 99 | + public function getAllDeclarationBlocksReturnsDeclarationBlocksWithinAtRuleBlockList(): void |
| 100 | + { |
| 101 | + $subject = new ConcreteCSSBlockList(); |
| 102 | + |
| 103 | + $declarationBlock = new DeclarationBlock(); |
| 104 | + $atRuleBlockList = new AtRuleBlockList('media'); |
| 105 | + $atRuleBlockList->setContents([$declarationBlock]); |
| 106 | + $subject->setContents([$atRuleBlockList]); |
| 107 | + |
| 108 | + $result = $subject->getAllDeclarationBlocks(); |
| 109 | + |
| 110 | + self::assertSame([$declarationBlock], $result); |
| 111 | + } |
| 112 | + |
| 113 | + /** |
| 114 | + * @test |
| 115 | + */ |
| 116 | + public function getAllDeclarationBlocksIgnoresImport(): void |
| 117 | + { |
| 118 | + $subject = new ConcreteCSSBlockList(); |
| 119 | + |
| 120 | + $import = new Import(new URL(new CSSString('https://www.example.com/')), ''); |
| 121 | + $subject->setContents([$import]); |
| 122 | + |
| 123 | + $result = $subject->getAllDeclarationBlocks(); |
| 124 | + |
| 125 | + self::assertSame([], $result); |
| 126 | + } |
| 127 | + |
| 128 | + /** |
| 129 | + * @test |
| 130 | + */ |
| 131 | + public function getAllDeclarationBlocksIgnoresCharset(): void |
| 132 | + { |
| 133 | + $subject = new ConcreteCSSBlockList(); |
| 134 | + |
| 135 | + $charset = new Charset(new CSSString('UTF-8')); |
| 136 | + $subject->setContents([$charset]); |
| 137 | + |
| 138 | + $result = $subject->getAllDeclarationBlocks(); |
| 139 | + |
| 140 | + self::assertSame([], $result); |
| 141 | + } |
48 | 142 | }
|
0 commit comments