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
ServiceProviderMethodCallerTests.cs
Go to the documentation of this file.
1
8//using System;
9//using System.Collections.Generic;
10//using System.Linq;
11//using System.Text;
12//using System.Threading.Tasks;
13//using Csla;
14//#if !NUNIT
15//using Microsoft.VisualStudio.TestTools.UnitTesting;
16//#else
17//using NUnit.Framework;
18//using TestClass = NUnit.Framework.TestFixtureAttribute;
19//using TestInitialize = NUnit.Framework.SetUpAttribute;
20//using TestCleanup = NUnit.Framework.TearDownAttribute;
21//using TestMethod = NUnit.Framework.TestAttribute;
22//#endif
23
24//namespace Csla.Test.DataPortal
25//{
26// [TestClass]
27// public class ServiceProviderMethodCallerTests
28// {
29// [TestMethod]
30// [ExpectedException(typeof(ArgumentNullException))]
31// public void NoTarget()
32// {
33// Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(null, null);
34// }
35
36// [TestMethod]
37// public void FindMethodInterfaceCriteria()
38// {
39// var obj = new InterfaceCriteria();
40// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(
41// obj, new object[] { new MyCriteria() });
42// Assert.IsNotNull(method);
43// }
44
45// [TestMethod]
46// public void FindMethodNullableCriteria()
47// {
48// var obj = new NullableCriteria();
49// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
50// Assert.IsNotNull(method, "with int");
51// method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { null });
52// Assert.IsNotNull(method, "with null");
53// }
54
55// [TestMethod]
56// public async Task FindMethodNullableCriteriaWithValueViaDataPortal()
57// {
58// var obj = await Csla.DataPortal.CreateAsync<NullableCriteria>(123);
59// Assert.IsNotNull(obj);
60// }
61
62// [TestMethod]
63// public async Task FindMethodNullableCriteriaWithNullViaDataPortal()
64// {
65// var obj = await Csla.DataPortal.CreateAsync<NullableCriteria>(null);
66// Assert.IsNotNull(obj);
67// }
68
69// [TestMethod]
70// public void FindMethodNoCriteriaNoDI()
71// {
72// var obj = new SimpleNoCriteriaCreate();
73// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { null });
74// Assert.IsNotNull(method);
75// }
76
77// [TestMethod]
78// public void FindMethodCriteriaDI()
79// {
80// var obj = new CriteriaCreateWithDI();
81// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
82// Assert.IsNotNull(method);
83// }
84
85// [TestMethod]
86// [ExpectedException(typeof(System.Reflection.TargetParameterCountException))]
87// public void FindMethodBadCriteriaDI()
88// {
89// var obj = new CriteriaCreateWithDI();
90// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { "hi" });
91// Assert.IsNotNull(method);
92// }
93
94// [TestMethod]
95// public void FindMethodMultipleCriteriaDI()
96// {
97// var obj = new MultipleCriteriaCreateWithDI();
98// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123, "hi" });
99// Assert.IsNotNull(method);
100// }
101
102// [TestMethod]
103// public void FindMethodMultipleCriteriaDIInterleaved()
104// {
105// var obj = new MultipleCriteriaCreateWithDIInterleaved();
106// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123, "hi" });
107// Assert.IsNotNull(method);
108// }
109
110// [TestMethod]
111// public void FindMethodCriteriaMultipleDI()
112// {
113// var obj = new CriteriaCreateWithMultipleDI();
114// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
115// method.PrepForInvocation();
116// Assert.IsNotNull(method);
117// Assert.AreEqual(3, method.Parameters.Count());
118// }
119
120// [TestMethod]
121// [ExpectedException(typeof(System.Reflection.AmbiguousMatchException))]
122// public void FindMethodCriteriaMultipleAmbiguousDI()
123// {
124// var obj = new CriteriaCreateWithMultipleAmbiguousDI();
125// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
126// }
127
128// [TestMethod]
129// [ExpectedException(typeof(System.Reflection.TargetParameterCountException))]
130// public void FindMethodSingleCriteriaInvalid()
131// {
132// var obj = new SimpleNoCriteriaCreate();
133// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
134// Assert.IsNotNull(method);
135// }
136
137// [TestMethod]
138// public void FindMethodSingleCriteriaValid()
139// {
140// var obj = new SimpleCriteriaCreate();
141// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
142// Assert.IsNotNull(method);
143// }
144
145// [TestMethod]
146// public void FindMethodObjectCriteriaValid()
147// {
148// var obj = new ObjectCriteriaCreate();
149// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
150// Assert.IsNotNull(method);
151// }
152
153// [TestMethod]
154// public void FindMethodObjectCriteriaSubtype()
155// {
156// var obj = new ObjectCriteriaCreateSubtype();
157// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
158// Assert.IsNotNull(method);
159// }
160
161// [TestMethod]
162// [ExpectedException(typeof(System.Reflection.TargetParameterCountException))]
163// public void FindMethodSingleCriteriaBadType()
164// {
165// var obj = new SimpleCriteriaCreate();
166// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { "hi" });
167// Assert.IsNotNull(method);
168// }
169
170// [TestMethod]
171// public void FindMethod_PrivateBase()
172// {
173// var obj = new PrivateMethod();
174// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<ExecuteAttribute>(obj, null);
175// Assert.IsNotNull(method);
176// Assert.AreEqual("Execute", method.MethodInfo.Name, "Method name should match");
177// }
178
179// [TestMethod]
180// public void FindMethod_PrivateBase_Invoke()
181// {
182// var obj = Csla.DataPortal.Create<PrivateMethod>();
183// obj = Csla.DataPortal.Execute(obj);
184// Assert.IsNotNull(obj);
185// }
186
187// [TestMethod]
188// public void FindMethodDataPortal_CreateBase()
189// {
190// var obj = new OldStyleNoOverride();
191// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, null);
192// Assert.IsNotNull(method);
193// }
194
195// [TestMethod]
196// public void FindMethodDataPortal_CreateCriteria()
197// {
198// var obj = new OldStyleCreate();
199// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
200// Assert.IsNotNull(method);
201// }
202
203// [TestMethod]
204// public void FindMethodDataPortal_CreateCriteriaBase()
205// {
206// var obj = new OldStyleCriteriaBase();
207// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
208// Assert.IsNotNull(method);
209// }
210
211// [TestMethod]
212// public void FindMethodDataPortal_Create()
213// {
214// var obj = new OldStyleCreate();
215// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, null);
216// Assert.IsNotNull(method);
217// }
218
219// [TestMethod]
220// public void FindMethodDataPortal_Create_Criteria()
221// {
222// var obj = new OldStyleCreate();
223// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { 123 });
224// Assert.IsNotNull(method);
225// }
226
227// [TestMethod]
228// public void FindMethodAmbiguousCriteria()
229// {
230// var obj = new AmbiguousNoCriteriaCreate();
231// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, null);
232// method.PrepForInvocation();
233// Assert.IsNotNull(method);
234// Assert.AreEqual(1, method.Parameters.Count());
235// }
236
237// [TestMethod]
238// public void FindChildLegacyUpdate()
239// {
240// var obj = new BasicChild();
241// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<UpdateChildAttribute>(obj, null);
242// Assert.IsNotNull(method);
243// }
244
245// [TestMethod]
246// public void FindChildParamsUpdate()
247// {
248// var obj = new ParamsChild();
249// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<UpdateChildAttribute>(obj, null);
250// Assert.IsNotNull(method);
251// }
252
253// [TestMethod]
254// public void FindChildIntUpdate()
255// {
256// var obj = new ModernChild();
257// object[] paramsArray = Server.DataPortal.GetCriteriaArray(123);
258// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<UpdateChildAttribute>(obj, paramsArray);
259// Assert.IsNotNull(method);
260
261// var dp = new Csla.Server.ChildDataPortal();
262// dp.Update(obj, 42);
263// Assert.AreEqual(42, obj.Id);
264// obj = new ModernChild();
265// dp.Update(obj, 123);
266// Assert.AreEqual(123, obj.Id);
267// }
268
269// [TestMethod]
270// public void FindOverlappingCriteriaInt()
271// {
272// var obj = new MultipleOverlappingCriteria();
273// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<FetchAttribute>(obj, new object[] { 1 });
274// Assert.IsNotNull(method);
275// }
276
277// [TestMethod]
278// public void Issue2109()
279// {
280// var obj = new Issue2109List();
281// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<FetchAttribute>(obj, new object[] { new string[] { "a" } });
282// Assert.IsNotNull(method, "string[]");
283// var criteria = new My2109Criteria();
284// method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<FetchAttribute>(obj, new object[] { criteria });
285// Assert.IsNotNull(method, "ICriteriaBase");
286
287// obj = Csla.DataPortal.Fetch<Issue2109List>(new My2109Criteria());
288// Assert.IsNotNull(obj, "Fetch via criteria");
289// Assert.AreEqual("Csla.Test.DataPortal.My2109Criteria", obj[0].Name);
290// obj = Csla.DataPortal.Fetch<Issue2109List>(new string[] { "a" });
291// Assert.IsNotNull(obj, "Fetch via string array");
292// Assert.AreEqual("a", obj[0].Name);
293// }
294
295// [TestMethod]
296// public void Issue2287BusinessBindingListFetch()
297// {
298// var obj = new Issue2287List();
299// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<FetchAttribute>(obj, new object[] { new Issue2287List.Criteria() });
300// Assert.IsNotNull(method);
301// Assert.AreEqual(obj.GetType().BaseType, method.MethodInfo.DeclaringType);
302// }
303
304// [TestMethod]
305// public void Issue2287BusinessBaseFetch()
306// {
307// var obj = new Issue2287Edit();
308// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<CreateAttribute>(obj, new object[] { });
309// Assert.IsNotNull(method);
310// }
311
312// [TestMethod]
313// public void Issue2396DeleteSelfChildNoParams()
314// {
315// var obj = new Issue2396Edit();
316// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<DeleteSelfChildAttribute>(obj, new object[] { });
317// Assert.IsNotNull(method);
318// Assert.AreEqual(0, method.MethodInfo.GetParameters().Count());
319// }
320
321// [TestMethod]
322// public void Issue2396DeleteSelfChildWithParams()
323// {
324// var obj = new Issue2396EditParams();
325// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<DeleteSelfChildAttribute>(obj, new object[] { 1, 2 });
326// Assert.IsNotNull(method);
327// Assert.AreEqual(2, method.MethodInfo.GetParameters().Count());
328// }
329
330// [TestMethod]
331// public void Issue2396DeleteSelfChildFallbackToNoParams()
332// {
333// var obj = new Issue2396Edit();
334// var method = Csla.Reflection.ServiceProviderMethodCaller.FindDataPortalMethod<DeleteSelfChildAttribute>(obj, new object[] { 1, 2 });
335// Assert.IsNotNull(method);
336// Assert.AreEqual(0, method.MethodInfo.GetParameters().Count());
337// }
338// }
339
340// //
341// // End of test methods, start of support classes
342// //
343
344// [Serializable]
345// public class OldStyleNoOverride : BusinessBase<OldStyleNoOverride>
346// {
347// [Create]
348// private void DataPortal_Create()
349// {
350// BusinessRules.CheckRules();
351// }
352// }
353
354// [Serializable]
355// public class PrivateMethodBase<T> : CommandBase<T>
356// where T : CommandBase<T>
357// {
358// [Create]
359// private void Create()
360// { }
361
362// [Execute]
363// private void Execute()
364// { }
365// }
366
367// [Serializable]
368// public class PrivateMethod : PrivateMethodBase<PrivateMethod>
369// {
370
371// }
372
373// [Serializable]
374// public class OldStyleCreate : BusinessBase<OldStyleCreate>
375// {
376// [Create]
377// protected void DataPortal_Create()
378// {
379// BusinessRules.CheckRules();
380// }
381
382// [Create]
383// private void DataPortal_Create(int id)
384// {
385// BusinessRules.CheckRules();
386// }
387// }
388
389// [Serializable]
390// public class OldStyleCriteria : BusinessBase<OldStyleCriteria>
391// {
392// [Create]
393// private void DataPortal_Create(int id)
394// {
395// BusinessRules.CheckRules();
396// }
397// }
398
399// [Serializable]
400// public class OldStyleCriteriaBase : OldStyleCriteria
401// {
402// }
403
404// public interface ICriteria : IReadOnlyBase
405// {
406// int Id { get; }
407// }
408
409// public class MyCriteria : ReadOnlyBase<MyCriteria>, ICriteria
410// {
411// public int Id => 123;
412// }
413
414// [Serializable]
415// public class InterfaceCriteria : BusinessBase<InterfaceCriteria>
416// {
417// [Create]
418// private void Create(ICriteria criteria) { }
419// }
420
421// [Serializable]
422// public class SimpleNoCriteriaCreate : BusinessBase<SimpleNoCriteriaCreate>
423// {
424// [Create]
425// private void Create() { }
426
427// [Create]
428// private void Create(ICloneable x) { }
429// }
430
431// [Serializable]
432// public class SimpleCriteriaCreate : BusinessBase<SimpleCriteriaCreate>
433// {
434// [Create]
435// private void Create(int id) { }
436// }
437
438// [Serializable]
439// public class ObjectCriteriaCreate : BusinessBase<ObjectCriteriaCreate>
440// {
441// [Create]
442// private void Create(object id) { }
443// }
444
445// [Serializable]
446// public class ObjectCriteriaCreateSubtype : ObjectCriteriaCreate
447// { }
448
449// [Serializable]
450// public class AmbiguousNoCriteriaCreate : BusinessBase<AmbiguousNoCriteriaCreate>
451// {
452// [Create]
453// private void Create() { }
454
455// [Create]
456// private void Create([Inject] ICloneable x) { }
457// }
458
459// [Serializable]
460// public class CriteriaCreateWithDI : BusinessBase<CriteriaCreateWithDI>
461// {
462// [Create]
463// private void Create() { }
464
465// [Create]
466// private void Create(int id, [Inject] ICloneable x) { }
467// }
468
469// [Serializable]
470// public class MultipleCriteriaCreateWithDI : BusinessBase<MultipleCriteriaCreateWithDI>
471// {
472// [Create]
473// private void Create() { }
474
475// [Create]
476// private void Create(int id, string foo, [Inject] ICloneable x) { }
477// }
478
479// [Serializable]
480// public class CriteriaCreateWithMultipleDI : BusinessBase<CriteriaCreateWithMultipleDI>
481// {
482// [Create]
483// private void Create(int id, [Inject] ICloneable x) { }
484
485// [Create]
486// private void Create(int id, [Inject] ICloneable x, [Inject] IAsyncResult y) { }
487// }
488
489// [Serializable]
490// public class CriteriaCreateWithMultipleAmbiguousDI : BusinessBase<CriteriaCreateWithMultipleAmbiguousDI>
491// {
492// [Create]
493// private void Create(int id, [Inject] ICloneable x) { }
494
495// [Create]
496// private void Create(int id, [Inject] ICloneable x, [Inject] IAsyncResult y) { }
497
498// [Create]
499// private void Create(int id, [Inject] ICloneable x, [Inject] IFormattable y) { }
500// }
501
502// [Serializable]
503// public class MultipleCriteriaCreateWithDIInterleaved : BusinessBase<MultipleCriteriaCreateWithDIInterleaved>
504// {
505// [Create]
506// private void Create() { }
507
508// [Create]
509// private void Create(int id, [Inject] ICloneable x, string foo) { }
510// }
511
512// [Serializable]
513// public class BasicChild : BusinessBase<BasicChild>
514// {
515// private void Child_Update()
516// {
517// // nada
518// }
519// }
520
521// [Serializable]
522// public class ParamsChild : BusinessBase<ParamsChild>
523// {
524// private void Child_Update(params object[] parameters)
525// {
526// // nada
527// }
528// }
529
530// [Serializable]
531// public class ModernChild : BusinessBase<ModernChild>
532// {
533// public static readonly PropertyInfo<int> IdProperty = RegisterProperty<int>(nameof(Id));
534// public int Id
535// {
536// get { return GetProperty(IdProperty); }
537// set { SetProperty(IdProperty, value); }
538// }
539
540// [UpdateChild]
541// [InsertChild]
542// private void UpdateOrInsert(int id)
543// {
544// using (BypassPropertyChecks)
545// Id = id;
546// }
547// }
548
549// [Serializable]
550// public class NullableCriteria : BusinessBase<NullableCriteria>
551// {
552// [Create]
553// private void Create(int? c)
554// { }
555// }
556
557// [Serializable]
558// public class MultipleOverlappingCriteria : BusinessBase<MultipleOverlappingCriteria>
559// {
560// [Fetch]
561// private void Fetch(int id)
562// {
563// }
564
565// [Fetch]
566// private void Fetch(int id, bool? value)
567// {
568// }
569
570// [Fetch]
571// private void Fetch(int id, int? value)
572// {
573// }
574
575// [Fetch]
576// private void Fetch(List<int?> values)
577// {
578// }
579
580// [Fetch]
581// private void Fetch(List<DateTime?> values)
582// {
583// }
584// }
585
586// [Serializable]
587// public class Issue2109List : ReadOnlyListBase<Issue2109List, Issue2109>
588// {
589// private void DataPortal_Fetch(ICriteriaBase criteria)
590// {
591// using (LoadListMode)
592// {
593// Add(Csla.DataPortal.Fetch<Issue2109>(criteria.ToString()));
594// }
595// }
596
597// private void DataPortal_Fetch(IEnumerable<string> criteria)
598// {
599// using (LoadListMode)
600// {
601// Add(Csla.DataPortal.Fetch<Issue2109>(criteria.First().ToString()));
602// }
603// }
604// }
605
606// [Serializable]
607// public class Issue2109 : BusinessBase<Issue2109>
608// {
609// public static readonly PropertyInfo<string> NameProperty = RegisterProperty<string>(nameof(Name));
610// public string Name
611// {
612// get => GetProperty(NameProperty);
613// set => SetProperty(NameProperty, value);
614// }
615
616// private void DataPortal_Fetch(string name)
617// {
618// using (BypassPropertyChecks)
619// {
620// Name = name;
621// }
622// }
623// }
624
625// public interface ICriteriaBase
626// { }
627
628// [Serializable]
629// public class My2109Criteria : ICriteriaBase
630// {
631// }
632
633// [Serializable]
634// public class Issue2287List : Issue2287ListBase
635// {
636// public static Issue2287List FetchIssue2287List()
637// {
638// return Csla.DataPortal.Fetch<Issue2287List>(new Criteria());
639// }
640// }
641
642// [Serializable]
643// public class Issue2287ListBase : Csla.BusinessBindingListBase<Issue2287List, Issue2287Edit>
644// {
645// private void DataPortal_Fetch(Criteria criteria)
646// {
647// }
648
649// [Serializable()]
650// public class Criteria : Csla.CriteriaBase<Criteria>
651// {
652// }
653// }
654
655// [Serializable]
656// public class Issue2287Edit : Issue2287EditBase<Issue2287Edit>
657// {
658// private new void DataPortal_Create()
659// {
660// BusinessRules.CheckRules();
661// }
662// }
663
664// [Serializable]
665// public class Issue2287EditBase<T> : BusinessBase<Issue2287EditBase<T>>
666// {
667// protected void DataPortal_Create()
668// {
669// }
670// }
671
672// [Serializable]
673// public class Issue2396Edit : BusinessBase<Issue2396Edit>
674// {
675// [DeleteSelfChild]
676// private void DeleteSelf()
677// { }
678// }
679
680// [Serializable]
681// public class Issue2396EditParams : BusinessBase<Issue2396EditParams>
682// {
683// [DeleteSelfChild]
684// private void DeleteSelf(int x, int y)
685// { }
686// }
687//}