-
Notifications
You must be signed in to change notification settings - Fork 659
Expand file tree
/
Copy pathCookieTempDataProviderFacts.cs
More file actions
203 lines (175 loc) · 8.83 KB
/
CookieTempDataProviderFacts.cs
File metadata and controls
203 lines (175 loc) · 8.83 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// 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;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
using Moq;
using Newtonsoft.Json;
using Xunit;
namespace NuGetGallery.Infrastructure
{
public class CookieTempDataProviderFacts
{
public class TheLoadTempDataMethod
{
[Fact]
public void RetrievesValuesFromCookie()
{
var cookies = new HttpCookieCollection();
var tempData = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)
{
{ "message", "Say hello to my little friend" },
{ "question", "How am I funny?" }
};
// Serialize and protect the tempData dictionary
var json = JsonConvert.SerializeObject(tempData);
var protectedBytes = MachineKey.Protect(Encoding.UTF8.GetBytes(json), "__Controller::TempData");
var cookie = new HttpCookie("__Controller::TempData")
{
HttpOnly = true,
Secure = true,
Value = Convert.ToBase64String(protectedBytes)
};
cookies.Add(cookie);
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Request.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var loadedTempData = provider.LoadTempData(controllerContext);
Assert.Equal(2, loadedTempData.Count);
Assert.Equal("Say hello to my little friend", loadedTempData["message"]);
Assert.Equal("How am I funny?", loadedTempData["question"]);
Assert.Equal("How am I funny?", loadedTempData["QUESTION"]);
}
[Fact]
public void DoesNotThrowWhenKeyValuesFromCookieContainsNullKey()
{
var cookies = new HttpCookieCollection();
var tempData = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)
{
{ "message", "Say hello to my little friend" },
{ "question", "How am I funny?" }
};
// Serialize and protect the tempData dictionary
var json = JsonConvert.SerializeObject(tempData);
var protectedBytes = MachineKey.Protect(Encoding.UTF8.GetBytes(json), "__Controller::TempData");
var cookie = new HttpCookie("__Controller::TempData")
{
HttpOnly = true,
Secure = true,
Value = Convert.ToBase64String(protectedBytes)
};
cookies.Add(cookie);
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Request.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var loadedTempData = provider.LoadTempData(controllerContext);
Assert.Equal(2, loadedTempData.Count);
Assert.Equal("Say hello to my little friend", loadedTempData["message"]);
Assert.Equal("How am I funny?", loadedTempData["question"]);
Assert.Equal("How am I funny?", loadedTempData["QUESTION"]);
}
[Fact]
public void WithNullCookieReturnsEmptyDictionary()
{
var cookies = new HttpCookieCollection();
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Request.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var tempData = provider.LoadTempData(controllerContext);
Assert.Empty(tempData);
}
[Fact]
public void WithEmptyCookieReturnsEmptyDictionary()
{
var cookies = new HttpCookieCollection();
var cookie = new HttpCookie("__Controller::TempData");
cookie.HttpOnly = true;
cookies.Add(cookie);
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Request.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var tempData = provider.LoadTempData(controllerContext);
Assert.Empty(tempData);
}
}
public class TheSaveTempDataMethod
{
[Fact]
public void StoresValuesInCookieInEncodedFormat()
{
var cookies = new HttpCookieCollection();
var httpContext = new Mock<HttpContextBase>();
var items = new System.Collections.Generic.Dictionary<object, object>
{
[ServicesConstants.CookieComplianceCanWriteAnalyticsCookies] = true
};
httpContext.Setup(c => c.Items).Returns(items);
httpContext.Setup(c => c.Request.Cookies).Returns(new HttpCookieCollection());
httpContext.Setup(c => c.Response.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var tempData = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)
{
{ "message", "Say hello to my little friend" },
{ "key2", 123 },
{ "key3", "dumb&dumber?:;,isit" }
};
provider.SaveTempData(controllerContext, tempData);
Assert.Single(cookies);
var cookie = cookies["__Controller::TempData"];
Assert.True(cookie.HttpOnly);
Assert.True(cookie.Secure);
Assert.Equal(SameSiteMode.Lax, cookie.SameSite);
// Decrypt and deserialize the cookie value
var unprotectedBytes = MachineKey.Unprotect(Convert.FromBase64String(cookie.Value), "__Controller::TempData");
var json = Encoding.UTF8.GetString(unprotectedBytes);
var deserialized = JsonConvert.DeserializeObject<Dictionary<string, object>>(json);
Assert.Equal(3, deserialized.Count);
Assert.Equal("Say hello to my little friend", deserialized["message"]);
Assert.Equal(123, Convert.ToInt32(deserialized["key2"]));
Assert.Equal("dumb&dumber?:;,isit", deserialized["key3"]);
}
[Fact]
public void WithNoValuesDoesNotAddCookie()
{
var cookies = new HttpCookieCollection();
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Response.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
provider.SaveTempData(controllerContext, new Dictionary<string, object>());
Assert.Empty(cookies);
}
[Fact]
public void WithInitialStateAndNoValuesClearsCookie()
{
// Arrange and Setup
var cookies = new HttpCookieCollection();
var cookie = new HttpCookie("__Controller::TempData");
cookie.HttpOnly = true;
cookie.Secure = true;
cookies.Add(cookie);
cookie["message"] = "clear";
var httpContext = new Mock<HttpContextBase>();
httpContext.Setup(c => c.Request.Cookies).Returns(cookies);
httpContext.Setup(c => c.Response.Cookies).Returns(cookies);
ITempDataProvider provider = new CookieTempDataProvider(httpContext.Object);
var controllerContext = new ControllerContext();
var tempData = provider.LoadTempData(controllerContext);
// Validate
provider.SaveTempData(controllerContext, new Dictionary<string, object>());
Assert.Single(cookies);
Assert.True(cookies[0].HttpOnly);
Assert.True(cookies[0].Secure);
Assert.Equal("", cookies[0].Value);
}
}
}
}