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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.IO;
using Moq;
using Xunit;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Mvc.Test
{
public class ViewContextTest
{
[Fact]
public void GuardClauses()
{
// Arrange
var controllerContext = new Mock<ControllerContext>().Object;
var view = new Mock<IView>().Object;
var viewData = new ViewDataDictionary();
var tempData = new TempDataDictionary();
var writer = new StringWriter();
// Act & Assert
Assert.ThrowsArgumentNull(
() => new ViewContext(null, view, viewData, tempData, writer),
"controllerContext"
);
Assert.ThrowsArgumentNull(
() => new ViewContext(controllerContext, null, viewData, tempData, writer),
"view"
);
Assert.ThrowsArgumentNull(
() => new ViewContext(controllerContext, view, null, tempData, writer),
"viewData"
);
Assert.ThrowsArgumentNull(
() => new ViewContext(controllerContext, view, viewData, null, writer),
"tempData"
);
Assert.ThrowsArgumentNull(
() => new ViewContext(controllerContext, view, viewData, tempData, null),
"writer"
);
}
[Fact]
public void FormIdGeneratorProperty()
{
// Arrange
var mockHttpContext = new Mock<HttpContextBase>();
mockHttpContext.Setup(o => o.Items).Returns(new Hashtable());
var viewContext = new ViewContext
{
HttpContext = mockHttpContext.Object
};
// Act
string form0Name = viewContext.FormIdGenerator();
string form1Name = viewContext.FormIdGenerator();
string form2Name = viewContext.FormIdGenerator();
// Assert
Assert.Equal("form0", form0Name);
Assert.Equal("form1", form1Name);
Assert.Equal("form2", form2Name);
}
[Fact]
public void PropertiesAreSet()
{
// Arrange
var mockControllerContext = new Mock<ControllerContext>();
mockControllerContext.Setup(o => o.HttpContext.Items).Returns(new Hashtable());
var view = new Mock<IView>().Object;
var viewData = new ViewDataDictionary();
var tempData = new TempDataDictionary();
var writer = new StringWriter();
// Act
ViewContext viewContext = new ViewContext(mockControllerContext.Object, view, viewData, tempData, writer);
// Setting FormContext to null will return the default one later
viewContext.FormContext = null;
// Assert
Assert.Equal(view, viewContext.View);
Assert.Equal(viewData, viewContext.ViewData);
Assert.Equal(tempData, viewContext.TempData);
Assert.Equal(writer, viewContext.Writer);
Assert.False(viewContext.UnobtrusiveJavaScriptEnabled); // Unobtrusive JavaScript should be off by default
Assert.NotNull(viewContext.FormContext); // We get the default FormContext
}
[Fact]
public void ViewContextUsesScopeThunkForInstanceClientValidationFlag()
{
// Arrange
var scope = new Dictionary<object, object>();
var httpContext = new Mock<HttpContextBase>();
var viewContext = new ViewContext { ScopeThunk = () => scope, HttpContext = httpContext.Object };
httpContext.Setup(c => c.Items).Returns(new Hashtable());
// Act & Assert
Assert.False(viewContext.ClientValidationEnabled);
viewContext.ClientValidationEnabled = true;
Assert.True(viewContext.ClientValidationEnabled);
Assert.Equal(true, scope[ViewContext.ClientValidationKeyName]);
viewContext.ClientValidationEnabled = false;
Assert.False(viewContext.ClientValidationEnabled);
Assert.Equal(false, scope[ViewContext.ClientValidationKeyName]);
}
[Fact]
public void ViewContextUsesScopeThunkForInstanceUnobstrusiveJavaScriptFlag()
{
// Arrange
var scope = new Dictionary<object, object>();
var httpContext = new Mock<HttpContextBase>();
var viewContext = new ViewContext { ScopeThunk = () => scope, HttpContext = httpContext.Object };
httpContext.Setup(c => c.Items).Returns(new Hashtable());
// Act & Assert
Assert.False(viewContext.UnobtrusiveJavaScriptEnabled);
viewContext.UnobtrusiveJavaScriptEnabled = true;
Assert.True(viewContext.UnobtrusiveJavaScriptEnabled);
Assert.Equal(true, scope[ViewContext.UnobtrusiveJavaScriptKeyName]);
viewContext.UnobtrusiveJavaScriptEnabled = false;
Assert.False(viewContext.UnobtrusiveJavaScriptEnabled);
Assert.Equal(false, scope[ViewContext.UnobtrusiveJavaScriptKeyName]);
}
[Fact]
public void ViewBagProperty_ReflectsViewData()
{
// Arrange
var mockControllerContext = new Mock<ControllerContext>();
var view = new Mock<IView>().Object;
var viewData = new ViewDataDictionary() { { "A", 1 } };
// Act
ViewContext viewContext = new ViewContext(mockControllerContext.Object, view, viewData, new TempDataDictionary(), new StringWriter());
// Assert
Assert.Equal(1, viewContext.ViewBag.A);
}
[Fact]
public void ViewBagProperty_ReflectsNewViewDataInstance()
{
// Arrange
var mockControllerContext = new Mock<ControllerContext>();
var view = new Mock<IView>().Object;
var viewData = new ViewDataDictionary() { { "A", 1 } };
ViewContext viewContext = new ViewContext(mockControllerContext.Object, view, viewData, new TempDataDictionary(), new StringWriter());
// Act
viewContext.ViewData = new ViewDataDictionary() { { "A", "bar" } };
// Assert
Assert.Equal("bar", viewContext.ViewBag.A);
}
[Fact]
public void ViewBag_PropagatesChangesToViewData()
{
// Arrange
var mockControllerContext = new Mock<ControllerContext>();
var view = new Mock<IView>().Object;
var viewData = new ViewDataDictionary() { { "A", 1 } };
ViewContext viewContext = new ViewContext(mockControllerContext.Object, view, viewData, new TempDataDictionary(), new StringWriter());
// Act
viewContext.ViewBag.A = "foo";
viewContext.ViewBag.B = 2;
// Assert
Assert.Equal("foo", viewContext.ViewData["A"]);
Assert.Equal(2, viewContext.ViewData["B"]);
}
}
}
|