86 lines
3.0 KiB
C#
86 lines
3.0 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc.
|
|
// All Rights Reserved
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
|
|
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
|
|
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
|
|
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
|
|
// NON-INFRINGEMENT.
|
|
// See the Apache 2 License for the specific language governing
|
|
// permissions and limitations under the License.
|
|
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.FeatureModel;
|
|
using Microsoft.AspNet.HttpFeature;
|
|
using Moq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNet.PipelineCore.Tests
|
|
{
|
|
public class FormFeatureTests
|
|
{
|
|
[Fact]
|
|
public async Task GetFormAsync_ReturnsParsedFormCollection()
|
|
{
|
|
// Arrange
|
|
var formContent = Encoding.UTF8.GetBytes("foo=bar&baz=2");
|
|
var features = new Mock<IFeatureCollection>();
|
|
var request = new Mock<IHttpRequestFeature>();
|
|
request.SetupGet(r => r.Body).Returns(new MemoryStream(formContent));
|
|
|
|
object value = request.Object;
|
|
features.Setup(f => f.TryGetValue(typeof(IHttpRequestFeature), out value))
|
|
.Returns(true);
|
|
|
|
var provider = new FormFeature(features.Object);
|
|
|
|
// Act
|
|
var formCollection = await provider.GetFormAsync();
|
|
|
|
// Assert
|
|
Assert.Equal("bar", formCollection["foo"]);
|
|
Assert.Equal("2", formCollection["baz"]);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task GetFormAsync_CachesFormCollectionPerBodyStream()
|
|
{
|
|
// Arrange
|
|
var formContent1 = Encoding.UTF8.GetBytes("foo=bar&baz=2");
|
|
var formContent2 = Encoding.UTF8.GetBytes("collection2=value");
|
|
var features = new Mock<IFeatureCollection>();
|
|
var request = new Mock<IHttpRequestFeature>();
|
|
request.SetupGet(r => r.Body).Returns(new MemoryStream(formContent1));
|
|
|
|
object value = request.Object;
|
|
features.Setup(f => f.TryGetValue(typeof(IHttpRequestFeature), out value))
|
|
.Returns(true);
|
|
|
|
var provider = new FormFeature(features.Object);
|
|
|
|
// Act - 1
|
|
var formCollection = await provider.GetFormAsync();
|
|
|
|
// Assert - 1
|
|
Assert.Equal("bar", formCollection["foo"]);
|
|
Assert.Equal("2", formCollection["baz"]);
|
|
Assert.Same(formCollection, await provider.GetFormAsync());
|
|
|
|
// Act - 2
|
|
request.SetupGet(r => r.Body).Returns(new MemoryStream(formContent2));
|
|
formCollection = await provider.GetFormAsync();
|
|
|
|
// Assert - 2
|
|
Assert.Equal("value", formCollection["collection2"]);
|
|
}
|
|
}
|
|
}
|