Moq(3.0以降)を使用してout
/ ref
パラメーターを割り当てることは可能ですか?
私は使用を検討しましたが、ジェネリックに基づいているため、refパラメーターをサポートしてCallback()
いAction<>
ません。またIt.Is
、ref
パラメーターの入力に制約()を設定することもできますが、コールバックで実行できます。
Rhino Mocksがこの機能をサポートしていることは知っていますが、私が取り組んでいるプロジェクトはすでにMoqを使用しています。
Moq(3.0以降)を使用してout
/ ref
パラメーターを割り当てることは可能ですか?
私は使用を検討しましたが、ジェネリックに基づいているため、refパラメーターをサポートしてCallback()
いAction<>
ません。またIt.Is
、ref
パラメーターの入力に制約()を設定することもできますが、コールバックで実行できます。
Rhino Mocksがこの機能をサポートしていることは知っていますが、私が取り組んでいるプロジェクトはすでにMoqを使用しています。
回答:
Moqバージョン4.8(またはそれ以降)では、参照によるパラメーターのサポートが大幅に改善されています。
public interface IGobbler
{
bool Gobble(ref int amount);
}
delegate void GobbleCallback(ref int amount); // needed for Callback
delegate bool GobbleReturns(ref int amount); // needed for Returns
var mock = new Mock<IGobbler>();
mock.Setup(m => m.Gobble(ref It.Ref<int>.IsAny)) // match any value passed by-ref
.Callback(new GobbleCallback((ref int amount) =>
{
if (amount > 0)
{
Console.WriteLine("Gobbling...");
amount -= 1;
}
}))
.Returns(new GobbleReturns((ref int amount) => amount > 0));
int a = 5;
bool gobbleSomeMore = true;
while (gobbleSomeMore)
{
gobbleSomeMore = mock.Object.Gobble(ref a);
}
同じパターンがout
パラメーターに機能します。
It.Ref<T>.IsAny
C#7 in
パラメーターでも機能します(これらも参照渡しであるため)。
out
が、そうですか?
「アウト」については、次のように機能します。
public interface IService
{
void DoSomething(out string a);
}
[TestMethod]
public void Test()
{
var service = new Mock<IService>();
var expectedValue = "value";
service.Setup(s => s.DoSomething(out expectedValue));
string actualValue;
service.Object.DoSomething(out actualValue);
Assert.AreEqual(expectedValue, actualValue);
}
セットアップを呼び出したときにMoqが 'expectedValue'の値を調べて記憶していると思います。
のためにref
、私も答えを探しています。
次のクイックスタートガイドが役に立った:https : //github.com/Moq/moq4/wiki/Quickstart
Setup
編集:Moq 4.10では、outまたはrefパラメーターを持つデリゲートをコールバック関数に直接渡すことができます。
mock
.Setup(x=>x.Method(out d))
.Callback(myDelegate)
.Returns(...);
デリゲートを定義してインスタンス化する必要があります。
...
.Callback(new MyDelegate((out decimal v)=>v=12m))
...
4.10より前のMoqバージョンの場合:
Avner Kashtanが彼のブログで、コールバックから出力パラメーターを設定できる拡張メソッドを提供しています:Moq、CallbacksおよびOutパラメーター:特にトリッキーなエッジケース
ソリューションはエレガントでハックです。他のMoqコールバックに慣れ親しんでいる流暢な構文を提供するという点でエレガントです。リフレクションを介していくつかの内部Moq APIを呼び出すことに依存しているため、ハッキーです。
上記のリンクで提供された拡張メソッドは私のためにコンパイルされなかったので、以下に編集されたバージョンを提供しました。持つ入力パラメータの数ごとに署名を作成する必要があります。私は0と1を提供しましたが、さらに拡張するのは簡単です:
public static class MoqExtensions
{
public delegate void OutAction<TOut>(out TOut outVal);
public delegate void OutAction<in T1,TOut>(T1 arg1, out TOut outVal);
public static IReturnsThrows<TMock, TReturn> OutCallback<TMock, TReturn, TOut>(this ICallback<TMock, TReturn> mock, OutAction<TOut> action)
where TMock : class
{
return OutCallbackInternal(mock, action);
}
public static IReturnsThrows<TMock, TReturn> OutCallback<TMock, TReturn, T1, TOut>(this ICallback<TMock, TReturn> mock, OutAction<T1, TOut> action)
where TMock : class
{
return OutCallbackInternal(mock, action);
}
private static IReturnsThrows<TMock, TReturn> OutCallbackInternal<TMock, TReturn>(ICallback<TMock, TReturn> mock, object action)
where TMock : class
{
mock.GetType()
.Assembly.GetType("Moq.MethodCall")
.InvokeMember("SetCallbackWithArguments", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, mock,
new[] { action });
return mock as IReturnsThrows<TMock, TReturn>;
}
}
上記の拡張メソッドを使用すると、次のようなパラメータを使用せずにインターフェースをテストできます。
public interface IParser
{
bool TryParse(string token, out int value);
}
..次のMoq設定で:
[TestMethod]
public void ParserTest()
{
Mock<IParser> parserMock = new Mock<IParser>();
int outVal;
parserMock
.Setup(p => p.TryParse("6", out outVal))
.OutCallback((string t, out int v) => v = 6)
.Returns(true);
int actualValue;
bool ret = parserMock.Object.TryParse("6", out actualValue);
Assert.IsTrue(ret);
Assert.AreEqual(6, actualValue);
}
編集:void-returnメソッドをサポートするには、新しいオーバーロードメソッドを追加するだけです。
public static ICallbackResult OutCallback<TOut>(this ICallback mock, OutAction<TOut> action)
{
return OutCallbackInternal(mock, action);
}
public static ICallbackResult OutCallback<T1, TOut>(this ICallback mock, OutAction<T1, TOut> action)
{
return OutCallbackInternal(mock, action);
}
private static ICallbackResult OutCallbackInternal(ICallback mock, object action)
{
mock.GetType().Assembly.GetType("Moq.MethodCall")
.InvokeMember("SetCallbackWithArguments", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, mock, new[] { action });
return (ICallbackResult)mock;
}
これにより、次のようなインターフェースをテストできます。
public interface IValidationRule
{
void Validate(string input, out string message);
}
[TestMethod]
public void ValidatorTest()
{
Mock<IValidationRule> validatorMock = new Mock<IValidationRule>();
string outMessage;
validatorMock
.Setup(v => v.Validate("input", out outMessage))
.OutCallback((string i, out string m) => m = "success");
string actualMessage;
validatorMock.Object.Validate("input", out actualMessage);
Assert.AreEqual("success", actualMessage);
}
var methodCall = mock.GetType().GetProperty("Setup").GetValue(mock); mock.GetType().Assembly.GetType("Moq.MethodCall") .InvokeMember("SetCallbackResponse", BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Instance, null, methodCall, new[] { action });
mock.Setup(x=>x.Method(out d)).Callback(myDelegate).Returns(...);
あなたは、デリゲートを定義し、それをインスタンス化する必要があります:...Callback(new MyDelegate((out decimal v)=>v=12m))...;
// out arguments
var outString = "ack";
// TryParse will return true, and the out argument will return "ack", lazy evaluated
mock.Setup(foo => foo.TryParse("ping", out outString)).Returns(true);
// ref arguments
var instance = new Bar();
// Only matches if the ref argument to the invocation is the same instance
mock.Setup(foo => foo.Submit(ref instance)).Returns(true);
箱から出してそれを行うことはできないようです。誰かが解決策を試みたようです
このフォーラムの投稿http://code.google.com/p/moq/issues/detail?id=176を参照して ください
この質問 はMoqで参照パラメータの値を確認します
refパラメーターの設定とともに値を返すために、次のコードを示します。
public static class MoqExtensions
{
public static IReturnsResult<TMock> DelegateReturns<TMock, TReturn, T>(this IReturnsThrows<TMock, TReturn> mock, T func) where T : class
where TMock : class
{
mock.GetType().Assembly.GetType("Moq.MethodCallReturn`2").MakeGenericType(typeof(TMock), typeof(TReturn))
.InvokeMember("SetReturnDelegate", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, mock,
new[] { func });
return (IReturnsResult<TMock>)mock;
}
}
次に、モックされるメソッドのシグネチャに一致する独自のデリゲートを宣言し、独自のメソッド実装を提供します。
public delegate int MyMethodDelegate(int x, ref int y);
[TestMethod]
public void TestSomething()
{
//Arrange
var mock = new Mock<ISomeInterface>();
var y = 0;
mock.Setup(m => m.MyMethod(It.IsAny<int>(), ref y))
.DelegateReturns((MyMethodDelegate)((int x, ref int y)=>
{
y = 1;
return 2;
}));
}
Billy Jakesのオーナに基づいて、outパラメータを使用して完全に動的なモックメソッドを作成しました。私はこれを便利だと思う人のためにここに投稿します(おそらく私だけが私です)。
// Define a delegate with the params of the method that returns void.
delegate void methodDelegate(int x, out string output);
// Define a variable to store the return value.
bool returnValue;
// Mock the method:
// Do all logic in .Callback and store the return value.
// Then return the return value in the .Returns
mockHighlighter.Setup(h => h.SomeMethod(It.IsAny<int>(), out It.Ref<int>.IsAny))
.Callback(new methodDelegate((int x, out int output) =>
{
// do some logic to set the output and return value.
output = ...
returnValue = ...
}))
.Returns(() => returnValue);
スコットの解決策はある時点で機能したと思いますが、
しかし、リフレクションを使用せずにプライベートAPIをのぞき見するのはよい議論です。それは今壊れています。
デリゲートを使用してパラメーターを設定することができました
delegate void MockOutDelegate(string s, out int value);
public void SomeMethod()
{
....
int value;
myMock.Setup(x => x.TryDoSomething(It.IsAny<string>(), out value))
.Callback(new MockOutDelegate((string s, out int output) => output = userId))
.Returns(true);
}
これは解決策となります。
[Test]
public void TestForOutParameterInMoq()
{
//Arrange
_mockParameterManager= new Mock<IParameterManager>();
Mock<IParameter > mockParameter= new Mock<IParameter >();
//Parameter affectation should be useless but is not. It's really used by Moq
IParameter parameter= mockParameter.Object;
//Mock method used in UpperParameterManager
_mockParameterManager.Setup(x => x.OutMethod(out parameter));
//Act with the real instance
_UpperParameterManager.UpperOutMethod(out parameter);
//Assert that method used on the out parameter of inner out method are really called
mockParameter.Verify(x => x.FunctionCalledInOutMethodAfterInnerOutMethod(),Times.Once());
}
モックアウトしようとしているインターフェイスを実装する新しい 'Fake'クラスのインスタンスを単純に作成する前に、ここで提案の多くに苦労しました。次に、メソッド自体で出力パラメーターの値を設定するだけです。
私はこれを今日の午後1時間苦労し、どこにも答えを見つけることができませんでした。自分でいじってみたところ、自分に合った解決策を見つけることができました。
string firstOutParam = "first out parameter string";
string secondOutParam = 100;
mock.SetupAllProperties();
mock.Setup(m=>m.Method(out firstOutParam, out secondOutParam)).Returns(value);
ここで重要なのmock.SetupAllProperties();
は、すべてのプロパティをスタブ化することです。これはすべてのテストケースシナリオで機能するわけではありませんが、気になるものがを取得することreturn value
であるYourMethod
場合、これは正常に機能します。
It.IsAny<T>()
マッチャー(ref It.Ref<T>.IsAny
)からセットアップのサポート、.Callback()
および.Returns()
メソッドシグネチャと一致するカスタムデリゲートタイプを介したサポートまで、参照パラメータのサポートが大幅に改善されています。プロテクトメソッドも同様にサポートされます。たとえば、以下の私の回答を参照してください。