1
0
Fork 0
composer/tests/Composer/Test/Repository/Vcs/FossilDriverTest.php

71 lines
1.7 KiB
PHP
Raw Normal View History

2016-06-25 01:09:49 +00:00
<?php
/*
* 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\FossilDriver;
use Composer\Config;
use Composer\Test\TestCase;
2016-06-25 01:09:49 +00:00
use Composer\Util\Filesystem;
class FossilDriverTest extends TestCase
{
2021-10-16 08:16:06 +00:00
/**
* @var string
*/
2016-06-25 01:09:49 +00:00
protected $home;
2021-10-16 08:16:06 +00:00
/**
* @var Config
*/
2016-06-25 01:09:49 +00:00
protected $config;
2021-12-08 16:03:05 +00:00
public function setUp(): void
2016-06-25 01:09:49 +00:00
{
$this->home = $this->getUniqueTmpDirectory();
$this->config = new Config();
$this->config->merge(array(
'config' => array(
'home' => $this->home,
),
));
}
protected function tearDown(): void
2016-06-25 01:09:49 +00:00
{
parent::tearDown();
2016-06-25 01:09:49 +00:00
$fs = new Filesystem();
$fs->removeDirectory($this->home);
}
2022-02-21 12:42:28 +00:00
public static function supportProvider(): array
2016-06-25 01:09:49 +00:00
{
return array(
array('http://fossil.kd2.org/kd2fw/', true),
array('https://chiselapp.com/user/rkeene/repository/flint/index', true),
array('ssh://fossil.kd2.org/kd2fw.fossil', true),
);
}
/**
* @dataProvider supportProvider
*
* @param string $url
* @param bool $assertion
2016-06-25 01:09:49 +00:00
*/
public function testSupport($url, $assertion): void
2016-06-25 01:09:49 +00:00
{
$config = new Config();
$result = FossilDriver::supports($this->getMockBuilder('Composer\IO\IOInterface')->getMock(), $config, $url);
2016-06-25 01:09:49 +00:00
$this->assertEquals($assertion, $result);
}
}