Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select specific constructor with AutoFixture

Tags:

c#

autofixture

I'm using AutoFixture and I'd like to use a specific constructor.

I have the following code and I like to select the constructor with ITemplateParameterHandler.

public sealed class TemplateSegmentHandler : ITemplateSegmentHandler
{
    public TemplateSegmentHandler(ITemplateIterator iterator)
        : this(new TemplateParameterHandler(iterator))
    {
        Contract.Requires(iterator != null);
    }

    public TemplateSegmentHandler(ITemplateParameterHandler parameterHandler)
    {
        Contract.Requires(parameterHandler != null);

        _parameterHandler = parameterHandler;

        _parameterHandler.Ending += EndingParameter;
    }

    // ...
}

EDIT:

I want to inject the following fake implementation. (I'm using NSubstitute to create the fake object.)

public sealed class CustomTemplateParameter : ICustomization
{
    private readonly ITemplateParameterHandler _context;

    public CustomTemplateParameter()
    {
        _context = Substitute.For<ITemplateParameterHandler>();
    }

    public void Customize(IFixture fixture)
    {
        fixture.Customize<ITemplateParameterHandler>(c => c.FromFactory(() => _context));
    }

    public CustomTemplateParameter SetCatchAll(bool isCatchAll)
    {
        _context.IsCatchAll.Returns(isCatchAll);

        return this;
    }
}

Here is the way I'm trying to use it.

[Fact]
public void Should_return_true_when_the_segment_has_a_catch_all_parameter()
{
    TemplateSegmentHandler segmentHandler = new Fixture().Customize(new TemplateSegmentHandlerFixture())
                                                         .Customize(new CustomTemplateParameterHandler()
                                                                        .SetCatchAll(true))
                                                         .Create<TemplateSegmentHandler>();

    segmentHandler.Parameter.Start();
    segmentHandler.Parameter.End();

    segmentHandler.HasCatchAll.Should().BeTrue();
}

But it still selects the wrong constructor and I'm getting the following error.

Ploeh.AutoFixture.ObjectCreationExceptionAutoFixture was unable to create an instance from Somia.Web.Routing.Template.ITemplateIterator, most likely because it has no public constructor, is an abstract or non-public type.

Request path:
      Somia.Web.Routing.Template.TemplateSegmentHandler --> 
       Somia.Web.Routing.Template.ITemplateIterator iterator --> 
        Somia.Web.Routing.Template.ITemplateIterator
like image 231
Eyal Alon Avatar asked Sep 16 '14 13:09

Eyal Alon


2 Answers

I ended up implementing IMethodQuery and select the ctor I wanted.

public sealed class SelectedFirstConstructorQuery : IMethodQuery
{
    private readonly Type _type;

    public SelectedFirstConstructorQuery(Type type)
    {
        _type = type;
    }

    public IEnumerable<IMethod> SelectMethods(Type type)
    {
        if (type == null)
        {
            throw new ArgumentNullException("type");
        }

        return from ci in type.GetConstructors()
               let parameter = ci.GetParameters().First()
               where parameter.ParameterType == _type
               select new ConstructorMethod(ci) as IMethod;
    }
}

Usage:

fixture.Customize<TemplateSegmentHandler>(c => c.FromFactory(new MethodInvoker(new SelectedFirstConstructorQuery(typeof(ITemplateParameterHandler)))));
like image 180
Eyal Alon Avatar answered Nov 05 '22 22:11

Eyal Alon


One possible way:

var parameterHandler = fixture.Create<ITemplateParameterHandler>();

var segmentHandler = fixture.Build<TemplateSegmentHandler>()
                            .FromFactory(() => new TemplateSegmentHandler(parameterHandler));

fixture.Inject(segmentHandler);
like image 3
dcastro Avatar answered Nov 05 '22 22:11

dcastro