forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormUrlEncodedParserTests.cs
More file actions
168 lines (143 loc) · 6.21 KB
/
Copy pathFormUrlEncodedParserTests.cs
File metadata and controls
168 lines (143 loc) · 6.21 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using Microsoft.TestCommon;
namespace System.Net.Http.Formatting.Parsers
{
public class FormUrlEncodedParserTests
{
private const int MinMessageSize = 1;
private const int Iterations = 16;
internal static Collection<KeyValuePair<string, string>> CreateCollection()
{
return new Collection<KeyValuePair<string, string>>();
}
internal static FormUrlEncodedParser CreateParser(int maxMessageSize, out ICollection<KeyValuePair<string, string>> nameValuePairs)
{
nameValuePairs = CreateCollection();
return new FormUrlEncodedParser(nameValuePairs, maxMessageSize);
}
internal static byte[] CreateBuffer(params string[] nameValuePairs)
{
StringBuilder buffer = new StringBuilder();
bool first = true;
foreach (var h in nameValuePairs)
{
if (first)
{
first = false;
}
else
{
buffer.Append('&');
}
buffer.Append(h);
}
return Encoding.UTF8.GetBytes(buffer.ToString());
}
internal static ParserState ParseBufferInSteps(FormUrlEncodedParser parser, byte[] buffer, int readsize, out int totalBytesConsumed)
{
ParserState state = ParserState.Invalid;
totalBytesConsumed = 0;
while (totalBytesConsumed <= buffer.Length)
{
int size = Math.Min(buffer.Length - totalBytesConsumed, readsize);
byte[] parseBuffer = new byte[size];
Buffer.BlockCopy(buffer, totalBytesConsumed, parseBuffer, 0, size);
int bytesConsumed = 0;
state = parser.ParseBuffer(parseBuffer, parseBuffer.Length, ref bytesConsumed, totalBytesConsumed == buffer.Length - size);
totalBytesConsumed += bytesConsumed;
if (state != ParserState.NeedMoreData)
{
return state;
}
}
return state;
}
[Fact]
public void TypeIsCorrect()
{
Assert.Type.HasProperties<FormUrlEncodedParser>(TypeAssert.TypeProperties.IsClass);
}
[Fact]
public void FormUrlEncodedParserThrowsOnNull()
{
Assert.ThrowsArgumentNull(() => { new FormUrlEncodedParser(null, ParserData.MinHeaderSize); }, "nameValuePairs");
}
[Fact]
public void FormUrlEncodedParserThrowsOnInvalidSize()
{
Assert.ThrowsArgumentGreaterThanOrEqualTo(() => { new FormUrlEncodedParser(CreateCollection(), MinMessageSize - 1); }, "maxMessageSize", MinMessageSize.ToString(), MinMessageSize - 1);
FormUrlEncodedParser parser = new FormUrlEncodedParser(CreateCollection(), MinMessageSize);
Assert.NotNull(parser);
parser = new FormUrlEncodedParser(CreateCollection(), MinMessageSize + 1);
Assert.NotNull(parser);
}
[Fact]
public void ParseBufferThrowsOnNullBuffer()
{
ICollection<KeyValuePair<string, string>> collection;
FormUrlEncodedParser parser = CreateParser(128, out collection);
int bytesConsumed = 0;
Assert.ThrowsArgumentNull(() => { parser.ParseBuffer(null, 0, ref bytesConsumed, false); }, "buffer");
}
[Fact]
public void ParseBufferHandlesEmptyBuffer()
{
byte[] data = CreateBuffer();
ICollection<KeyValuePair<string, string>> collection;
FormUrlEncodedParser parser = CreateParser(MinMessageSize, out collection);
int bytesConsumed = 0;
ParserState state = parser.ParseBuffer(data, data.Length, ref bytesConsumed, true);
Assert.Equal(ParserState.Done, state);
Assert.Equal(data.Length, bytesConsumed);
Assert.Empty(collection);
}
[Theory]
[InlineData("N", "N", "")]
[InlineData("%26", "&", "")]
[TestDataSet(typeof(UriQueryTestData), "UriQueryData")]
public void ParseBufferCorrectly(string segment, string name, string value)
{
for (int index = 1; index < Iterations; index++)
{
List<string> segments = new List<string>();
for (int cnt = 0; cnt < index; cnt++)
{
segments.Add(segment);
}
byte[] data = CreateBuffer(segments.ToArray());
for (var cnt = 1; cnt <= data.Length; cnt++)
{
ICollection<KeyValuePair<string, string>> collection;
FormUrlEncodedParser parser = CreateParser(data.Length + 1, out collection);
Assert.NotNull(parser);
int totalBytesConsumed;
ParserState state = ParseBufferInSteps(parser, data, cnt, out totalBytesConsumed);
Assert.Equal(ParserState.Done, state);
Assert.Equal(data.Length, totalBytesConsumed);
Assert.Equal(index, collection.Count());
foreach (KeyValuePair<string, string> element in collection)
{
Assert.Equal(name, element.Key);
Assert.Equal(value, element.Value);
}
}
}
}
[Fact]
public void HeaderParserDataTooBig()
{
byte[] data = CreateBuffer("N=V");
ICollection<KeyValuePair<string, string>> collection;
FormUrlEncodedParser parser = CreateParser(MinMessageSize, out collection);
int bytesConsumed = 0;
ParserState state = parser.ParseBuffer(data, data.Length, ref bytesConsumed, true);
Assert.Equal(ParserState.DataTooBig, state);
Assert.Equal(MinMessageSize, bytesConsumed);
}
}
}