stresstestrcsprovider.java

来自「wiki建站资源 java编写的 很好用」· Java 代码 · 共 97 行

JAVA
97
字号
package stress;import junit.framework.*;import java.io.*;import java.util.*;import com.ecyrd.jspwiki.*;import com.ecyrd.jspwiki.providers.*;/** *  Does stress testing on the RCSProvider. */public class StressTestRCSProvider extends TestCase{    public static final String NAME1 = "Test1";    Properties props = new Properties();    TestEngine engine;    public StressTestRCSProvider( String s )    {        super( s );    }    public void setUp()        throws Exception    {        props.load( TestEngine.findTestProperties("/jspwiki_rcs.properties") );        engine = new TestEngine(props);    }    public void tearDown()    {        String files = props.getProperty( FileSystemProvider.PROP_PAGEDIR );        File f = new File( files, NAME1+FileSystemProvider.FILE_EXT );        f.delete();        f = new File( files+File.separator+"RCS", NAME1+FileSystemProvider.FILE_EXT+",v" );        f.delete();        f = new File( files, "RCS" );        f.delete();    }    /**     *  Bug report by Anon: RCS under Windows 2k:     * <PRE>     * In getPageInfo of RCSFileProvider:     *     * Problem:     *     * With a longer rlog result, the break clause in the last "else if"      * breaks out of the reading loop before all the lines in the full      * rlog have been read in. This causes the process.wait() to hang.     *     * Suggested quick fix:     *     * Always read all the contents of the rlog, even if it is slower.     * </PRE>     *     */    public void testMillionChanges()        throws Exception    {        String text = "";        String name = NAME1;        int    maxver = 2000; // Save 2000 versions.        Benchmark mark = new Benchmark();        mark.start();        for( int i = 0; i < maxver; i++ )        {            text = text + ".";            engine.saveText( name, text );        }        mark.stop();        System.out.println("Benchmark: "+mark.toString(2000)+" pages/second");        WikiPage pageinfo = engine.getPage( NAME1 );        assertEquals( "wrong version", maxver, pageinfo.getVersion() );        // +2 comes from \r\n at the end of each file.        assertEquals( "wrong text", maxver+2, engine.getText(NAME1).length() );    }    public static Test suite()    {        return new TestSuite( StressTestRCSProvider.class );    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?