Skip to content

Commit 43584b6

Browse files
authored
Normalize the symbols registered (#740)
1 parent 7129a81 commit 43584b6

File tree

2 files changed

+42
-14
lines changed

2 files changed

+42
-14
lines changed

src/Symbol/SymbolRegistry.php

+29-13
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
use function Safe\preg_match;
2828
use function strtolower;
2929
use function trim;
30-
use const SORT_STRING;
3130

3231
final class SymbolRegistry
3332
{
@@ -45,11 +44,8 @@ public static function create(
4544
array $regexes = []
4645
): self {
4746
return new self(
48-
array_map(
49-
static fn (string $name) => strtolower(trim($name, '\\')),
50-
$names,
51-
),
52-
array_unique($regexes, SORT_STRING),
47+
self::normalizeNames($names),
48+
array_unique($regexes),
5349
false,
5450
);
5551
}
@@ -66,13 +62,8 @@ public static function createForConstants(
6662
array $regexes = []
6763
): self {
6864
return new self(
69-
array_map(
70-
static fn (string $name) => self::lowerCaseConstantName(
71-
trim($name, '\\'),
72-
),
73-
$names,
74-
),
75-
array_unique($regexes, SORT_STRING),
65+
self::normalizeConstantNames($names),
66+
array_unique($regexes),
7667
true,
7768
);
7869
}
@@ -151,6 +142,31 @@ public function getRegexes(): array
151142
return $this->regexes;
152143
}
153144

145+
private static function normalizeNames(array $names): array
146+
{
147+
return array_map(
148+
static fn (string $name) => strtolower(
149+
self::normalizeName($name),
150+
),
151+
$names,
152+
);
153+
}
154+
155+
private static function normalizeConstantNames(array $names): array
156+
{
157+
return array_map(
158+
static fn (string $name) => self::lowerCaseConstantName(
159+
self::normalizeName($name),
160+
),
161+
$names,
162+
);
163+
}
164+
165+
private static function normalizeName(string $name): string
166+
{
167+
return trim($name, '\\ ');
168+
}
169+
154170
/**
155171
* Transforms the constant FQ name "Acme\Foo\X" to "acme\foo\X" since the
156172
* namespace remains case-insensitive for constants regardless of whether

tests/Symbol/SymbolRegistryTest.php

+13-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public static function provideSymbols(): iterable
125125
$expected,
126126
];
127127

128-
yield '[(polluted) name only] '.$title => [
128+
yield '[(polluted with leading backslash) name only] '.$title => [
129129
$names,
130130
[],
131131
'\\'.$symbol,
@@ -227,6 +227,18 @@ private static function provideNames(): iterable
227227
'PHPUnit',
228228
false,
229229
];
230+
231+
yield 'name with extra spaces' => [
232+
[' Pest '],
233+
'Pest',
234+
true,
235+
];
236+
237+
yield 'name with extra backslashes' => [
238+
['\\Pest\\'],
239+
'Pest',
240+
true,
241+
];
230242
}
231243

232244
private static function provideRegex(): iterable

0 commit comments

Comments
 (0)