Skip to content

Commit ae0d883

Browse files
committed
[TASK] Move up getAllDeclarationBlocks to CSSBlockList
Move this method up without any changes to the method or its callers. We'll clean this up in later changes. Part of #994.
1 parent b3abf1a commit ae0d883

File tree

4 files changed

+107
-245
lines changed

4 files changed

+107
-245
lines changed

src/CSSList/CSSBlockList.php

+13
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,19 @@
2020
*/
2121
abstract class CSSBlockList extends CSSList
2222
{
23+
/**
24+
* Gets all `DeclarationBlock` objects recursively, no matter how deeply nested the selectors are.
25+
*
26+
* @return array<int, DeclarationBlock>
27+
*/
28+
public function getAllDeclarationBlocks(): array
29+
{
30+
/** @var array<int, DeclarationBlock> $result */
31+
$result = [];
32+
$this->allDeclarationBlocks($result);
33+
return $result;
34+
}
35+
2336
/**
2437
* @param array<int, DeclarationBlock> $result
2538
*/

src/CSSList/Document.php

-14
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use Sabberworm\CSS\Parsing\ParserState;
99
use Sabberworm\CSS\Parsing\SourceException;
1010
use Sabberworm\CSS\Property\Selector;
11-
use Sabberworm\CSS\RuleSet\DeclarationBlock;
1211
use Sabberworm\CSS\RuleSet\RuleSet;
1312
use Sabberworm\CSS\Value\Value;
1413

@@ -30,19 +29,6 @@ public static function parse(ParserState $parserState): Document
3029
return $oDocument;
3130
}
3231

33-
/**
34-
* Gets all `DeclarationBlock` objects recursively, no matter how deeply nested the selectors are.
35-
*
36-
* @return array<int, DeclarationBlock>
37-
*/
38-
public function getAllDeclarationBlocks(): array
39-
{
40-
/** @var array<int, DeclarationBlock> $result */
41-
$result = [];
42-
$this->allDeclarationBlocks($result);
43-
return $result;
44-
}
45-
4632
/**
4733
* Returns all `RuleSet` objects recursively found in the tree, no matter how deeply nested the rule sets are.
4834
*

tests/Unit/CSSList/CSSBlockListTest.php

+94
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@
66

77
use PHPUnit\Framework\TestCase;
88
use Sabberworm\CSS\Comment\Commentable;
9+
use Sabberworm\CSS\CSSList\AtRuleBlockList;
910
use Sabberworm\CSS\CSSList\CSSList;
11+
use Sabberworm\CSS\Property\Charset;
12+
use Sabberworm\CSS\Property\Import;
1013
use Sabberworm\CSS\Renderable;
14+
use Sabberworm\CSS\RuleSet\DeclarationBlock;
1115
use Sabberworm\CSS\Tests\Unit\CSSList\Fixtures\ConcreteCSSBlockList;
16+
use Sabberworm\CSS\Value\CSSString;
17+
use Sabberworm\CSS\Value\URL;
1218

1319
/**
1420
* @covers \Sabberworm\CSS\CSSList\CSSBlockList
@@ -45,4 +51,92 @@ public function isCSSList(): void
4551

4652
self::assertInstanceOf(CSSList::class, $subject);
4753
}
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+
}
48142
}

0 commit comments

Comments
 (0)