2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2016-10-03 11:17:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Repository\Vcs;
|
|
|
|
|
|
|
|
use Composer\Repository\Vcs\HgDriver;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2016-10-03 11:17:07 +00:00
|
|
|
use Composer\Util\Filesystem;
|
|
|
|
use Composer\Config;
|
|
|
|
|
|
|
|
class HgDriverTest extends TestCase
|
|
|
|
{
|
2021-10-16 08:16:06 +00:00
|
|
|
/** @var \Composer\IO\IOInterface&\PHPUnit\Framework\MockObject\MockObject */
|
2016-10-03 11:17:07 +00:00
|
|
|
private $io;
|
2021-10-16 08:16:06 +00:00
|
|
|
/** @var Config */
|
2016-10-03 11:17:07 +00:00
|
|
|
private $config;
|
2021-10-16 08:16:06 +00:00
|
|
|
/** @var string */
|
2016-10-03 11:17:07 +00:00
|
|
|
private $home;
|
|
|
|
|
2021-12-08 16:03:05 +00:00
|
|
|
public function setUp(): void
|
2016-10-03 11:17:07 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2016-10-03 11:17:07 +00:00
|
|
|
$this->home = $this->getUniqueTmpDirectory();
|
|
|
|
$this->config = new Config();
|
|
|
|
$this->config->merge(array(
|
|
|
|
'config' => array(
|
|
|
|
'home' => $this->home,
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
protected function tearDown(): void
|
2016-10-03 11:17:07 +00:00
|
|
|
{
|
2021-12-09 16:09:07 +00:00
|
|
|
parent::tearDown();
|
2016-10-03 11:17:07 +00:00
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->removeDirectory($this->home);
|
|
|
|
}
|
|
|
|
|
2016-10-03 11:35:48 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider supportsDataProvider
|
2021-10-27 13:29:52 +00:00
|
|
|
*
|
|
|
|
* @param string $repositoryUrl
|
2016-10-03 11:35:48 +00:00
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
public function testSupports(string $repositoryUrl): void
|
2016-10-03 11:17:07 +00:00
|
|
|
{
|
|
|
|
$this->assertTrue(
|
2016-10-03 11:35:48 +00:00
|
|
|
HgDriver::supports($this->io, $this->config, $repositoryUrl)
|
2016-10-03 11:17:07 +00:00
|
|
|
);
|
2016-10-03 11:35:48 +00:00
|
|
|
}
|
2016-10-03 11:17:07 +00:00
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public function supportsDataProvider(): array
|
2016-10-03 11:35:48 +00:00
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('ssh://bitbucket.org/user/repo'),
|
|
|
|
array('ssh://hg@bitbucket.org/user/repo'),
|
|
|
|
array('ssh://user@bitbucket.org/user/repo'),
|
|
|
|
array('https://bitbucket.org/user/repo'),
|
|
|
|
array('https://user@bitbucket.org/user/repo'),
|
2016-10-03 11:17:07 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|