public void RunShouldCallConfigureModuleCatalog() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureModuleCatalogCalled); }
public void RunShouldNotFailIfReturnedNullShell() { var bootstrapper = new DefaultCastleWindsorBootstrapper { ShellObject = null }; bootstrapper.Run(); }
public void RunShouldCallConfigureDefaultRegionBehaviors() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureDefaultRegionBehaviorsCalled); }
public void RunShouldCallInitializeModules() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.InitializeModulesCalled); }
public void RunShouldCallConfigureRegionAdapterMappings() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureRegionAdapterMappingsCalled); }
public void RunShouldCallConfigureContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureContainerCalled); }
public void RunShouldCallCreateShell() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.CreateShellCalled); }
public void RunConfiguresServiceLocatorProvider() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsTrue(ServiceLocator.Current is CastleWindsorServiceLocatorAdapter); }
public void RunShouldAssignRegionManagerToReturnedShell() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.IsNotNull(RegionManager.GetRegionManager(bootstrapper.BaseShell)); }
public void RunShouldLogAboutModuleCatalogCreation() { const string expectedMessageText = "Creating module catalog."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void RunShouldLogAboutRegisteringFrameworkExceptionTypes() { const string expectedMessageText = "Registering Framework Exception Types."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void RunShouldLogAboutRunCompleting() { const string expectedMessageText = "Bootstrapper sequence completed."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void RunShouldLogAboutCreatingTheShell() { const string expectedMessageText = "Creating the shell."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void RunShouldLogLoggerCreationSuccess() { const string expectedMessageText = "Logger was created successfully."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void RunShouldLogAboutConfiguringRegionBehaviors() { const string expectedMessageText = "Configuring default region behaviors."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void ConfigureContainerAddsLoggerFacadeToContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var returnedCatalog = bootstrapper.BaseContainer.Resolve <ILoggerFacade>(); Assert.IsNotNull(returnedCatalog); }
public void RunShouldLogAboutInitializingModules() { const string expectedMessageText = "Initializing modules."; var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages.Contains(expectedMessageText)); }
public void ConfigureContainerAddsModuleCatalogToContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var returnedCatalog = bootstrapper.BaseContainer.Resolve <IModuleCatalog>(); Assert.IsNotNull(returnedCatalog); Assert.IsTrue(returnedCatalog is ModuleCatalog); }
public void RunRegistersTypeForRegionAdapterMappings() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var regionAdapterMappings = bootstrapper.BaseContainer.Resolve <RegionAdapterMappings>(); Assert.IsNotNull(regionAdapterMappings); Assert.AreEqual(typeof(RegionAdapterMappings), regionAdapterMappings.GetType()); }
public void RunRegistersTypeForIRegionBehaviorFactory() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var regionBehaviorFactory = bootstrapper.BaseContainer.Resolve <IRegionBehaviorFactory>(); Assert.IsNotNull(regionBehaviorFactory); Assert.IsTrue(regionBehaviorFactory.GetType().IsClass); Assert.IsTrue(regionBehaviorFactory.GetType().GetInterfaces().Contains(typeof(IRegionBehaviorFactory))); }
public void RunShouldNotLogAboutInitializingTheShellIfShellIsNotCreated() { const string expectedMessageText = "Initializing shell"; var bootstrapper = new DefaultCastleWindsorBootstrapper { ShellObject = null }; bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsFalse(messages.Contains(expectedMessageText)); }
public void RunRegistersTypeForIEventAggregator() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var eventAggregator = bootstrapper.BaseContainer.Resolve <IEventAggregator>(); Assert.IsNotNull(eventAggregator); Assert.IsTrue(eventAggregator.GetType().IsClass); Assert.IsTrue(eventAggregator.GetType().GetInterfaces().Contains(typeof(IEventAggregator))); }
public void RunRegistersInstanceOfILoggerFacade() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var logger = bootstrapper.BaseContainer.Resolve <ILoggerFacade>(); Assert.IsNotNull(logger); Assert.IsTrue(logger.GetType().IsClass); Assert.IsTrue(logger.GetType().GetInterfaces().Contains(typeof(ILoggerFacade))); }
public void RunRegistersInstanceOfIModuleCatalog() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var moduleCatalog = bootstrapper.BaseContainer.Resolve <IModuleCatalog>(); Assert.IsNotNull(moduleCatalog); Assert.IsTrue(moduleCatalog.GetType().IsClass); Assert.IsTrue(moduleCatalog.GetType().GetInterfaces().Contains(typeof(IModuleCatalog))); }
public void RunRegistersTypeForIModuleInitializer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var moduleInitializer = bootstrapper.BaseContainer.Resolve <IModuleInitializer>(); Assert.IsNotNull(moduleInitializer); Assert.IsTrue(moduleInitializer.GetType().IsClass); Assert.IsTrue(moduleInitializer.GetType().GetInterfaces().Contains(typeof(IModuleInitializer))); }
public void ConfigureContainerAddsRegionNavigationJournalToContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var actual1 = bootstrapper.BaseContainer.Resolve <IRegionNavigationJournal>(); var actual2 = bootstrapper.BaseContainer.Resolve <IRegionNavigationJournal>(); Assert.IsNotNull(actual1); Assert.IsNotNull(actual2); Assert.AreNotSame(actual1, actual2); }
public void ConfigureContainerAddsNavigationTargetHandlerToContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var actual1 = bootstrapper.BaseContainer.Resolve <IRegionNavigationContentLoader>(); var actual2 = bootstrapper.BaseContainer.Resolve <IRegionNavigationContentLoader>(); Assert.IsNotNull(actual1); Assert.IsNotNull(actual2); Assert.AreSame(actual1, actual2); }
public void RunShouldInitializeContainer() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); var container = bootstrapper.BaseContainer; Assert.IsNull(container); bootstrapper.Run(); container = bootstrapper.BaseContainer; Assert.IsNotNull(container); Assert.IsInstanceOfType(container, typeof(WindsorContainer)); }
public void RunShouldCallTheMethodsInOrder() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); Assert.AreEqual("CreateLogger", bootstrapper.MethodCalls[0]); Assert.AreEqual("CreateModuleCatalog", bootstrapper.MethodCalls[1]); Assert.AreEqual("ConfigureModuleCatalog", bootstrapper.MethodCalls[2]); Assert.AreEqual("CreateContainer", bootstrapper.MethodCalls[3]); Assert.AreEqual("ConfigureContainer", bootstrapper.MethodCalls[4]); Assert.AreEqual("ConfigureServiceLocator", bootstrapper.MethodCalls[5]); Assert.AreEqual("ConfigureRegionAdapterMappings", bootstrapper.MethodCalls[6]); Assert.AreEqual("ConfigureDefaultRegionBehaviors", bootstrapper.MethodCalls[7]); Assert.AreEqual("RegisterFrameworkExceptionTypes", bootstrapper.MethodCalls[8]); Assert.AreEqual("CreateShell", bootstrapper.MethodCalls[9]); Assert.AreEqual("InitializeShell", bootstrapper.MethodCalls[10]); Assert.AreEqual("InitializeModules", bootstrapper.MethodCalls[11]); }
public void RunShouldLogBootstrapperSteps() { var bootstrapper = new DefaultCastleWindsorBootstrapper(); bootstrapper.Run(); var messages = bootstrapper.BaseLogger.Messages; Assert.IsTrue(messages[0].Contains("Logger was created successfully.")); Assert.IsTrue(messages[1].Contains("Creating module catalog.")); Assert.IsTrue(messages[2].Contains("Configuring module catalog.")); Assert.IsTrue(messages[3].Contains("Creating CastleWindsor container.")); Assert.IsTrue(messages[4].Contains("Configuring the CastleWindsor container.")); Assert.IsTrue(messages[5].Contains("Configuring ServiceLocator singleton.")); Assert.IsTrue(messages[6].Contains("Configuring the ViewModelLocator to use CastleWindsor.")); Assert.IsTrue(messages[7].Contains("Configuring region adapters.")); Assert.IsTrue(messages[8].Contains("Configuring default region behaviors.")); Assert.IsTrue(messages[9].Contains("Registering Framework Exception Types.")); Assert.IsTrue(messages[10].Contains("Creating the shell.")); Assert.IsTrue(messages[11].Contains("Setting the RegionManager.")); Assert.IsTrue(messages[12].Contains("Updating Regions.")); Assert.IsTrue(messages[13].Contains("Initializing the shell.")); Assert.IsTrue(messages[14].Contains("Initializing modules.")); Assert.IsTrue(messages[15].Contains("Bootstrapper sequence completed.")); }