Skip to content
This repository was archived by the owner on Feb 14, 2021. It is now read-only.

allowing namespaces containing Spec like Specification (fix #5) #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/PhpSpec/Symfony2Extension/Locator/PSR0Locator.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ public function findResources($query)
private function createResourceFromSpecFile($path)
{
$relativePath = substr($path, strlen($this->srcPath), -4);
$relativePath = str_replace('Spec', '', $relativePath);
$relativePath = str_replace('/Spec/', '//', $relativePath);
if (strrpos($relativePath, 'Spec') == strlen($relativePath) - 4) {
$relativePath = substr($relativePath, 0, -4);
}

return $this->createResource($relativePath);
}
Expand Down Expand Up @@ -208,7 +211,10 @@ public function supportsClass($classname)
public function createResource($classname)
{
$classname = str_replace('/', '\\', $classname);
$classname = str_replace(array($this->specSubNamespace, 'Spec'), '', $classname);
$classname = str_replace(array('\\Spec\\', '\\'.$this->specSubNamespace.'\\'), '\\\\', $classname);
if (strrpos($classname, 'Spec') == strlen($classname) - 4) {
$classname = substr($classname, 0, -4);
}
$classname = str_replace('\\\\', '\\', $classname);

if ('' === $this->srcNamespace || 0 === strpos($classname, $this->srcNamespace)) {
Expand Down