blob: db60e177c7c85ee37dfdb771c1f107fbc357630e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//-----------------------------------------------------------------------
// <copyright file="UriHelperTest.cs" company="Microsoft">
// Copyright (c) Microsoft. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.AspNet.Test {
using System;
using DotNetOpenAuth.AspNet.Clients;
using NUnit.Framework;
[TestFixture]
public class UriHelperTest {
[TestCase]
public void TestAttachQueryStringParameterMethod() {
// Arrange
string[] input = new string[]
{
"http://x.com",
"https://xxx.com/one?s=123",
"https://yyy.com/?s=6&u=a",
"https://zzz.com/default.aspx?name=sd"
};
string[] expectedOutput = new string[]
{
"http://x.com/?s=awesome",
"https://xxx.com/one?s=awesome",
"https://yyy.com/?s=awesome&u=a",
"https://zzz.com/default.aspx?name=sd&s=awesome"
};
for (int i = 0; i < input.Length; i++) {
// Act
var inputUrl = new Uri(input[i]);
var outputUri = UriHelper.AttachQueryStringParameter(inputUrl, "s", "awesome");
// Assert
Assert.AreEqual(expectedOutput[i], outputUri.ToString());
}
}
}
}
|