insertpagetest.java
来自「JSP 的一个wiki 系统」· Java 代码 · 共 72 行
JAVA
72 行
package com.ecyrd.jspwiki.plugin;import java.util.Properties;import com.ecyrd.jspwiki.TestEngine;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;public class InsertPageTest extends TestCase{ protected TestEngine testEngine; protected Properties props = new Properties(); protected void setUp() throws Exception { props.load( TestEngine.findTestProperties() ); testEngine = new TestEngine(props); } protected void tearDown() throws Exception { TestEngine.deleteTestPage( "ThisPage" ); TestEngine.deleteTestPage( "ThisPage2" ); } public void testRecursive() throws Exception { String src = "[{InsertPage page='ThisPage'}]"; testEngine.saveText("ThisPage",src); // Just check that it contains a proper error message; don't bother do HTML // checking. assertTrue( testEngine.getHTML("ThisPage").indexOf("Circular reference") != -1 ); } public void testRecursive2() throws Exception { String src = "[{InsertPage page='ThisPage2'}]"; String src2 = "[{InsertPage page='ThisPage'}]"; testEngine.saveText("ThisPage",src); testEngine.saveText("ThisPage2",src2); // Just check that it contains a proper error message; don't bother do HTML // checking. assertTrue( testEngine.getHTML("ThisPage").indexOf("Circular reference") != -1 ); } public void testMultiInvocation() throws Exception { String src = "[{InsertPage page='ThisPage2'}] [{InsertPage page='ThisPage2'}]"; String src2 = "foo"; testEngine.saveText("ThisPage",src); testEngine.saveText("ThisPage2",src2); assertTrue( "got circ ref", testEngine.getHTML("ThisPage").indexOf("Circular reference") == -1 ); assertEquals( "found != 2", "<div style=\"\">foo\n</div> <div style=\"\">foo\n</div>\n", testEngine.getHTML("ThisPage") ); } public static Test suite() { return new TestSuite( InsertPageTest.class ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?