本文整理汇总了PHP中PhabricatorRepository::newPhutilURIFromGitURI方法的典型用法代码示例。如果您正苦于以下问题:PHP PhabricatorRepository::newPhutilURIFromGitURI方法的具体用法?PHP PhabricatorRepository::newPhutilURIFromGitURI怎么用?PHP PhabricatorRepository::newPhutilURIFromGitURI使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PhabricatorRepository
的用法示例。
在下文中一共展示了PhabricatorRepository::newPhutilURIFromGitURI方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testParseGitURI
public function testParseGitURI()
{
static $map = array('ssh://user@domain.com/path.git' => 'ssh://user@domain.com/path.git', 'user@domain.com:path.git' => 'ssh://user@domain.com/path.git');
foreach ($map as $raw => $expect) {
$uri = PhabricatorRepository::newPhutilURIFromGitURI($raw);
$this->assertEqual($expect, (string) $uri, "Normalized Git URI '{$raw}'");
}
}
示例2: testParseBadGitURI
public function testParseBadGitURI()
{
$junk = array('herp derp moon balloon');
foreach ($junk as $garbage) {
$ex = null;
try {
$uri = PhabricatorRepository::newPhutilURIFromGitURI($garbage);
} catch (Exception $caught) {
$ex = $caught;
}
$this->assertEqual(true, (bool) $ex, 'Expect exception when parsing garbage.');
}
}
示例3: verifySameGitOrigin
public static function verifySameGitOrigin($remote, $expect, $where)
{
$remote_uri = PhabricatorRepository::newPhutilURIFromGitURI($remote);
$expect_uri = PhabricatorRepository::newPhutilURIFromGitURI($expect);
$remote_path = $remote_uri->getPath();
$expect_path = $expect_uri->getPath();
$remote_match = self::normalizeGitPath($remote_path);
$expect_match = self::normalizeGitPath($expect_path);
if ($remote_match != $expect_match) {
throw new Exception("Working copy at '{$where}' has a mismatched origin URL. It has " . "origin URL '{$remote}' (with remote path '{$remote_path}'), but the " . "configured URL '{$expect}' (with remote path '{$expect_path}') is " . "expected. Refusing to proceed because this may indicate that the " . "working copy is actually some other repository.");
}
}