i  find a solution
 
add this parameters in the testcase configuration file
 <context>
      <entry name="environment-context" class="org.apache.cocoon.environment.mock.MockContext"/>
 </context>
 
Actually i use the context for the getRealPath method
but in MockContext  , this method return the input path parameter..
 
 
there is a addContext method in Excalibur TestCase, but
i don't know how it work (i try to use but no success with this sample
 
    DefaultContext avalonContext = new DefaultContext();
   avalonContext.put(Constants.CONTEXT_ENVIRONMENT_CONTEXT, new MockContext());
   this.addContext(avalonContext);
 
   FileInputStream reader = new FileInputStream("d:\\testcase.xml");
   this.prepare(reader);
 
)
 
 
 
the Ideal  will be to  create a MockContext  Object
set The root path ( no possible in this version )
 
void setRootPath (String root) {
    this.root=root;
}
 
void getRealPath(String path) {
return root+path;
}
 
and  use the addContext method Excalibur TestCase
 
 
----- Original Message -----
Sent: Tuesday, September 02, 2003 8:59 AM
Subject: RE: tescase avalon component in cocoon

Oops. AbstractCompositeTestCase is set up to test generators, transformers and actions.
-----Original Message-----
From: Ralph Goers
Sent: Monday, September 01, 2003 11:56 PM
To: '[EMAIL PROTECTED]'
Subject: RE: tescase avalon component in cocoon

Try extending Cocoon's AbstractCompositeTestCase. It sets up mock objects and is set up to test generators, transformers and serializers. You can configure basic components and test them as well.  The only thing I haven't figured out how to test with it is an input module.
 
Ralph
-----Original Message-----
From: Nicolas Maisonneuve [mailto:[EMAIL PROTECTED]
Sent: Monday, September 01, 2003 2:24 PM
To: cocoon user
Subject: tescase avalon component in cocoon

hy,
i would like use the Excalibur Testcase for test my avalon component in cocoon
but i don't know how do ?
 
i tried  with this code but my component use contextualize method  and
there is a contextException because the context object is not a cocoon context
note : i have not experience in TestCase..
 
my code :
 
public class TestIndexComponentImpl extends ExcaliburTestCase {
 
  public TestIndexComponentImpl(String name) {
    super(name);
  }
 
  protected void setUp() throws Exception {
    super.setUp();
    FileInputStream reader=new FileInputStream("d://testcase.xml");
    this.prepare(reader);
  }
 
  protected void tearDown() throws Exception {
    super.tearDown();
  }
 
  public void testAnalyzer() {
    try {
      AnalyzerManager manager = (AnalyzerManager)this.lookup(AnalyzerManager.ROLE);
    }
    catch (ComponentException ex) {
      ex.printStackTrace();
    }
    this.assertNotNull(manager);
  }
 

Reply via email to