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
GlobalContextTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="GlobalContextTests.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.Configuration;
9using System.Security.Principal;
11using UnitDriven;
12
13#if NUNIT
14using NUnit.Framework;
15using TestClass = NUnit.Framework.TestFixtureAttribute;
16using TestInitialize = NUnit.Framework.SetUpAttribute;
17using TestCleanup = NUnit.Framework.TearDownAttribute;
18using TestMethod = NUnit.Framework.TestAttribute;
19using TestSetup = NUnit.Framework.SetUpAttribute;
20#elif MSTEST
21using Microsoft.VisualStudio.TestTools.UnitTesting;
22#endif
24{
25#if TESTING
26 [System.Diagnostics.DebuggerStepThrough]
27#endif
28 [TestClass]
29 public partial class GlobalContextTests : TestBase
30 {
31 #region Setup/Teardown
32
33 public static IPrincipal _currentPrincipal;
34 [TestInitialize]
35 public void Setup()
36 {
37
38 }
39
40 [TestCleanup]
41 public void Teardown()
42 {
44 Csla.ApplicationContext.GlobalContext.Clear();
45 ConfigurationManager.AppSettings["CslaDataPortalProxy"] = null;
46 }
47
48 #endregion
49
50 [TestMethod]
52 {
53 var context = GetContext();
54 context.Assert.IsNotNull(Csla.ApplicationContext.GlobalContext);
55 context.Assert.Success();
56 context.Complete();
57 }
58
59 [TestMethod]
61 {
62 var context = GetContext();
63 Csla.ApplicationContext.GlobalContext.Clear();
64 Assert.IsTrue(Csla.ApplicationContext.GlobalContext.Count == 0);
65 context.Assert.Success();
66 context.Complete();
67 }
68
69 [TestMethod]
71 {
72 var context = GetContext();
73
75 Csla.ApplicationContext.GlobalContext.Clear();
76
77 Csla.ApplicationContext.ClientContext["TEST"] = "Test";
78
79 Assert.IsTrue(Csla.ApplicationContext.ClientContext.Count == 1);
80 Assert.IsTrue(Csla.ApplicationContext.GlobalContext.Count == 0);
81
82 context.Assert.Success();
83 context.Complete();
84 }
85
86
87
88
89 }
90}
Provides consistent context information between the client and server DataPortal objects.
void Clear()
Clears all context collections.
IPrincipal User
Get or set the current IPrincipal object representing the user's identity.
ContextDictionary ClientContext
Returns the application-specific context data provided by the client.
UnitTestContext GetContext()
Definition: TestBase.cs:12