HttpApplicationConfigurerTests.cs :  » Inversion-of-Control-Dependency-Injection » Spring.net » Spring » Context » Support » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Inversion of Control Dependency Injection » Spring.net 
Spring.net » Spring » Context » Support » HttpApplicationConfigurerTests.cs
#region License

/*
 * Copyright  2002-2007 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#endregion

#region Imports

using System.Configuration;
using System.Reflection;
using System.Web;
using Common.Logging;
using NUnit.Framework;
using Spring.Objects.Factory.Config;
using Spring.Objects.Factory.Support;
using Spring.Objects.Factory.Xml;

#endregion

namespace Spring.Context.Support{
    /// <summary>
    ///
    /// </summary>
    /// <author>Erich Eichinger</author>
    [TestFixture]
    public class HttpApplicationConfigurerTests
    {
        [TestFixtureSetUp]
        public void SetUpFixture()
        {
            LogManager.Adapter = new Common.Logging.Simple.TraceLoggerFactoryAdapter();
        }

        [SetUp]
        public void SetUp()
        {
            HttpApplicationConfigurer h1 = new HttpApplicationConfigurer();
            h1.ApplicationTemplate = null;
            h1.ModuleTemplates.Clear();
        }

        /// <summary>
        /// All <see cref="HttpApplicationConfigurer"/> instances share the same underlying ApplicationTemplate
        /// </summary>
        [Test]
        public void ShareApplicationTemplate()
        {
            RootObjectDefinition rod = new RootObjectDefinition();

            HttpApplicationConfigurer h1 = new HttpApplicationConfigurer();
            h1.ApplicationTemplate = rod;
            Assert.AreEqual(rod, h1.ApplicationTemplate);

            // h2 returns same template as h1
            HttpApplicationConfigurer h2 = new HttpApplicationConfigurer();
            Assert.AreEqual(rod, h2.ApplicationTemplate);
            Assert.AreEqual(h2.ApplicationTemplate, h1.ApplicationTemplate);

            // allows overriding
            rod = new RootObjectDefinition();
            h2.ApplicationTemplate = rod;
            Assert.AreEqual(rod, h1.ApplicationTemplate);
        }

        /// <summary>
        /// All <see cref="HttpApplicationConfigurer"/> instances share the same underlying ModuleTemplates table
        /// </summary>
        [Test]
        public void ShareModuleTemplates()
        {
            // is never null
            HttpApplicationConfigurer h1;
            HttpApplicationConfigurer h2;
            RootObjectDefinition rod;

            // is shared
            h1 = new HttpApplicationConfigurer();
            Assert.IsNotNull(h1.ModuleTemplates);
            h2 = new HttpApplicationConfigurer();
            Assert.AreEqual(h1.ModuleTemplates, h2.ModuleTemplates);

            // allows overriding
            rod = new RootObjectDefinition();
            h1.ModuleTemplates.Add("test", rod);
            Assert.AreEqual(rod, h1.ModuleTemplates["test"]);
            h2.ModuleTemplates.Add("test", rod);
            Assert.AreEqual(1, h2.ModuleTemplates.Count);
            Assert.AreEqual(rod, h2.ModuleTemplates["test"]);
        }

        [Test]
        public void ConfiguresApplicationAndModulesFromTemplate()
        {
            StaticApplicationContext appContext = CreateTestContext();

            HttpApplicationConfigurer h;
            RootObjectDefinition rod;

            h = new HttpApplicationConfigurer();
            rod = new RootObjectDefinition();
            rod.PropertyValues.Add("TestObject", new RuntimeObjectReference("testObject"));
            h.ApplicationTemplate = rod;
            rod = new RootObjectDefinition();
            rod.PropertyValues.Add("TestObject", new RuntimeObjectReference("testObject1"));
            h.ModuleTemplates.Add("TestModule1", rod);
            rod = new RootObjectDefinition();
            rod.PropertyValues.Add("TestObject", new RuntimeObjectReference("testObject2"));
            h.ModuleTemplates.Add("TestModule2", rod);

            TestModule m1 = new TestModule();
            TestModule m2 = new TestModule();

            TestApplication appObject = new TestApplication(new ModuleEntry[]
                                                                {
                                                                    new ModuleEntry("TestModule1", m1)
                                                                    , new ModuleEntry("TestModule2", m2),
                                                                });
            HttpApplicationConfigurer.Configure(appContext, appObject);
            // app configured
            Assert.AreEqual(appContext.GetObject("testObject"), appObject.TestObject);
            // modules configured
            Assert.AreEqual(appContext.GetObject("testObject1"), m1.TestObject);
            Assert.AreEqual(appContext.GetObject("testObject2"), m2.TestObject);
        }

        [Test]
#if NET_2_0
        [ExpectedException(typeof(ConfigurationErrorsException))]
#else
        [ExpectedException(typeof(System.Configuration.ConfigurationException))]
#endif
        public void ThrowsOnUnapplicableModuleTemplate()
        {
            StaticApplicationContext appContext = CreateTestContext();

            HttpApplicationConfigurer h;
            RootObjectDefinition rod;

            h = new HttpApplicationConfigurer();
            rod = new RootObjectDefinition();
            rod.PropertyValues.Add("TestObject", new RuntimeObjectReference("testObject1"));
            h.ModuleTemplates.Add("TestModule1", rod);

            TestApplication appObject = new TestApplication(null);
            HttpApplicationConfigurer.Configure(appContext, appObject);
        }

        [Test]
        public void ConfigureUsingXmlApplicationContext()
        {
            XmlApplicationContext appContext = new XmlApplicationContext(false, ReadOnlyXmlTestResource.GetFilePath("HttpApplicationConfigurerTests.xml", typeof(HttpApplicationConfigurerTests)));

            TestModule m1 = new TestModule();
            TestModule m2 = new TestModule();

            TestApplication appObject = new TestApplication(new ModuleEntry[]
                                                                {
                                                                    new ModuleEntry("TestModule1", m1)
                                                                    , new ModuleEntry("TestModule2", m2),
                                                                });
            HttpApplicationConfigurer.Configure( appContext, appObject );
            // app configured
            Assert.AreEqual(appContext.GetObject("testObject"), appObject.TestObject);
            // modules configured
            Assert.AreEqual(appContext.GetObject("testObject1"), m1.TestObject);
            Assert.AreEqual(null, m2.TestObject);
        }

        private static StaticApplicationContext CreateTestContext()
        {
            object testObject;
            StaticApplicationContext appContext = new StaticApplicationContext();
            appContext.RegisterSingleton("testObject", typeof(object), null);
            appContext.RegisterSingleton("testObject1", typeof(object), null);
            appContext.RegisterSingleton("testObject2", typeof(object), null);
            appContext.Refresh();
            testObject = appContext.GetObject("testObject");
            Assert.IsNotNull(testObject);
            return appContext;
        }

        #region Test Classes

        public class ModuleEntry
        {
            // Fields
            public readonly string Name;
            public readonly IHttpModule Module;

            public ModuleEntry(string name, IHttpModule module)
            {
                Name = name;
                Module = module;
            }
        }

        public class TestApplication : HttpApplication
        {
            private static readonly MethodInfo miAddModule =
                typeof(HttpModuleCollection).GetMethod("AddModule", BindingFlags.Instance | BindingFlags.NonPublic);

            private object testObject;

            public TestApplication(ModuleEntry[] testModule)
            {
                HttpModuleCollection modules = this.Modules;
                if (testModule != null)
                {
                    ModuleEntry moduleEntry = null;
                    for (int i = 0; i < testModule.Length; i++)
                    {
                        moduleEntry = testModule[i];
                        miAddModule.Invoke(modules, new object[] {moduleEntry.Name, moduleEntry.Module});
                    }
                }
            }

            public object TestObject
            {
                get { return this.testObject; }
                set { this.testObject = value; }
            }
        }

        public class TestModule : IHttpModule
        {
            private object testObject;

            public object TestObject
            {
                get { return this.testObject; }
                set { this.testObject = value; }
            }

            public void Init(HttpApplication context)
            {
            }

            public void Dispose()
            {
            }
        }

        #endregion
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.