本文整理汇总了C#中NGit.Transport.URIish.GetPath方法的典型用法代码示例。如果您正苦于以下问题:C# URIish.GetPath方法的具体用法?C# URIish.GetPath怎么用?C# URIish.GetPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NGit.Transport.URIish
的用法示例。
在下文中一共展示了URIish.GetPath方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CanHandle
internal static bool CanHandle(URIish uri, FS fs)
{
if (uri.GetHost() != null || uri.GetPort() > 0 || uri.GetUser() != null || uri.GetPass
() != null || uri.GetPath() == null)
{
return false;
}
if ("file".Equals(uri.GetScheme()) || uri.GetScheme() == null)
{
FilePath f = fs.Resolve(new FilePath("."), uri.GetPath());
return f.IsFile() || f.GetName().EndsWith(".bundle");
}
return false;
}
示例2: TestFileProtocol
public virtual void TestFileProtocol()
{
// as defined by git docu
URIish u = new URIish("file:///a/b.txt");
NUnit.Framework.Assert.AreEqual("file", u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.IsNull(u.GetHost());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.AreEqual("/a/b.txt", u.GetPath());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.IsNull(u.GetUser());
NUnit.Framework.Assert.AreEqual("b.txt", u.GetHumanishName());
FilePath tmp = FilePath.CreateTempFile("jgitUnitTest", ".tmp");
u = new URIish(tmp.ToURI().ToString());
NUnit.Framework.Assert.AreEqual("file", u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.IsNull(u.GetHost());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.IsTrue(u.GetPath().Contains("jgitUnitTest"));
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.IsNull(u.GetUser());
NUnit.Framework.Assert.IsTrue(u.GetHumanishName().StartsWith("jgitUnitTest"));
u = new URIish("file:/a/b.txt");
NUnit.Framework.Assert.AreEqual("file", u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.IsNull(u.GetHost());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.AreEqual("/a/b.txt", u.GetPath());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.IsNull(u.GetUser());
NUnit.Framework.Assert.AreEqual("b.txt", u.GetHumanishName());
}
示例3: CanHandle
public override bool CanHandle(URIish uri, Repository local, string remoteName)
{
if (uri.GetPath() == null || uri.GetPort() > 0 || uri.GetUser() != null || uri.GetPass
() != null || uri.GetHost() != null || (uri.GetScheme() != null && !this.GetSchemes
().Contains(uri.GetScheme())))
{
return false;
}
return true;
}
示例4: TestURIEncode_unicode
public virtual void TestURIEncode_unicode()
{
string str = "file:///home/m%c3%a5y";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("file", u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/home/m%c3%a5y", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/home/m\u00e5y", u.GetPath());
NUnit.Framework.Assert.AreEqual("file:///home/m%c3%a5y", u.ToString());
NUnit.Framework.Assert.AreEqual("file:///home/m%c3%a5y", u.ToASCIIString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例5: Open
/// <exception cref="NGit.Errors.NoRemoteRepositoryException"></exception>
public override NGit.Transport.Transport Open(URIish uri, Repository local, string
remoteName)
{
// If the reference is to a local file, C Git behavior says
// assume this is a bundle, since repositories are directories.
//
FilePath path = local.FileSystem.Resolve(new FilePath("."), uri.GetPath());
if (path.IsFile())
{
return new TransportBundleFile(local, uri, path);
}
FilePath gitDir = RepositoryCache.FileKey.Resolve(path, local.FileSystem);
if (gitDir == null)
{
throw new NoRemoteRepositoryException(uri, JGitText.Get().notFound);
}
return new NGit.Transport.TransportLocal(local, uri, gitDir);
}
示例6: TransportAmazonS3
/// <exception cref="System.NotSupportedException"></exception>
protected internal TransportAmazonS3(Repository local, URIish uri) : base(local,
uri)
{
s3 = new AmazonS3(LoadProperties());
bucket = uri.GetHost();
string p = uri.GetPath();
if (p.StartsWith("/"))
{
p = Sharpen.Runtime.Substring(p, 1);
}
if (p.EndsWith("/"))
{
p = Sharpen.Runtime.Substring(p, 0, p.Length - 1);
}
keyPrefix = p;
}
示例7: TestUserPasswordAndPort
public virtual void TestUserPasswordAndPort()
{
string str = "http://user:secr[email protected]:80/some/path";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("http", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/path", u.GetPath());
NUnit.Framework.Assert.AreEqual("host.xy", u.GetHost());
NUnit.Framework.Assert.AreEqual(80, u.GetPort());
NUnit.Framework.Assert.AreEqual("user", u.GetUser());
NUnit.Framework.Assert.AreEqual("secret", u.GetPass());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
str = "http://user:[email protected]@host.xy:80/some/path";
u = new URIish(str);
NUnit.Framework.Assert.AreEqual("http", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/path", u.GetPath());
NUnit.Framework.Assert.AreEqual("host.xy", u.GetHost());
NUnit.Framework.Assert.AreEqual(80, u.GetPort());
NUnit.Framework.Assert.AreEqual("user", u.GetUser());
NUnit.Framework.Assert.AreEqual("[email protected]", u.GetPass());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例8: TestUNC
public virtual void TestUNC()
{
string str = "\\\\some\\place";
URIish u = new URIish(str);
NUnit.Framework.Assert.IsNull(u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.AreEqual("\\\\some\\place", u.GetPath());
NUnit.Framework.Assert.AreEqual("\\\\some\\place", u.ToString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例9: TestSshProto
public virtual void TestSshProto()
{
string str = "ssh://example.com/some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("ssh", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.AreEqual(str, u.ToString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例10: TestGetSet
public virtual void TestGetSet()
{
string str = "ssh://DOMAIN\\user:[email protected]:33/some/p ath%20";
URIish u = new URIish(str);
u = u.SetHost(u.GetHost());
u = u.SetPass(u.GetPass());
u = u.SetPort(u.GetPort());
NUnit.Framework.Assert.AreEqual("ssh", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
u = u.SetRawPath(u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some/p ath%20", u.GetRawPath());
u = u.SetPath(u.GetPath());
NUnit.Framework.Assert.AreEqual("/some/p ath ", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some/p ath ", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual("DOMAIN\\user", u.GetUser());
NUnit.Framework.Assert.AreEqual("pass", u.GetPass());
NUnit.Framework.Assert.AreEqual(33, u.GetPort());
NUnit.Framework.Assert.AreEqual("ssh://DOMAIN\\user:[email protected]:33/some/p ath "
, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual("ssh://DOMAIN\\user:[email protected]:33/some/p%20ath%20"
, u.ToPrivateASCIIString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateASCIIString(), u.ToASCIIString
());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例11: TestURIEncodeDecode
public virtual void TestURIEncodeDecode()
{
string str = "ssh://%3ax%25:%40%[email protected]:33/some%c3%a5/p%20a th";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("ssh", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some%c3%a5/p%20a th", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some\u00e5/p a th", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual(":x%", u.GetUser());
NUnit.Framework.Assert.AreEqual("@Ax", u.GetPass());
NUnit.Framework.Assert.AreEqual(33, u.GetPort());
NUnit.Framework.Assert.AreEqual("ssh://%3ax%25:%[email protected]:33/some%c3%a5/p%20a th"
, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual("ssh://%3ax%25:%[email protected]:33/some%c3%a5/p%20a%20th"
, u.ToPrivateASCIIString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateASCIIString(), u.ToASCIIString
());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例12: TestSshProtoWithEscapedADUserPassAndPort
public virtual void TestSshProtoWithEscapedADUserPassAndPort()
{
string str = "ssh://DOMAIN%5c\u00fcser:[email protected]:33/some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("ssh", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual("DOMAIN\\\u00fcser", u.GetUser());
NUnit.Framework.Assert.AreEqual("pass", u.GetPass());
NUnit.Framework.Assert.AreEqual(33, u.GetPort());
NUnit.Framework.Assert.AreEqual("ssh://DOMAIN\\\u00fcser:[email protected]:33/some/p ath"
, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual("ssh://DOMAIN\\%c3%bcser:[email protected]:33/some/p%20ath"
, u.ToPrivateASCIIString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateASCIIString(), u.ToASCIIString
());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例13: TestSshProtoWithUserAndPort
public virtual void TestSshProtoWithUserAndPort()
{
string str = "ssh://[email protected]:33/some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("ssh", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual("user", u.GetUser());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.AreEqual(33, u.GetPort());
NUnit.Framework.Assert.AreEqual("ssh://[email protected]:33/some/p ath", u.ToString
());
NUnit.Framework.Assert.AreEqual("ssh://[email protected]:33/some/p%20ath", u.ToASCIIString
());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例14: TestScpStyleWithoutUserAbsolutePath
public virtual void TestScpStyleWithoutUserAbsolutePath()
{
string str = "example.com:/some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.IsNull(u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/some/p ath", u.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.AreEqual(str, u.ToString());
NUnit.Framework.Assert.AreEqual(str, u.ToASCIIString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例15: TestGitProtoUnixPort
public virtual void TestGitProtoUnixPort()
{
string str = "git://example.com:333/home/m y";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("git", u.GetScheme());
NUnit.Framework.Assert.IsTrue(u.IsRemote());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual("/home/m y", u.GetRawPath());
NUnit.Framework.Assert.AreEqual("/home/m y", u.GetPath());
NUnit.Framework.Assert.AreEqual(333, u.GetPort());
NUnit.Framework.Assert.AreEqual("git://example.com:333/home/m y", u.ToString());
NUnit.Framework.Assert.AreEqual("git://example.com:333/home/m%20y", u.ToASCIIString
());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}