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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using Xunit;
using Xunit.Extensions;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Net.Http.Formatting
{
public class FormDataCollectionTests
{
[Fact]
public void CreateFromUri()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com/?x=1&y=2"));
Assert.Equal("1", form.Get("x"));
Assert.Equal("2", form.Get("y"));
}
[Fact]
public void CreateFromEmptyUri()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com"));
Assert.Empty(form);
}
[Fact]
public void UriConstructorThrowsNull()
{
Assert.Throws<ArgumentNullException>(() => new FormDataCollection((Uri)null));
}
[Fact]
public void CreateFromEmptyString()
{
FormDataCollection form = new FormDataCollection("");
Assert.Empty(form);
}
[Fact]
public void CreateFromNullString()
{
FormDataCollection form = new FormDataCollection((string) null);
Assert.Empty(form);
}
[Fact]
public void PairConstructorThrowsNull()
{
var arg = (IEnumerable<KeyValuePair<string, string>>)null;
Assert.Throws<ArgumentNullException>(() => new FormDataCollection(arg));
}
[Fact]
public void CreateFromPairs()
{
Dictionary<string, string> pairs = new Dictionary<string,string>
{
{ "x", "1"},
{ "y" , "2"}
};
var form = new FormDataCollection(pairs);
Assert.Equal("1", form.Get("x"));
Assert.Equal("2", form.Get("y"));
}
[Fact]
public void Enumeration()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com/?x=1&y=2"));
// Enumeration should be ordered
String s = "";
foreach (KeyValuePair<string, string> kv in form)
{
s += string.Format("{0}={1};", kv.Key, kv.Value);
}
Assert.Equal("x=1;y=2;", s);
}
[Fact]
public void GetValues()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com/?x=1&x=2&x=3"));
Assert.Equal(new string [] { "1", "2", "3"}, form.GetValues("x"));
}
[Fact]
public void CaseInSensitive()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com/?x=1&Y=2"));
NameValueCollection nvc = form.ReadAsNameValueCollection();
Assert.Equal(2, nvc.Count);
Assert.Equal("1", nvc.Get("x"));
Assert.Equal("2", nvc.Get("y"));
}
[Fact]
public void ToNameValueCollection()
{
FormDataCollection form = new FormDataCollection(new Uri("http://foo.com/?x=1a&y=2&x=1b&=ValueOnly&KeyOnly"));
NameValueCollection nvc = form.ReadAsNameValueCollection();
// y=2
// x=1a;x=1b
// =ValueOnly
// KeyOnly
Assert.Equal(4, nvc.Count);
Assert.Equal(new string[] { "1a", "1b"}, nvc.GetValues("x"));
Assert.Equal("1a,1b", nvc.Get("x"));
Assert.Equal("2", nvc.Get("y"));
Assert.Equal("", nvc.Get("KeyOnly"));
Assert.Equal("ValueOnly", nvc.Get(""));
}
const string SPACE = " "; // single literal space character
[Theory]
[InlineData("x=abc", "abc")] // normal
[InlineData("x", "")] // key only
[InlineData("x=", "")] // rhs only
[InlineData("x=%20", SPACE)] // escaped space
[InlineData("x=" + SPACE, SPACE)] // literal space
[InlineData("x=+", SPACE)] //
[InlineData("x=null", "null")] // null literal, not escaped
[InlineData("x=undefined", "undefined")] // undefined literal, not escaped
[InlineData("x=\"null\"", "\"null\"")] // quoted null, preserved as is
public void Whitespace(string queryString, string expected)
{
FormDataCollection fd = new FormDataCollection(queryString);
Assert.Equal(1, fd.Count());
Assert.Equal(expected, fd.Get("x"));
}
}
}
|