Example #1
0
        public void RunShouldLogBootstrapperSteps()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            var index = 0;

            Assert.Contains(ContainerResources.LoggerCreatedSuccessfully, messages[index++]);
            Assert.Contains(ContainerResources.CreatingModuleCatalog, messages[index++]);
            Assert.Contains(ContainerResources.ConfiguringModuleCatalog, messages[index++]);
            Assert.Contains(ContainerResources.CreatingContainer, messages[index++]);
            Assert.Contains(ContainerResources.ConfiguringContainer, messages[index++]);
            Assert.Contains(ContainerResources.ConfiguringViewModelLocator, messages[index++]);
            Assert.Contains(ContainerResources.ConfiguringRegionAdapters, messages[index++]);
            Assert.Contains(ContainerResources.ConfiguringDefaultRegionBehaviors, messages[index++]);
            Assert.Contains(ContainerResources.RegisteringFrameworkExceptionTypes, messages[index++]);
            Assert.Contains(ContainerResources.CreatingShell, messages[index++]);
            Assert.Contains(ContainerResources.SettingTheRegionManager, messages[index++]);
            Assert.Contains(ContainerResources.UpdatingRegions, messages[index++]);
            Assert.Contains(ContainerResources.InitializingShell, messages[index++]);
            Assert.Contains(ContainerResources.InitializingModules, messages[index++]);
            Assert.Contains(ContainerResources.BootstrapperSequenceCompleted, messages[index++]);
        }
Example #2
0
        public void RunShouldCallConfigureDefaultRegionBehaviors()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.ConfigureDefaultRegionBehaviorsCalled);
        }
Example #3
0
        public void RunShouldCallConfigureContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.ConfigureContainerCalled);
        }
Example #4
0
        public void RunShouldCallConfigureModuleCatalog()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.ConfigureModuleCatalogCalled);
        }
        public void RunShouldCallRegisterTypes()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.RegisterTypesCalled);
        }
Example #6
0
        public void RunShouldCallConfigureRegionAdapterMappings()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.ConfigureRegionAdapterMappingsCalled);
        }
Example #7
0
        public void RunShouldAssignRegionManagerToReturnedShell()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.NotNull(RegionManager.GetRegionManager(bootstrapper.BaseShell));
        }
Example #8
0
        public void RunShouldCallCreateLogger()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.CreateLoggerCalled);
        }
Example #9
0
        public void RunShouldCallConfigureViewModelLocator()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.ConfigureViewModelLocatorCalled);
        }
Example #10
0
        public void RunShouldNotFailIfReturnedNullShell()
        {
            var bootstrapper = new MockBootstrapper {
                ShellObject = null
            };

            bootstrapper.Run();
        }
Example #11
0
        public void RunShouldCallInitializeModules()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.True(bootstrapper.InitializeModulesCalled);
        }
Example #12
0
        public void RunShouldLogAboutRegisteringFrameworkExceptionTypes()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.RegisteringFrameworkExceptionTypes));
        }
Example #13
0
        public void RunShouldLogAboutConfiguringRegionBehaviors()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.ConfiguringDefaultRegionBehaviors));
        }
Example #14
0
        public void RunSetsCurrentContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.NotNull(ContainerLocator.Container);
            Assert.IsType(ContainerHelper.ContainerExtensionType, ContainerLocator.Container);
        }
Example #15
0
        public void RunShouldLogAboutCreatingTheContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.CreatingContainer));
        }
Example #16
0
        public void RunShouldLogLoggerCreationSuccess()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.LoggerCreatedSuccessfully));
        }
Example #17
0
        public void RunShouldLogAboutInitializingTheShellIfShellCreated()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.InitializingShell));
        }
Example #18
0
        public void RunShouldLogAboutInitializingModules()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.InitializingModules));
        }
Example #19
0
        public void RunShouldLogAboutRunCompleting()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.BootstrapperSequenceCompleted));
        }
Example #20
0
        public void RunShouldLogAboutConfiguringViewModelLocator()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.True(messages.Contains(ContainerResources.ConfiguringViewModelLocator));
        }
Example #21
0
        public void ConfigureContainerAddsLoggerFacadeToContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            var returnedCatalog = bootstrapper.ContainerExtension.Resolve <ILoggerFacade>();

            Assert.NotNull(returnedCatalog);
        }
Example #22
0
        public void SetsContainerLocatorCurrentContainer()
        {
            ContainerLocator.ResetContainer();
            Assert.Null(ContainerLocator.Container);
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.NotNull(ContainerLocator.Container);
            Assert.Same(bootstrapper.Container, ContainerLocator.Container.GetBaseContainer());
        }
Example #23
0
        public void ConfigureContainerAddsModuleCatalogToContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            var returnedCatalog = bootstrapper.ContainerExtension.Resolve <IModuleCatalog>();

            Assert.NotNull(returnedCatalog);
            Assert.IsType <ModuleCatalog>(returnedCatalog);
        }
Example #24
0
        public void RunShouldNotLogAboutInitializingTheShellIfShellIsNotCreated()
        {
            var bootstrapper = new MockBootstrapper {
                ShellObject = null
            };

            bootstrapper.Run();
            var messages = bootstrapper.BaseLogger.Messages;

            Assert.False(messages.Contains(ContainerResources.InitializingShell));
        }
Example #25
0
        public void ConfigureContainerAddsRegionNavigationServiceToContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            var actual1 = bootstrapper.ContainerExtension.Resolve <IRegionNavigationService>();
            var actual2 = bootstrapper.ContainerExtension.Resolve <IRegionNavigationService>();

            Assert.NotNull(actual1);
            Assert.NotNull(actual2);
            Assert.NotSame(actual1, actual2);
        }
Example #26
0
        public void ConfigureContainerAddsNavigationTargetHandlerToContainer()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            var actual1 = bootstrapper.ContainerExtension.Resolve <IRegionNavigationContentLoader>();
            var actual2 = bootstrapper.ContainerExtension.Resolve <IRegionNavigationContentLoader>();

            Assert.NotNull(actual1);
            Assert.NotNull(actual2);
            Assert.Same(actual1, actual2);
        }
Example #27
0
        public void ConfiguresWhenRun()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.That(bootstrapper.ViewFactory, Is.Not.Null);

            var view = bootstrapper.ViewFactory.Resolve <MockViewModel>();

            Assert.That(view, Is.Not.Null);

            Assert.That(bootstrapper.Container, Is.Not.Null);
        }
Example #28
0
        public void ConfiguresWhenRun()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.NotNull(bootstrapper.ViewFactory);

            var view = bootstrapper.ViewFactory.Resolve <MockViewModel>();

            Assert.NotNull(view);

            Assert.NotNull(bootstrapper.Container);
        }
Example #29
0
        public void RunShouldInitializeContainer()
        {
            var bootstrapper = new MockBootstrapper();
            var container    = bootstrapper.BaseContainer;

            Assert.Null(container);

            bootstrapper.Run();

            container = bootstrapper.BaseContainer;

            Assert.NotNull(container);
            Assert.IsType(ContainerHelper.BaseContainerType, container);
        }
Example #30
0
        public void ConfiguresWhenRun()
        {
            var bootstrapper = new MockBootstrapper();

            bootstrapper.Run();

            Assert.That(bootstrapper.ViewFactory, Is.Not.Null);

            var view = bootstrapper.ViewFactory.Resolve <MockViewModel>();

            Assert.That(view, Is.Not.Null);

            Assert.That(bootstrapper.Container, Is.Not.Null);
            Assert.That(bootstrapper.Container.ComponentRegistry.Registrations.Count(), Is.EqualTo(8));
        }