package com.coding.basic; import java.util.HashMap; import java.util.Map; import org.dom4j.DocumentException; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class StrutsTest { @Before public void setUp() throws Exception { } @After public void tearDown() throws Exception { } @Test public void testLoginActionSuccess() throws DocumentException { String actionName = "login"; Map<String,String> params = new HashMap<String,String>(); params.put("name","test"); params.put("password","1234"); View view = Struts.runAction(actionName,params); Assert.assertEquals("/jsp/homepage.jsp", view.getJsp()); Assert.assertEquals("login successful", view.getParameters().get("message")); } @Test public void testLoginActionFailed() throws DocumentException { String actionName = "login"; Map<String,String> params = new HashMap<String,String>(); params.put("name","test"); params.put("password","123456"); //密码和预设的不一致 View view = Struts.runAction(actionName,params); Assert.assertEquals("/jsp/showLogin.jsp", view.getJsp()); Assert.assertEquals("login failed,please check your user/pwd", view.getParameters().get("message")); } }