summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet.Test/UriHelperTest.cs
blob: 53a2b52316d4d656302b8700ce0464d5c9307b56 (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
using System;
using DotNetOpenAuth.AspNet.Clients;
using NUnit.Framework;

namespace DotNetOpenAuth.AspNet.Test
{
    [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());
            }
        }
    }
}