mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
|
|
namespace SpotifyAPI.Web.Tests
|
|
{
|
|
[TestFixture]
|
|
public class URIExtensionTest
|
|
{
|
|
[Test]
|
|
public void ApplyParameters_WithoutExistingParameters()
|
|
{
|
|
var expected = "http://google.com/?hello=world&nice=day";
|
|
var uri = new Uri("http://google.com/");
|
|
|
|
var parameters = new Dictionary<string, string>
|
|
{
|
|
{ "hello", "world" },
|
|
{ "nice", "day" }
|
|
};
|
|
Assert.AreEqual(expected, uri.ApplyParameters(parameters).ToString());
|
|
}
|
|
|
|
[Test]
|
|
public void ApplyParameters_WithExistingParameters()
|
|
{
|
|
var expected = "http://google.com/?existing=paramter&hello=world&nice=day";
|
|
var uri = new Uri("http://google.com/?existing=paramter");
|
|
|
|
var parameters = new Dictionary<string, string>
|
|
{
|
|
{ "hello", "world" },
|
|
{ "nice", "day" }
|
|
};
|
|
Assert.AreEqual(expected, uri.ApplyParameters(parameters).ToString());
|
|
}
|
|
|
|
[Test]
|
|
public void ApplyParameters_HandlesEscape()
|
|
{
|
|
var expected = "http://google.com/?existing=paramter&hello=%26world++";
|
|
var uri = new Uri("http://google.com/?existing=paramter");
|
|
|
|
var parameters = new Dictionary<string, string>
|
|
{
|
|
{ "hello", "&world " },
|
|
};
|
|
Assert.AreEqual(expected, uri.ApplyParameters(parameters).ToString());
|
|
}
|
|
}
|
|
}
|