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
RoutingTagTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RoutingTagTests.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.Collections.Generic;
10using System.Linq;
11using System.Text;
12using Csla;
13using Csla.TestHelpers;
14
15#if !NUNIT
16
17using Microsoft.VisualStudio.TestTools.UnitTesting;
18
19#else
20using NUnit.Framework;
21using TestClass = NUnit.Framework.TestFixtureAttribute;
22using TestInitialize = NUnit.Framework.SetUpAttribute;
23using TestCleanup = NUnit.Framework.TearDownAttribute;
24using TestMethod = NUnit.Framework.TestAttribute;
25#endif
26
28{
29 [TestClass]
30 public class RoutingTagTests
31 {
32 private static TestDIContext _testDIContext;
33
35 public static void ClassInitialize(TestContext context)
36 {
37 _testDIContext = TestDIContextFactory.CreateDefaultContext();
38 }
39
40 // Not sure what the CSLA 6 equivalent of this is - or, for that matter, why it might be useful.
41 // There is no configuration change performed for the tests, so why would we need to clean one up?
42 // If there is global state to clean up here, I don't understand how/why
43 //[TestCleanup]
44 //public void Cleanup()
45 //{
46 // new Csla.Configuration.CslaConfiguration()
47 // .VersionRoutingTag(null)
48 // .SettingsChanged();
49 //}
50
51 [TestMethod]
52 public void GetRoutingTag()
53 {
54 var proxy = CreateTestHttpProxy();
55 var method = proxy.GetType().BaseType.GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
56 .Where(r => r.Name == "GetRoutingToken")
57 .FirstOrDefault();
58
59 string result = (string)method.Invoke(proxy, new object[] { typeof(RoutingTest) });
60 Assert.AreEqual("mytag", result);
61 }
62
63 [TestMethod]
65 {
66 var proxy = CreateTestHttpProxy();
67 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
68 .Where(r => r.Name == "CreateOperationTag")
69 .FirstOrDefault();
70 string result = (string)method.Invoke(proxy, new object[] { "create", "", "" });
71 Assert.AreEqual("create", result);
72 }
73
74 [TestMethod]
75 public void CreateTagNoVersion()
76 {
77 var proxy = CreateTestHttpProxy();
78 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
79 .Where(r => r.Name == "CreateOperationTag")
80 .FirstOrDefault();
81 string result = (string)method.Invoke(proxy, new object[] { "create", "", "mytag" });
82 Assert.AreEqual("create/mytag-", result);
83 }
84
85 [TestMethod]
86 public void CreateTagNoRoute()
87 {
88 var proxy = CreateTestHttpProxy();
89 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
90 .Where(r => r.Name == "CreateOperationTag")
91 .FirstOrDefault();
92 string result = (string)method.Invoke(proxy, new object[] { "create", "v1", "" });
93 Assert.AreEqual("create/-v1", result);
94 }
95
96 [TestMethod]
97 public void CreateTag()
98 {
99 var proxy = CreateTestHttpProxy();
100 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
101 .Where(r => r.Name == "CreateOperationTag")
102 .FirstOrDefault();
103 string result = (string)method.Invoke(proxy, new object[] { "create", "v1", "mytag" });
104 Assert.AreEqual("create/mytag-v1", result);
105 }
106
111 private Csla.Channels.Http.HttpProxy CreateTestHttpProxy()
112 {
114 Csla.Channels.Http.HttpProxyOptions proxyOptions;
115 System.Net.Http.HttpClient httpClient;
116
117 var applicationContext = _testDIContext.CreateTestApplicationContext();
118 httpClient = new System.Net.Http.HttpClient();
119 proxyOptions = new Csla.Channels.Http.HttpProxyOptions();
120 proxy = new Csla.Channels.Http.HttpProxy(applicationContext, httpClient, proxyOptions);
121
122 return proxy;
123 }
124 }
125
127 [DataPortalServerRoutingTag("mytag")]
128 public class RoutingTest : BusinessBase<RoutingTest>
129 {
130 }
131}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Implements a data portal proxy to relay data portal calls to a remote application server by using htt...
Definition: HttpProxy.cs:23
Type to carry context information for DI in unit tests
static void ClassInitialize(TestContext context)
@ Serializable
Prevents updating or inserting until the transaction is complete.