CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
CslaModelBinderTest.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="CslaModelBinderTest.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Text;
10using System.Collections.Generic;
11using System.Linq;
12using Microsoft.VisualStudio.TestTools.UnitTesting;
13using System.Collections.Specialized;
14using System.Web.Mvc;
15using System.Globalization;
16
18{
19 [TestClass]
21 {
22 [ClassInitialize()]
23 public static void Initialize(TestContext testContext)
24 {
25 ModelBinders.Binders.DefaultBinder = new CslaModelBinder();
26 }
27
28 [TestMethod]
30 {
31 var model = SingleRoot.GetSingleRoot(1);
32 var values = new NameValueCollection();
33 values.Add("name", "Gimli");
34 values.Add("dob", "1/1/2000");
35
36 var bindingContext = new ModelBindingContext
37 {
38 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(SingleRoot)),
39 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
40 };
41 var binder = new CslaModelBinder();
42 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
43
44 Assert.AreSame(model, retModel, "Return should be the same as original");
45 Assert.AreEqual("Gimli", model.Name);
46 Assert.AreEqual(new SmartDate(new DateTime(2000, 1, 1)), model.DOB);
47 }
48
49 [TestMethod]
51 {
52 var model = SingleRoot.GetSingleRoot(2);
53 var values = new NameValueCollection();
54 values.Add("pfx.name", "Gimli");
55
56 var bindingContext = new ModelBindingContext
57 {
58 ModelName = "pfx",
59 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(SingleRoot)),
60 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
61 };
62 var binder = new CslaModelBinder();
63 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
64
65 Assert.AreSame(model, retModel, "Return should be the same as original");
66 Assert.AreEqual("Gimli", model.Name);
67 }
68
69 [TestMethod]
71 {
73 var values = new NameValueCollection();
74 values.Add("Max5Chars", "More Than 5 Characters");
75 values.Add("Between2And10", "100");
76 values.Add("AlwaysInvalid", "bla..");
77
78 var bindingContext = new ModelBindingContext
79 {
80 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootWithValidation)),
81 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
82 };
83 var binder = new CslaModelBinder();
84 binder.BindModel(new ControllerContext(), bindingContext);
85
86 Assert.IsFalse(model.IsValid, "Object should be invalid");
87 Assert.IsFalse(bindingContext.ModelState.IsValid, "Model State should be invalid");
88 Assert.IsFalse(bindingContext.ModelState.IsValidField("Max5Chars"), "Max5Chars property should be invalid");
89 Assert.AreEqual(1, bindingContext.ModelState["Max5Chars"].Errors.Count);
90 Assert.IsFalse(bindingContext.ModelState.IsValidField("Between2And10"), "Between2And10 property should be invalid");
91 Assert.AreEqual(1, bindingContext.ModelState["Between2And10"].Errors.Count);
92 Assert.IsFalse(bindingContext.ModelState.IsValidField("AlwaysInvalid"), "AlwaysInvalid property should be invalid");
93 Assert.AreEqual(1, bindingContext.ModelState["AlwaysInvalid"].Errors.Count);
94 }
95
96 [TestMethod]
98 {
100 var values = new NameValueCollection();
101 values.Add("pfx.Max5Chars", "More Than 5 Characters");
102 values.Add("pfx.Between2And10", "100");
103 values.Add("pfx.AlwaysInvalid", "bla..");
104
105 var bindingContext = new ModelBindingContext
106 {
107 ModelName = "pfx",
108 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootWithValidation)),
109 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
110 };
111 var binder = new CslaModelBinder();
112 binder.BindModel(new ControllerContext(), bindingContext);
113
114 Assert.IsFalse(model.IsValid, "Object should be invalid");
115 Assert.IsFalse(bindingContext.ModelState.IsValid, "Model State should be invalid");
116 Assert.IsFalse(bindingContext.ModelState.IsValidField("pfx.Max5Chars"), "Max5Chars property should be invalid");
117 Assert.AreEqual(1, bindingContext.ModelState["pfx.Max5Chars"].Errors.Count);
118 Assert.IsFalse(bindingContext.ModelState.IsValidField("pfx.Between2And10"), "Between2And10 property should be invalid");
119 Assert.AreEqual(1, bindingContext.ModelState["pfx.Between2And10"].Errors.Count);
120 Assert.IsFalse(bindingContext.ModelState.IsValidField("pfx.AlwaysInvalid"), "AlwaysInvalid property should be invalid");
121 Assert.AreEqual(1, bindingContext.ModelState["pfx.AlwaysInvalid"].Errors.Count);
122 }
123
124 [TestMethod]
126 {
127 var model = RootList.Get(3);
128 var values = new NameValueCollection();
129 values.Add("[0].AnyString", "Any-0");
130 values.Add("[0].Max5Chars", "Max5-0");
131 values.Add("[1].AnyString", "Any-1");
132 values.Add("[1].Max5Chars", "Max5-1");
133 values.Add("[2].AnyString", "Any-2");
134 values.Add("[2].Max5Chars", "Max5-2");
135
136 var bindingContext = new ModelBindingContext
137 {
138 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootList)),
139 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
140 };
141 var binder = new CslaModelBinder();
142 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
143
144 Assert.AreSame(model, retModel, "Return should be the same as original");
145 Assert.AreEqual("Any-0", model[0].AnyString);
146 Assert.AreEqual("Max5-0", model[0].Max5Chars);
147 Assert.AreEqual("Any-1", model[1].AnyString);
148 Assert.AreEqual("Max5-1", model[1].Max5Chars);
149 Assert.AreEqual("Any-2", model[2].AnyString);
150 Assert.AreEqual("Max5-2", model[2].Max5Chars);
151 }
152
153 [TestMethod]
155 {
156 var model = RootList.Get(2);
157 var values = new NameValueCollection();
158 values.Add("pfx[0].AnyString", "Any-0");
159 values.Add("pfx[0].Max5Chars", "Max5-0");
160 values.Add("pfx[1].AnyString", "Any-1");
161 values.Add("pfx[1].Max5Chars", "Max5-1");
162
163 var bindingContext = new ModelBindingContext
164 {
165 ModelName = "pfx",
166 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootList)),
167 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
168 };
169 var binder = new CslaModelBinder();
170 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
171
172 Assert.AreSame(model, retModel, "Return should be the same as original");
173 Assert.AreEqual("Any-0", model[0].AnyString);
174 Assert.AreEqual("Max5-0", model[0].Max5Chars);
175 Assert.AreEqual("Any-1", model[1].AnyString);
176 Assert.AreEqual("Max5-1", model[1].Max5Chars);
177 }
178
179 [TestMethod]
181 {
182 var model = RootList.Get(1);
183 var values = new NameValueCollection();
184 values.Add("[0].AnyString", "Any-0");
185 values.Add("[0].Max5Chars", "More Than 5 Characters");
186
187 var bindingContext = new ModelBindingContext
188 {
189 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootList)),
190 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
191 };
192 var binder = new CslaModelBinder();
193 binder.BindModel(new ControllerContext(), bindingContext);
194
195 Assert.IsFalse(model.IsValid, "Object should be invalid");
196 Assert.IsFalse(bindingContext.ModelState.IsValid, "Model State should be invalid");
197 Assert.IsFalse(bindingContext.ModelState.IsValidField("[0].Max5Chars"), "Max5Chars property should be invalid");
198 Assert.AreEqual(1, bindingContext.ModelState["[0].Max5Chars"].Errors.Count);
199 }
200
201 [TestMethod]
203 {
204 var model = RootWithChildren.Get(2);
205 var values = new NameValueCollection();
206 values.Add("id", "20");
207 values.Add("name", "Gimli");
208 values.Add("children[0].AnyString", "Any-0");
209 values.Add("children[0].Max5Chars", "Max5-0");
210 values.Add("children[1].AnyString", "Any-1");
211 values.Add("children[1].Max5Chars", "Max5-1");
212
213 var bindingContext = new ModelBindingContext
214 {
215 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootWithChildren)),
216 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
217 };
218 var binder = new CslaModelBinder();
219 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
220
221 Assert.AreSame(model, retModel, "Return should be the same as original");
222 Assert.AreEqual("Gimli", model.Name);
223 Assert.AreEqual("Any-0", model.Children[0].AnyString);
224 Assert.AreEqual("Max5-0", model.Children[0].Max5Chars);
225 Assert.AreEqual("Any-1", model.Children[1].AnyString);
226 Assert.AreEqual("Max5-1", model.Children[1].Max5Chars);
227 }
228
229 [TestMethod]
231 {
232 var model = RootWithChildren.Get(2);
233 var values = new NameValueCollection();
234 values.Add("pfx.id", "20");
235 values.Add("pfx.name", "Gimli");
236 values.Add("pfx.children[0].AnyString", "Any-0");
237 values.Add("pfx.children[0].Max5Chars", "Max5-0");
238 values.Add("pfx.children[1].AnyString", "Any-1");
239 values.Add("pfx.children[1].Max5Chars", "Max5-1");
240
241 var bindingContext = new ModelBindingContext
242 {
243 ModelName = "pfx",
244 ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, typeof(RootWithChildren)),
245 ValueProvider = new NameValueCollectionValueProvider(values, CultureInfo.CurrentCulture)
246 };
247 var binder = new CslaModelBinder();
248 object retModel = binder.BindModel(new ControllerContext(), bindingContext);
249
250 Assert.AreSame(model, retModel, "Return should be the same as original");
251 Assert.AreEqual("Gimli", model.Name);
252 Assert.AreEqual("Any-0", model.Children[0].AnyString);
253 Assert.AreEqual("Max5-0", model.Children[0].Max5Chars);
254 Assert.AreEqual("Any-1", model.Children[1].AnyString);
255 Assert.AreEqual("Max5-1", model.Children[1].Max5Chars);
256 }
257 }
258}
Model binder for use with CSLA .NET editable business objects.
static RootWithChildren Get(int childCount)
Provides a date data type that understands the concept of an empty date value.
Definition: SmartDate.cs:32