2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2018-01-05 14:20:30 +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\Util;
|
|
|
|
|
|
|
|
use Composer\Util\Url;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2018-01-05 14:20:30 +00:00
|
|
|
use Composer\Config;
|
|
|
|
|
|
|
|
class UrlTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider distRefsProvider
|
2021-10-27 14:18:46 +00:00
|
|
|
*
|
|
|
|
* @param array<string, mixed> $conf
|
2022-10-11 14:51:47 +00:00
|
|
|
* @param non-empty-string $url
|
2018-01-05 14:20:30 +00:00
|
|
|
*/
|
2022-08-17 12:20:07 +00:00
|
|
|
public function testUpdateDistReference(string $url, string $expectedUrl, array $conf = [], string $ref = 'newref'): void
|
2018-01-05 14:20:30 +00:00
|
|
|
{
|
|
|
|
$config = new Config();
|
2022-08-17 12:20:07 +00:00
|
|
|
$config->merge(['config' => $conf]);
|
2018-01-05 14:20:30 +00:00
|
|
|
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertSame($expectedUrl, Url::updateDistReference($config, $url, $ref));
|
2018-01-05 14:20:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public static function distRefsProvider(): array
|
2018-01-05 14:20:30 +00:00
|
|
|
{
|
2022-08-17 12:20:07 +00:00
|
|
|
return [
|
2018-01-05 14:20:30 +00:00
|
|
|
// github
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://github.com/foo/bar/zipball/abcd', 'https://api.github.com/repos/foo/bar/zipball/newref'],
|
|
|
|
['https://www.github.com/foo/bar/zipball/abcd', 'https://api.github.com/repos/foo/bar/zipball/newref'],
|
|
|
|
['https://github.com/foo/bar/archive/abcd.zip', 'https://api.github.com/repos/foo/bar/zipball/newref'],
|
|
|
|
['https://github.com/foo/bar/archive/abcd.tar.gz', 'https://api.github.com/repos/foo/bar/tarball/newref'],
|
|
|
|
['https://api.github.com/repos/foo/bar/tarball', 'https://api.github.com/repos/foo/bar/tarball/newref'],
|
|
|
|
['https://api.github.com/repos/foo/bar/tarball/abcd', 'https://api.github.com/repos/foo/bar/tarball/newref'],
|
2018-01-05 14:20:30 +00:00
|
|
|
|
|
|
|
// github enterprise
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://mygithub.com/api/v3/repos/foo/bar/tarball/abcd', 'https://mygithub.com/api/v3/repos/foo/bar/tarball/newref', ['github-domains' => ['mygithub.com']]],
|
2018-01-05 14:20:30 +00:00
|
|
|
|
|
|
|
// bitbucket
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://bitbucket.org/foo/bar/get/abcd.zip', 'https://bitbucket.org/foo/bar/get/newref.zip'],
|
|
|
|
['https://www.bitbucket.org/foo/bar/get/abcd.tar.bz2', 'https://bitbucket.org/foo/bar/get/newref.tar.bz2'],
|
2018-01-05 14:20:30 +00:00
|
|
|
|
|
|
|
// gitlab
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://gitlab.com/api/v4/projects/foo%2Fbar/repository/archive.zip?sha=abcd', 'https://gitlab.com/api/v4/projects/foo%2Fbar/repository/archive.zip?sha=newref'],
|
|
|
|
['https://www.gitlab.com/api/v4/projects/foo%2Fbar/repository/archive.zip?sha=abcd', 'https://gitlab.com/api/v4/projects/foo%2Fbar/repository/archive.zip?sha=newref'],
|
|
|
|
['https://gitlab.com/api/v3/projects/foo%2Fbar/repository/archive.tar.gz?sha=abcd', 'https://gitlab.com/api/v4/projects/foo%2Fbar/repository/archive.tar.gz?sha=newref'],
|
2018-01-05 14:20:30 +00:00
|
|
|
|
|
|
|
// gitlab enterprise
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://mygitlab.com/api/v4/projects/foo%2Fbar/repository/archive.tar.gz?sha=abcd', 'https://mygitlab.com/api/v4/projects/foo%2Fbar/repository/archive.tar.gz?sha=newref', ['gitlab-domains' => ['mygitlab.com']]],
|
|
|
|
['https://mygitlab.com/api/v3/projects/foo%2Fbar/repository/archive.tar.bz2?sha=abcd', 'https://mygitlab.com/api/v3/projects/foo%2Fbar/repository/archive.tar.bz2?sha=newref', ['gitlab-domains' => ['mygitlab.com']]],
|
|
|
|
['https://mygitlab.com/api/v3/projects/foo%2Fbar/repository/archive.tar.bz2?sha=abcd', 'https://mygitlab.com/api/v3/projects/foo%2Fbar/repository/archive.tar.bz2?sha=65', ['gitlab-domains' => ['mygitlab.com']], '65'],
|
|
|
|
];
|
2018-01-05 14:20:30 +00:00
|
|
|
}
|
2020-01-30 14:50:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider sanitizeProvider
|
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
public function testSanitize(string $expected, string $url): void
|
2020-01-30 14:50:46 +00:00
|
|
|
{
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertSame($expected, Url::sanitize($url));
|
2020-01-30 14:50:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public static function sanitizeProvider(): array
|
2020-01-30 14:50:46 +00:00
|
|
|
{
|
2022-08-17 12:20:07 +00:00
|
|
|
return [
|
2020-10-23 11:27:46 +00:00
|
|
|
// with scheme
|
2022-08-17 12:20:07 +00:00
|
|
|
['https://foo:***@example.org/', 'https://foo:bar@example.org/'],
|
|
|
|
['https://foo@example.org/', 'https://foo@example.org/'],
|
|
|
|
['https://example.org/', 'https://example.org/'],
|
|
|
|
['http://***:***@example.org', 'http://10a8f08e8d7b7b9:foo@example.org'],
|
|
|
|
['https://foo:***@example.org:123/', 'https://foo:bar@example.org:123/'],
|
|
|
|
['https://example.org/foo/bar?access_token=***', 'https://example.org/foo/bar?access_token=abcdef'],
|
|
|
|
['https://example.org/foo/bar?foo=bar&access_token=***', 'https://example.org/foo/bar?foo=bar&access_token=abcdef'],
|
|
|
|
['https://***:***@github.com/acme/repo', 'https://ghp_1234567890abcdefghijklmnopqrstuvwxyzAB:x-oauth-basic@github.com/acme/repo'],
|
2022-10-20 10:58:51 +00:00
|
|
|
['https://***:***@github.com/acme/repo', 'https://github_pat_1234567890abcdefghijkl_1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW:x-oauth-basic@github.com/acme/repo'],
|
2020-10-23 11:27:46 +00:00
|
|
|
// without scheme
|
2022-08-17 12:20:07 +00:00
|
|
|
['foo:***@example.org/', 'foo:bar@example.org/'],
|
|
|
|
['foo@example.org/', 'foo@example.org/'],
|
|
|
|
['example.org/', 'example.org/'],
|
|
|
|
['***:***@example.org', '10a8f08e8d7b7b9:foo@example.org'],
|
|
|
|
['foo:***@example.org:123/', 'foo:bar@example.org:123/'],
|
|
|
|
['example.org/foo/bar?access_token=***', 'example.org/foo/bar?access_token=abcdef'],
|
|
|
|
['example.org/foo/bar?foo=bar&access_token=***', 'example.org/foo/bar?foo=bar&access_token=abcdef'],
|
|
|
|
];
|
2020-01-30 14:50:46 +00:00
|
|
|
}
|
2018-01-05 14:20:30 +00:00
|
|
|
}
|