FakeItEasy代理方法调用实际实现

时间:2015-01-13 14:30:01

标签: c# unit-testing mocking mspec fakeiteasy

我正在尝试将对虚假对象的调用代理到实际实现中。原因是我希望能够使用Machine.Specifications的WasToldTo和WhenToldTo,它仅适用于接口类型的伪装。

因此,我正在执行以下操作来代理对我的真实对象的所有调用。

public static TFake Proxy<TFake, TInstance>(TFake fake, TInstance instance) where TInstance : TFake
{
    fake.Configure().AnyCall().Invokes(x => x.Method.Invoke(instance, x.Arguments.ToArray()));
    return fake;
}

我会这样使用它。

var fake = Proxy<ISomeInterface, SomeImplementation>(A.Fake<ISomeInterface>(), new SomeImplementation());

//in my assertions using Machine.Specifications (reason I need a fake of an interface)
fake.WasToldTo(x => x.DoOperation());

然而问题是这只适用于void方法,因为Invokes方法没有对返回值做任何事情。 (Action param而不是Func)

然后我尝试使用WithReturnValue方法执行此操作。

public static TFake Proxy(TFake fake, TInstance instance) where TInstance : TFake
{
    fake.Configure().AnyCall()..WithReturnType().Invokes(x => x.Method.Invoke(instance, x.Arguments.ToArray()));
    fake.Configure().AnyCall()..WithReturnType().Invokes(x => x.Method.Invoke(instance, x.Arguments.ToArray()));
    fake.Configure().AnyCall()..WithReturnType().Invokes(x => x.Method.Invoke(instance, x.Arguments.ToArray()));
    //etc.
    return fake;
}

然而,Invokes方法仍然不能按我想要的方式工作(仍然是Action而不是Func)。所以仍然没有使用返回值。

有没有办法用当前最新版本实现这一目标?

我已经在FakeItEasy github存储库中提交了一个问题。 https://github.com/FakeItEasy/FakeItEasy/issues/435

1 个答案:

答案 0 :(得分:6)

response at the FakeItEasy github repository偷窃:

您可以创建一个假装来包装现有对象,如下所示:

var wrapped = new FooClass("foo", "bar");
var foo = A.Fake<IFoo>(x => x.Wrapping(wrapped));

(取自Creating Fakes > Explicit Creation Options

的例子

应该委托对基础对象的所有调用,通常需要注意的是,任何重定向调用都必须是overrideable

我希望这会有所帮助。如果没有,请回来再解释一下。也许我会更好地理解它。

哦,请注意Configure机制。它在FakeItEasy 2.0.0中消失了。 首选的习语是

A.CallTo(fake).Invokes(…); // or
A.CallTo(fake).WithReturnType<bool>(…);