KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > Bug26186InternalRequestMemoryLeakTestCase


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.cocoon;
17
18 /**
19  * HtmlUnit TestCase for memory leak in internal requests (Bugzilla #26186).
20  *
21  * @version $Id: $
22  */

23 public class Bug26186InternalRequestMemoryLeakTestCase
24     extends HtmlUnitTestCase
25 {
26     static final String JavaDoc pageurl = "/samples/blocks/xsp/java/resolver";
27
28     public void testMemoryLeak()
29         throws Exception JavaDoc
30     {
31         final int iterations = Integer.parseInt(System.getProperty("htmlunit.test.Bug26186InternalRequestMemoryLeak.iterations"));
32
33         final String JavaDoc phrase = "An XSP Page using a source";
34         for( int i = 0; i < iterations; i++ ) {
35             loadResponse(pageurl);
36             assertEquals("Status code", 200, response.getStatusCode());
37             assertTrue("Content should contain: "+phrase,
38                        response.getContentAsString().indexOf(phrase) != -1);
39
40             if( (i+1)%100 == 0 ) {
41                 logger.info("Memory leak checking "+(i+1)+" of "+iterations+" iterations");
42             }
43         }
44     }
45 }
46
Popular Tags