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
ClientContextTests.server.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ClientContextTests.server.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;
10using Csla.Security;
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
23
25{
26 //[TestClass]
27 public partial class ClientContextTests
28 {
29
30 [TestMethod]
31 [TestCategory("SkipWhenLiveUnitTesting")]
33 {
34 var context = GetContext();
35
36 Csla.ApplicationContext.User = new System.Security.Claims.ClaimsPrincipal();
37
38 Csla.ApplicationContext.DataPortalProxy = "Csla.Testing.Business.TestProxies.AppDomainProxy, Csla.Testing.Business";
39
40 var verifier = new ClientContextBOVerifier(true);
41
42 //This is what we are transferring
44
45 verifier.Name = "justin";
46 var result = verifier.Save();
47
48 context.Assert.AreEqual(ContextMessageValues.INITIAL_VALUE, result.ReceivedContextValue);
49 context.Assert.Success();
50
51 context.Complete();
52
53 }
54 }
55
56
57}
Provides consistent context information between the client and server DataPortal objects.
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.