Unit Testing com Struts/Spring 2 com Annotations, alguém já conseguiu?

0 respostas
rodrigo_corinthians

Estou seguindo os seguintes tutoriais.


Nenhum deles funcionaram, lança uma exception dizendo que a Action não foi mapeada.

There is no Action mapped for namespace /actions/user!input.action and action name create. - [unknown location]
at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:186)
at org.apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:41)
at br.com.strutsandspring2.test.BaseActionTest.createAction(BaseActionTest.java:62)
at br.com.strutsandspring2.test.UserActionTest.testCreate(UserActionTest.java:26)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at junit.framework.TestCase.runTest(TestCase.java:154)
at junit.framework.TestCase.runBare(TestCase.java:127)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:118)
at junit.framework.TestSuite.runTest(TestSuite.java:208)
at junit.framework.TestSuite.run(TestSuite.java:203)
at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
O código da minha Action.@Results({ @Result(name = Action.INPUT, value = "/jsp/user/input.jsp"), @Result(name = IGenericAction.RESULT, value = "/jsp/user/result.jsp") }) @Validation public class UserAction extends GenericAction { ... } E o meu junit. public void testCreate() throws Exception { UserAction action = createAction(UserAction.class, "/actions/user!", "/create"); ... } Alguém aqui já conseguiu fazer test unitário no Struts 2 usando Annotations?

Valew!

Criado 7 de abril de 2008
Respostas 0
Participantes 1