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
ViewModelTests.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using Csla.Xaml;
7using Microsoft.VisualStudio.TestTools.UnitTesting;
8
10{
11 [TestClass]
12 public class ViewModelTests
13 {
14 [TestMethod]
16 {
17 var viewModel = new TestViewModel<TestBindingList>();
18 viewModel.Model = TestBindingList.NewEditableList();
19 // List should be empty
20 Assert.IsTrue(viewModel.Model.Count() == 0);
21 viewModel.AddNew(this, new ExecuteEventArgs());
22 Assert.IsTrue(viewModel.Model.Count() == 1);
23 viewModel.AddNew(this, new ExecuteEventArgs());
24 Assert.IsTrue(viewModel.Model.Count() == 2);
25
26 }
27
28
29 [TestMethod]
31 {
32 var viewModel = new TestViewModel<TestBusinessBindingList>();
33 viewModel.Model = TestBusinessBindingList.NewEditableList();
34 // List should be empty
35 Assert.IsTrue(viewModel.Model.Count() == 0);
36 viewModel.AddNew(this, new ExecuteEventArgs());
37 Assert.IsTrue(viewModel.Model.Count() == 1);
38 viewModel.AddNew(this, new ExecuteEventArgs());
39 Assert.IsTrue(viewModel.Model.Count() == 2);
40
41 }
42
43 [TestMethod]
45 {
46 var viewModel = new TestViewModel<TestBusinessBindingList>();
47
48 // unless otherwise set all object level permissions are true
49 Assert.IsTrue(viewModel.CanCreateObject);
50 Assert.IsTrue(viewModel.CanGetObject);
51 Assert.IsTrue(viewModel.CanDeleteObject);
52 Assert.IsTrue(viewModel.CanEditObject);
53
54 // when no Model is set then instance level CanCreate and CanFetch should be the same as object level permissions
55 Assert.IsTrue(viewModel.CanCreate);
56 Assert.IsTrue(viewModel.CanFetch);
57 Assert.IsFalse(viewModel.CanSave);
58 Assert.IsFalse(viewModel.CanDelete);
59 }
60
61 [TestMethod]
63 {
64 var oldSetting = Configuration.ConfigurationManager.AppSettings["CslaSerializationFormatter"];
65 try
66 {
67 Configuration.ConfigurationManager.AppSettings.Set("CslaSerializationFormatter", "MobileFormatter");
68
69 var root = BasicModern.Root.NewRoot();
70
71 var viewModel = new TestViewModel<BasicModern.Root>();
72
73 viewModel.Model = root;
74 viewModel.Model.Name = "root";
75
76 var child = viewModel.Model.Children.AddNew();
77 child.Name = "child";
78
79 viewModel.Save();
80
81 Assert.IsNull(viewModel.Error);
82 }
83 finally
84 {
85 Configuration.ConfigurationManager.AppSettings.Set("CslaSerializationFormatter", oldSetting);
86 }
87 }
88 }
89}
Arguments passed to a method invoked by the Execute trigger action.
T Model
Gets or sets the Model object.