diff --git a/Stylet/Execute.cs b/Stylet/Execute.cs index 55eb8c5..4a6f9a3 100644 --- a/Stylet/Execute.cs +++ b/Stylet/Execute.cs @@ -125,14 +125,11 @@ namespace Stylet { if (inDesignMode == null) { - var prop = DesignerProperties.IsInDesignModeProperty; - inDesignMode = (bool)DependencyPropertyDescriptor.FromProperty(prop, typeof(FrameworkElement)).Metadata.DefaultValue; - - if (inDesignMode.GetValueOrDefault(false) && Process.GetCurrentProcess().ProcessName.StartsWith("devenv", StringComparison.Ordinal)) - inDesignMode = true; + var descriptor = DependencyPropertyDescriptor.FromProperty(DesignerProperties.IsInDesignModeProperty, typeof(FrameworkElement)); + inDesignMode = (bool)descriptor.Metadata.DefaultValue; } - return inDesignMode.GetValueOrDefault(false); + return inDesignMode.Value; } } } diff --git a/Stylet/StyletIoC/StyletIoCContainer.cs b/Stylet/StyletIoC/StyletIoCContainer.cs index ad4ed57..d028d4d 100644 --- a/Stylet/StyletIoC/StyletIoCContainer.cs +++ b/Stylet/StyletIoC/StyletIoCContainer.cs @@ -325,9 +325,6 @@ namespace StyletIoC { foreach (var unboundGeneric in unboundGenerics) { - if (unboundGeneric == null) - continue; - // Consider this scenario: // interface IC { } class C : IC { } // Then they ask for an IC. We need to give them a C diff --git a/StyletIntegrationTests/Bootstrapper.cs b/StyletIntegrationTests/Bootstrapper.cs index 5af4aa6..f5b9c1d 100644 --- a/StyletIntegrationTests/Bootstrapper.cs +++ b/StyletIntegrationTests/Bootstrapper.cs @@ -1,4 +1,5 @@ using Stylet; +using StyletIntegrationTests.BootstrapperIoC; using System; using System.Collections.Generic; using System.Linq; @@ -9,5 +10,9 @@ namespace StyletIntegrationTests { public class Bootstrapper : Bootstrapper { + protected override void ConfigureIoC(StyletIoC.IStyletIoCBuilder builder) + { + builder.Bind().ToAllImplementations(); + } } } diff --git a/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml b/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml new file mode 100644 index 0000000..4725c45 --- /dev/null +++ b/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml @@ -0,0 +1,12 @@ + + + Make sure that pressing the following buttons has no visible effect (no dialogs, crashes, etc). + + + + + diff --git a/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml.cs b/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml.cs new file mode 100644 index 0000000..c663c1a --- /dev/null +++ b/StyletIntegrationTests/BootstrapperIoC/WindowView.xaml.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Shapes; + +namespace StyletIntegrationTests.BootstrapperIoC +{ + /// + /// Interaction logic for WindowView.xaml + /// + public partial class WindowView : Window + { + public WindowView() + { + InitializeComponent(); + } + } +} diff --git a/StyletIntegrationTests/BootstrapperIoC/WindowViewModel.cs b/StyletIntegrationTests/BootstrapperIoC/WindowViewModel.cs new file mode 100644 index 0000000..6145a52 --- /dev/null +++ b/StyletIntegrationTests/BootstrapperIoC/WindowViewModel.cs @@ -0,0 +1,44 @@ +using Stylet; +using StyletIoC; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace StyletIntegrationTests.BootstrapperIoC +{ + interface BootstrapperIoCI1 { } + class BootstrapperIoCC1 : BootstrapperIoCI1 { } + class BootstrapperIoCC2 : BootstrapperIoCI1 { } + class BootstrapperIoCC3 + { + [Inject] + public BootstrapperIoCC1 C1 { get; set; } + } + + public class WindowViewModel : Screen + { + public void GetSingle() + { + var result = IoC.Get(); + if (result == null) + throw new Exception("IoC.Get failed"); + } + + public void GetAll() + { + var result = IoC.GetAll().ToList(); + if (result.Count != 2 || !(result[0] is BootstrapperIoCC1) || !(result[1] is BootstrapperIoCC2)) + throw new Exception("IoC.GetAll failed"); + } + + public void BuildUp() + { + var c3 = new BootstrapperIoCC3(); + IoC.BuildUp(c3); + if (c3.C1 == null) + throw new Exception("IoC.BuildUp failed"); + } + } +} diff --git a/StyletIntegrationTests/ShellView.xaml b/StyletIntegrationTests/ShellView.xaml index c26a78b..6b366f8 100644 --- a/StyletIntegrationTests/ShellView.xaml +++ b/StyletIntegrationTests/ShellView.xaml @@ -23,7 +23,11 @@ - + + + + + diff --git a/StyletIntegrationTests/ShellViewModel.cs b/StyletIntegrationTests/ShellViewModel.cs index 98ebe81..b6a91d4 100644 --- a/StyletIntegrationTests/ShellViewModel.cs +++ b/StyletIntegrationTests/ShellViewModel.cs @@ -50,6 +50,12 @@ namespace StyletIntegrationTests this.windowManager.ShowWindow(window); } + public void ShowBootstrapperIoC() + { + var window = new BootstrapperIoC.WindowViewModel(); + this.windowManager.ShowWindow(window); + } + public void ShowActions() { var window = new Actions.ActionsViewModel(); diff --git a/StyletIntegrationTests/StyletIntegrationTests.csproj b/StyletIntegrationTests/StyletIntegrationTests.csproj index 6fbdcae..c697607 100644 --- a/StyletIntegrationTests/StyletIntegrationTests.csproj +++ b/StyletIntegrationTests/StyletIntegrationTests.csproj @@ -57,6 +57,10 @@ + + WindowView.xaml + + Code @@ -99,6 +103,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile diff --git a/StyletUnitTests/ExecuteTests.cs b/StyletUnitTests/ExecuteTests.cs index 4f22cbe..87055da 100644 --- a/StyletUnitTests/ExecuteTests.cs +++ b/StyletUnitTests/ExecuteTests.cs @@ -184,5 +184,11 @@ namespace StyletUnitTests Execute.OnUIThreadAsync(() => called = true); Assert.True(called); } + + [Test] + public void InDesignModeReturnsFalse() + { + Assert.False(Execute.InDesignMode); + } } } diff --git a/StyletUnitTests/StyletIoC/StyletIoCConstructorInjectionTests.cs b/StyletUnitTests/StyletIoC/StyletIoCConstructorInjectionTests.cs index 0eea18c..143ca8e 100644 --- a/StyletUnitTests/StyletIoC/StyletIoCConstructorInjectionTests.cs +++ b/StyletUnitTests/StyletIoC/StyletIoCConstructorInjectionTests.cs @@ -2,6 +2,7 @@ using StyletIoC; using System; using System.Collections.Generic; +using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -100,6 +101,13 @@ namespace StyletUnitTests } } + class C10 + { + public C10(ObservableCollection c1s) + { + } + } + [TestFixture] public class StyletIoCConstructorInjectionTests { @@ -243,5 +251,19 @@ namespace StyletUnitTests Assert.Throws(() => ioc.Get()); } + + [Test] + public void ThrowsIfCollectionTypeCantBeResolved() + { + // This test is needed to hit a condition in TryRetrieveGetAllRegistrationFromElementType + // where a collection type is constructed, but is unsuitable + + var builder = new StyletIoCBuilder(); + builder.Bind().ToSelf(); + builder.Bind().ToSelf(); + var ioc = builder.BuildContainer(); + + Assert.Throws(() => ioc.Get()); + } } } diff --git a/StyletUnitTests/StyletIoC/StyletIoCUnboundGenericTests.cs b/StyletUnitTests/StyletIoC/StyletIoCUnboundGenericTests.cs index 95534a4..95d982e 100644 --- a/StyletUnitTests/StyletIoC/StyletIoCUnboundGenericTests.cs +++ b/StyletUnitTests/StyletIoC/StyletIoCUnboundGenericTests.cs @@ -68,5 +68,14 @@ namespace StyletUnitTests Assert.NotNull(ioc.Get>("test")); } + + [Test] + public void ThrowsIfMultipleRegistrationsForUnboundGeneric() + { + var builder = new StyletIoCBuilder(); + builder.Bind(typeof(C1<>)).ToSelf(); + builder.Bind(typeof(C1<>)).ToSelf(); + Assert.Throws(() => builder.BuildContainer()); + } } }