Files
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
packages
src
test
Microsoft.TestCommon
Microsoft.Web.Helpers.Test
Microsoft.Web.Http.Data.Test
Microsoft.Web.Mvc.Test
Microsoft.Web.WebPages.OAuth.Test
SPA.Test
System.Json.Test.Integration
System.Json.Test.Unit
System.Net.Http.Formatting.Test.Integration
System.Net.Http.Formatting.Test.Unit
System.Web.Helpers.Test
System.Web.Http.Integration.Test
System.Web.Http.SelfHost.Test
System.Web.Http.Test
System.Web.Http.WebHost.Test
System.Web.Mvc.Test
System.Web.Razor.Test
System.Web.WebPages.Administration.Test
System.Web.WebPages.Deployment.Test
System.Web.WebPages.Razor.Test
System.Web.WebPages.Test
ApplicationParts
Extensions
Helpers
Html
Instrumentation
Mvc
Properties
ScopeStorage
TestFiles
Utils
CultureUtilTest.cs
PathUtilTest.cs
SessionStateUtilTest.cs
TestObjectFactory.cs
TypeHelperTest.cs
UrlUtilTest.cs
Validation
WebPage
App.config
PreApplicationStartCodeTest.cs
System.Web.WebPages.Test.csproj
packages.config
WebMatrix.Data.Test
WebMatrix.WebData.Test
Settings.StyleCop
tools
.gitattributes
.gitignore
License.txt
README.md
Runtime.msbuild
Runtime.sln
Runtime.xunit
Settings.StyleCop
build.cmd
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
linux-packaging-mono/external/aspnetwebstack/test/System.Web.WebPages.Test/Utils/SessionStateUtilTest.cs

186 lines
7.0 KiB
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Concurrent;
using System.Web.Razor;
using System.Web.SessionState;
using Moq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.WebPages.Test
{
public class SessionStateUtilTest
{
[Fact]
public void SetUpSessionStateDoesNotInvokeSessionStateBehaviorIfNoPageHasDirective()
{
// Arrange
var page = new Mock<WebPage>(MockBehavior.Strict);
var startPage = new Mock<StartPage>(MockBehavior.Strict);
var webPageHttpHandler = new WebPageHttpHandler(page.Object, startPage: new Lazy<WebPageRenderingBase>(() => startPage.Object));
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
// Act
SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, new ConcurrentDictionary<Type, SessionStateBehavior?>());
// Assert
context.Verify(c => c.SetSessionStateBehavior(It.IsAny<SessionStateBehavior>()), Times.Never());
}
[Fact]
public void SetUpSessionStateUsesSessionStateValueFromRequestingPageIfAvailable()
{
// Arrange
var page = new DisabledSessionWebPage();
var webPageHttpHandler = new WebPageHttpHandler(page, startPage: null);
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
context.Setup(c => c.SetSessionStateBehavior(SessionStateBehavior.Disabled)).Verifiable();
// Act
SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, new ConcurrentDictionary<Type, SessionStateBehavior?>());
// Assert
context.Verify();
}
[Fact]
public void SetUpSessionStateUsesSessionStateValueFromStartPageHierarchy()
{
// Arrange
var page = new Mock<WebPage>(MockBehavior.Strict);
var startPage = new DefaultSessionWebPage
{
ChildPage = new ReadOnlySessionWebPage()
};
var webPageHttpHandler = new WebPageHttpHandler(page.Object, startPage: new Lazy<WebPageRenderingBase>(() => startPage));
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
context.Setup(c => c.SetSessionStateBehavior(SessionStateBehavior.ReadOnly)).Verifiable();
// Act
SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, new ConcurrentDictionary<Type, SessionStateBehavior?>());
// Assert
context.Verify();
}
[Fact]
public void SetUpSessionStateThrowsIfSessionStateValueIsInvalid()
{
// Arrange
var page = new Mock<WebPage>(MockBehavior.Strict);
var startPage = new InvalidSessionState();
var webPageHttpHandler = new WebPageHttpHandler(page.Object, startPage: new Lazy<WebPageRenderingBase>(() => startPage));
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
// Act
Assert.Throws<ArgumentException>(() => SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, new ConcurrentDictionary<Type, SessionStateBehavior?>()),
"Value \"jabberwocky\" specified in \"~/_Invalid.cshtml\" is an invalid value for the SessionState directive. Possible values are: \"Default, Required, ReadOnly, Disabled\".");
}
[Fact]
public void SetUpSessionStateThrowsIfMultipleSessionStateValueIsInvalid()
{
// Arrange
var page = new PageWithMultipleSesionStateAttributes();
var webPageHttpHandler = new WebPageHttpHandler(page, startPage: null);
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
// Act
Assert.Throws<InvalidOperationException>(() => SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, new ConcurrentDictionary<Type, SessionStateBehavior?>()),
"At most one SessionState value can be declared per page.");
}
[Fact]
public void SetUpSessionStateUsesCache()
{
// Arrange
var page = new PageWithBadAttribute();
var webPageHttpHandler = new WebPageHttpHandler(page, startPage: null);
var context = new Mock<HttpContextBase>(MockBehavior.Strict);
var dictionary = new ConcurrentDictionary<Type, SessionStateBehavior?>();
dictionary.TryAdd(webPageHttpHandler.GetType(), SessionStateBehavior.Default);
context.Setup(c => c.SetSessionStateBehavior(SessionStateBehavior.Default)).Verifiable();
// Act
SessionStateUtil.SetUpSessionState(context.Object, webPageHttpHandler, dictionary);
// Assert
context.Verify();
Assert.Throws<Exception>(() => page.GetType().GetCustomAttributes(inherit: false), "Can't call me!");
}
[RazorDirective("sessionstate", "disabled")]
private sealed class DisabledSessionWebPage : WebPage
{
public override void Execute()
{
throw new NotSupportedException();
}
}
[RazorDirective("sessionstate", "ReadOnly")]
private sealed class ReadOnlySessionWebPage : StartPage
{
public override void Execute()
{
throw new NotSupportedException();
}
}
[RazorDirective("SessionState", "Default")]
private sealed class DefaultSessionWebPage : StartPage
{
public override void Execute()
{
throw new NotSupportedException();
}
}
[RazorDirective("SessionState", "jabberwocky")]
private sealed class InvalidSessionState : StartPage
{
public override string VirtualPath
{
get
{
return "~/_Invalid.cshtml";
}
set
{
VirtualPath = value;
}
}
public override void Execute()
{
throw new NotSupportedException();
}
}
private sealed class BadAttribute : Attribute
{
public BadAttribute()
{
throw new Exception("Can't call me!");
}
}
[RazorDirective("SessionState", "Default"), Bad]
private sealed class PageWithBadAttribute : WebPage
{
public override void Execute()
{
throw new NotSupportedException();
}
}
[RazorDirective("SessionState", "Disabled"), RazorDirective("SessionState", "ReadOnly")]
private sealed class PageWithMultipleSesionStateAttributes : WebPage
{
public override void Execute()
{
throw new NotSupportedException();
}
}
}
}