I am having a problem resolving singleton components in Autofac and wondering if Autofac is behaving correctly or if this is a genuine bug.
The way I understand Autofac is working is that when you register a singleton component, that registration gets "pulled" to the root container so that anything that resolves that component will resolve the same instance.
So, I am wondering if that same mechanism should come into play when registering the singleton component in separate child scopes. I'll let the code speak for itself:
public class ChildSingletonScopeTest
{
readonly IContainer container;
readonly ILifetimeScope scope1, scope2, childScope1;
public ChildSingletonScopeTest()
{
var builder = new ContainerBuilder();
container = builder.Build();
scope1 = container.BeginLifetimeScope(ConfigureTenant);
scope2 = container.BeginLifetimeScope(ConfigureTenant);
childScope1 = scope1.BeginLifetimeScope();
}
void ConfigureTenant(ContainerBuilder builder)
{
builder.RegisterType<Testing>().As<ITesting>().SingleInstance();
}
[Xunit.Fact] /* this test fails */
public void should_resolve_single_instance_for_each_tenant_scope()
{
var instance1 = scope1.Resolve<ITesting>();
var instance2 = scope2.Resolve<ITesting>();
Xunit.Assert.Equal(instance1, instance2);
}
[Xunit.Fact] /* this test passes */
public void should_resolve_single_instance_down_child_scope_hierarchy()
{
var instance1 = scope1.Resolve<ITesting>();
var instance2 = childScope1.Resolve<ITesting>();
Xunit.Assert.Equal(instance1, instance2);
}
}
interface ITesting { }
class Testing : ITesting
{
public override string ToString()
{
return GetHashCode().ToString();
}
}
The reason that I am trying to do something crazy like this comes down to the way we are implementing multitenancy in our web app. Without getting too bogged down in the details, we have a requirement to be able to programmatically "switch" tenants in the middle of a web request.
The way we do this is by nesting the tenant scopes under each disposable request scope. However, tenant-specific singleton registrations are not resolving the same instance for the same tenant across different requests.
So, I am wondering if this is a bug in the way Autofac is handling these singleton registrations OR if I need to change the way I am dealing with singleton components in the tenant scopes.