Компонент макет / заглушка с MXUnit
У меня есть компонент с именем ComponentUnderTest.cfc, который выглядит как:
<cfcomponent output="false">
<cfset externalComponent = Component("Externalcomponent");
<cffunction name="FunctionUnderTest" access="public"...>
<cfset externalComponent.ExternalFunction()>
</cffunction>
</cfcomponent>
Как можно смоделировать / заглушить externalComponent.externFunction() в тестовом компоненте MXUnit:
<cfcomponent displayname="ComponentTester" extends="mxunit.framework.TestCase>
<cffunction name="MockForExternalFunction">
.....
</cffunction>
??????
<cffunction name=TestComponent>
<cfset componentUnderTest = CreateObject("ComponentUnderTest")>
?????
<cfset componentUnderTest.FunctionUnderTest()> <!--- should call MockForExternalFunction --->
</cffunction>
</cfcomponent>
2 ответа
Вам нужно будет ввести проверенный компонент в componentUnderTest
заменить существующий на.
Вы можете сделать что-то вроде этого:
// I took this lot from the docs Henry pointed you to: I'm not familiar with MXUnit's mocking framework, but this sounds right
mockedObjectWithMockedMethod = mock();
mockedObjectWithMockedMethod.ExternalFunction().returns(MockForExternalFunction());
function injectVariable(name, value){
variables[name] = value;
}
componentUnderTest.injectVariable = injectVariable;
componentUnderTest.injectVariable("externalComponent", mockedObjectWithMockedMethod);
Вещь с этим что MockForExternalFunction()
просто предоставил возвращаемое значение, чтобы вернуться, когда ExternalFunction()
называется, он не вызывается вместо ExternalFunction(). Это должно быть хорошо, хотя.
<cfcomponent displayname="ComponentTester" extends="mxunit.framework.TestCase>
<cffunction name="MockForExternalFunction">
.....
</cffunction>
<cffunction name=TestComponent>
<cfset componentUnderTest = CreateObject("ComponentUnderTest")>
<cfset injectMethod(componentUnderTest, this, "MockForExternalFunction", "FunctionUnderTest") />
<cfset componentUnderTest.FunctionUnderTest()> <!--- should call MockForExternalFunction --->
</cffunction>
</cfcomponent>
<cffunction name="injectMethod" output="false" access="public" returntype="void" hint="injects the method from giver into receiver. This is helpful for quick and dirty mocking">
<cfargument name="Receiver" type="any" required="true" hint="the object receiving the method"/>
<cfargument name="Giver" type="any" required="true" hint="the object giving the method"/>
<cfargument name="FunctionName" type="string" required="true" hint="the function to be injected from the giver into the receiver"/>
<cfargument name="FunctionNameInReceiver" type="string" required="false" default="#arguments.functionName#" hint="the function name that you will call. this is useful when you want to inject giver.someFunctionXXX but have it be called as someFunction in your receiver object">
</cffunction>