logger = new Logger('test'); $this->logger->pushHandler(new NullHandler()); } public function testTranslateNamespaceToPath() { $manager = new ComposerManager(implode(DIRECTORY_SEPARATOR, [__DIR__, '..'])); $namespace = 'LotGD\\Core\\Tests\\'; $this->assertEquals(__DIR__, $manager->translateNamespaceToPath($namespace)); $namespace = '\\LotGD\\Core\\Tests\\'; $this->assertEquals(__DIR__, $manager->translateNamespaceToPath($namespace)); $namespace = 'LotGD\\Core\\Tests'; $this->assertEquals(__DIR__, $manager->translateNamespaceToPath($namespace)); $namespace = 'LotGD\\Core\\Tests\\FakeModule'; $this->assertEquals(__DIR__ . DIRECTORY_SEPARATOR . 'FakeModule', $manager->translateNamespaceToPath($namespace)); $namespace = 'LotGD\\NotFound'; $this->assertNull($manager->translateNamespaceToPath($namespace)); } public function testListPackageWithRootCwd() { $manager = new ComposerManager(implode(DIRECTORY_SEPARATOR, [__DIR__, '..'])); $packageCount = count($manager->getPackages()); $this->assertGreaterThan(1, $packageCount); } public function testListPackageWithDifferentThanRootCwd() { $oldcwd = getcwd(); chdir($oldcwd . DIRECTORY_SEPARATOR . "tests"); $manager = new ComposerManager(implode(DIRECTORY_SEPARATOR, [__DIR__, '..'])); $packageCount = count($manager->getPackages()); $this->assertGreaterThan(1, $packageCount); chdir($oldcwd); } public function testGetPackageByLibraryNameWithRootCwd() { $manager = new ComposerManager(implode(DIRECTORY_SEPARATOR, [__DIR__, '..'])); $package = $manager->getPackageForLibrary("composer/composer"); $this->assertSame("composer/composer", $package->getName()); } public function testGetPackageByLibraryNameWithDifferentThanRootCwd() { $oldcwd = getcwd(); chdir($oldcwd . DIRECTORY_SEPARATOR . "tests"); $manager = new ComposerManager(implode(DIRECTORY_SEPARATOR, [__DIR__, '..'])); $package = $manager->getPackageForLibrary("composer/composer"); $this->assertSame("composer/composer", $package->getName()); chdir($oldcwd); } }