本文整理匯總了C#中Tests.DnaTestURLRequest.SetCurrentUserProfileTest方法的典型用法代碼示例。如果您正苦於以下問題:C# DnaTestURLRequest.SetCurrentUserProfileTest方法的具體用法?C# DnaTestURLRequest.SetCurrentUserProfileTest怎麽用?C# DnaTestURLRequest.SetCurrentUserProfileTest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tests.DnaTestURLRequest
的用法示例。
在下文中一共展示了DnaTestURLRequest.SetCurrentUserProfileTest方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: makeTestItem
public static int maxNumDiffUsers = 5; // different users as avaialble below
public static string makeTestItem(string forumId, int index)
{
System.Random RandNum = new System.Random();
int inputRating = RandNum.Next(1, 5);
string ratingString = "";
string ratingScore = "";
string postData = testUtils_ratingsAPI.makeEntryPostXml_minimal(ref ratingString, ref ratingScore);
string url = makeCreatePostUrl(forumId);
DnaTestURLRequest theRequest = new DnaTestURLRequest(testUtils_CommentsAPI.sitename);
theRequest.UseIdentitySignIn = true;
switch (index)
{
case 0: theRequest.SetCurrentUserNormal(); break;
case 1: theRequest.SetCurrentUserNotableUser(); break;
case 2: theRequest.SetCurrentUserModerator(); break;
case 3: theRequest.SetCurrentUserProfileTest(); break;
case 4: theRequest.SetCurrentUserEditor(); break;
default: Assert.Fail("Can only set up 5 different users. Other users are particularly special"); break;
}
try
{
theRequest.RequestPageWithFullURL(url, postData, "text/xml");
}
catch
{
string resp = theRequest.GetLastResponseAsString();
}
Assert.IsTrue(theRequest.CurrentWebResponse.StatusCode == HttpStatusCode.OK,
"Error making test rating entity. Expecting " + HttpStatusCode.OK +
" as response, got " + theRequest.CurrentWebResponse.StatusCode + "\n" +
theRequest.CurrentWebResponse.StatusDescription
);
RatingInfo inf = (RatingInfo)StringUtils.DeserializeObject(theRequest.GetLastResponseAsString(), typeof(RatingInfo));
return inf.ID.ToString();
}