132 lines
3.7 KiB
C#
132 lines
3.7 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNet.Mvc.Core.Test
|
|
{
|
|
public class AntiForgeryTokenTest
|
|
{
|
|
[Fact]
|
|
public void AdditionalDataProperty()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act & assert - 1
|
|
Assert.Equal("", token.AdditionalData);
|
|
|
|
// Act & assert - 2
|
|
token.AdditionalData = "additional data";
|
|
Assert.Equal("additional data", token.AdditionalData);
|
|
|
|
// Act & assert - 3
|
|
token.AdditionalData = null;
|
|
Assert.Equal("", token.AdditionalData);
|
|
}
|
|
|
|
[Fact]
|
|
public void ClaimUidProperty()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act & assert - 1
|
|
Assert.Null(token.ClaimUid);
|
|
|
|
// Act & assert - 2
|
|
BinaryBlob blob = new BinaryBlob(32);
|
|
token.ClaimUid = blob;
|
|
Assert.Equal(blob, token.ClaimUid);
|
|
|
|
// Act & assert - 3
|
|
token.ClaimUid = null;
|
|
Assert.Null(token.ClaimUid);
|
|
}
|
|
|
|
[Fact]
|
|
public void IsSessionTokenProperty()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act & assert - 1
|
|
Assert.False(token.IsSessionToken);
|
|
|
|
// Act & assert - 2
|
|
token.IsSessionToken = true;
|
|
Assert.True(token.IsSessionToken);
|
|
|
|
// Act & assert - 3
|
|
token.IsSessionToken = false;
|
|
Assert.False(token.IsSessionToken);
|
|
}
|
|
|
|
[Fact]
|
|
public void UsernameProperty()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act & assert - 1
|
|
Assert.Equal("", token.Username);
|
|
|
|
// Act & assert - 2
|
|
token.Username = "my username";
|
|
Assert.Equal("my username", token.Username);
|
|
|
|
// Act & assert - 3
|
|
token.Username = null;
|
|
Assert.Equal("", token.Username);
|
|
}
|
|
|
|
[Fact]
|
|
public void SecurityTokenProperty_GetsAutopopulated()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act
|
|
var securityToken = token.SecurityToken;
|
|
|
|
// Assert
|
|
Assert.NotNull(securityToken);
|
|
Assert.Equal(AntiForgeryToken.SecurityTokenBitLength, securityToken.BitLength);
|
|
|
|
// check that we're not making a new one each property call
|
|
Assert.Equal(securityToken, token.SecurityToken);
|
|
}
|
|
|
|
[Fact]
|
|
public void SecurityTokenProperty_PropertySetter_DoesNotUseDefaults()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act
|
|
var securityToken = new BinaryBlob(64);
|
|
token.SecurityToken = securityToken;
|
|
|
|
// Assert
|
|
Assert.Equal(securityToken, token.SecurityToken);
|
|
}
|
|
|
|
[Fact]
|
|
public void SecurityTokenProperty_PropertySetter_DoesNotAllowNulls()
|
|
{
|
|
// Arrange
|
|
var token = new AntiForgeryToken();
|
|
|
|
// Act
|
|
token.SecurityToken = null;
|
|
var securityToken = token.SecurityToken;
|
|
|
|
// Assert
|
|
Assert.NotNull(securityToken);
|
|
Assert.Equal(AntiForgeryToken.SecurityTokenBitLength, securityToken.BitLength);
|
|
|
|
// check that we're not making a new one each property call
|
|
Assert.Equal(securityToken, token.SecurityToken);
|
|
}
|
|
}
|
|
} |