atom feed26 messages in org.apache.commons.devRe: [latka][anteater][jelly] possible...
FromSent OnAttachments
Dmitri PlotnikovApr 24, 2002 7:06 am 
Scott SandersApr 24, 2002 6:33 pm 
Ivelin IvanovApr 24, 2002 7:20 pm 
Jeff TurnerApr 24, 2002 10:23 pm 
Craig R. McClanahanApr 24, 2002 10:25 pm 
Juozas BaliukaApr 24, 2002 11:14 pm 
di...@multitask.com.auApr 25, 2002 12:26 am 
Ivelin IvanovMay 15, 2002 8:26 pm 
Jeff TurnerMay 15, 2002 10:57 pm 
James StrachanMay 16, 2002 12:38 am 
Ivelin IvanovMay 16, 2002 6:29 am 
Morgan DelagrangeMay 16, 2002 8:31 am 
Morgan DelagrangeMay 16, 2002 8:41 am 
Ovidiu PredescuMay 16, 2002 10:38 am 
Jeff TurnerMay 16, 2002 4:21 pm 
Ivelin IvanovMay 17, 2002 11:09 am 
Morgan DelagrangeMay 17, 2002 11:17 am 
Ovidiu PredescuMay 17, 2002 11:26 am 
Ovidiu PredescuMay 17, 2002 11:32 am 
James StrachanOct 30, 2002 4:16 am 
Vincent MassolOct 30, 2002 4:26 am 
Janek BoguckiOct 30, 2002 6:17 am 
James StrachanOct 30, 2002 7:33 am 
Morgan DelagrangeOct 30, 2002 8:54 am 
Ovidiu PredescuOct 30, 2002 12:04 pm 
di...@multitask.com.auOct 30, 2002 3:47 pm 
Subject:Re: [latka][anteater][jelly] possible integration... (was Re: Latka & Anteater)
From:Janek Bogucki (ya@studylink.com)
Date:Oct 30, 2002 6:17:33 am
List:org.apache.commons.dev

Latka does allow parameterization of tests via preprocessing of the test suite document. It goes like this

From test-suite.xml

<suite defaultHost="${DEFAULT_HOST}" defaultPort="80" label="foo">

then on the command line

$ latka.sh <test-suite-url> prop:DEFAULT_HOST=foo.example.com

While this topic is up could someone commit my documentation patch for latka? It's still useful to the current alpha release even though it appears that Morgan is removing XML parsing support from latka, and replacing it with Jelly.

http://issues.apache.org/bugzilla/show_bug.cgi?id=13426

-Janek

From: "James Strachan" <jame@yahoo.co.uk> Reply-To: "Jakarta Commons Developers List" <comm@jakarta.apache.org> Date: Wed, 30 Oct 2002 12:17:19 -0000 To: "Jakarta Commons Developers List" <comm@jakarta.apache.org> Subject: [latka][anteater][jelly] possible integration... (was Re: Latka & Anteater)

On Wed, May 15, 2002 at 10:26:47PM -0500, Ivelin Ivanov wrote:

Can some of the Latka experts please comment on how Latka compares to Anteater (which emerged from Cocoon)?

http://sourceforge.net/projects/aft/

I've worked on both projects, and like both for different reasons.

Latka pros: - Strong typing via a DTD. - Internally, it's got a very nice delegating-SAX-handler model for adding new elements. - Decent XML reporting. - After all Dion's work, it's docs are rather good.

Latka cons: - A PITA to compile, due to it's many dependencies. Hopefully that's changed with Maven. - The XML file is a bit hard to comprehend at first, due to the use of &entities; - Inflexible XML syntax (see below for definition of 'flexible':)

Anteater pros: - It's based on Ant (it's really a bunch of Ant tasks). This makes it wonderfully flexible: - I can parametrize tests, by defining variables like ${host}, ${port}, ${debuglevel} as properties, and reuse them throughout the script.