本文整理汇总了C#中NGit.Transport.URIish.SetPass方法的典型用法代码示例。如果您正苦于以下问题:C# URIish.SetPass方法的具体用法?C# URIish.SetPass怎么用?C# URIish.SetPass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NGit.Transport.URIish
的用法示例。
在下文中一共展示了URIish.SetPass方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestGitWithUserHome
public virtual void TestGitWithUserHome()
{
string str = "git://example.com/~some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.AreEqual("git", 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.IsNull(u.GetUser());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.AreEqual(str, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例2: TestSshProtoWithUserPassAndPort
public virtual void TestSshProtoWithUserPassAndPort()
{
string str = "ssh://user:[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.GetPath());
NUnit.Framework.Assert.AreEqual("example.com", u.GetHost());
NUnit.Framework.Assert.AreEqual("user", u.GetUser());
NUnit.Framework.Assert.AreEqual("pass", u.GetPass());
NUnit.Framework.Assert.AreEqual(33, u.GetPort());
NUnit.Framework.Assert.AreEqual(str, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例3: UnsupportedCredentialItem
/// <summary>
/// Constructs an UnsupportedCredentialItem with the specified detail message
/// prefixed with provided URI.
/// </summary>
/// <remarks>
/// Constructs an UnsupportedCredentialItem with the specified detail message
/// prefixed with provided URI.
/// </remarks>
/// <param name="uri">URI used for transport</param>
/// <param name="s">message</param>
public UnsupportedCredentialItem(URIish uri, string s) : base(uri.SetPass(null) +
": " + s)
{
}
示例4: TestFileWithNoneUserHomeWithTilde
public virtual void TestFileWithNoneUserHomeWithTilde()
{
string str = "/~some/p ath";
URIish u = new URIish(str);
NUnit.Framework.Assert.IsNull(u.GetScheme());
NUnit.Framework.Assert.IsFalse(u.IsRemote());
NUnit.Framework.Assert.AreEqual("/~some/p ath", u.GetPath());
NUnit.Framework.Assert.IsNull(u.GetHost());
NUnit.Framework.Assert.IsNull(u.GetUser());
NUnit.Framework.Assert.IsNull(u.GetPass());
NUnit.Framework.Assert.AreEqual(-1, u.GetPort());
NUnit.Framework.Assert.AreEqual(str, u.ToPrivateString());
NUnit.Framework.Assert.AreEqual(u.SetPass(null).ToPrivateString(), u.ToString());
NUnit.Framework.Assert.AreEqual(u, new URIish(str));
}
示例5: 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));
}
示例6: 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));
}
示例7: 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));
}
示例8: TransportException
/// <summary>
/// Constructs an TransportException with the specified detail message
/// prefixed with provided URI.
/// </summary>
/// <remarks>
/// Constructs an TransportException with the specified detail message
/// prefixed with provided URI.
/// </remarks>
/// <param name="uri">URI used for transport</param>
/// <param name="s">message</param>
/// <param name="cause">root cause exception</param>
public TransportException(URIish uri, string s, Exception cause) : this(uri.SetPass
(null) + ": " + s, cause)
{
}