vote up 4 vote down star

I am creating an automated testing framework in Perl for regression tests. I would like to post my results from the test machines. I have used django before where the server ran standalone with no installation needed. Which MVC framework in Perl has its own standalone server? Basically, which of the Perl MVC frameworks is closest to django's server capability and DRY (Don't Repeat Yourself) principles?

P.S. I will not rewrite my framework in python

P.S.S I will not use Perl framework and django as MVC

(no python on servers :( )

flag

How ancient are these servers? Python's pre-installed on almost everything. – S.Lott May 28 at 15:55
You are telling me! I have to go through the longest bueracraptic process to get anything installed on the testing servers. Not worth the effort for the amount of testing I am doing – kthakore May 28 at 17:33
1  
you say 'no python on servers' like its a bad thing. – james2vegas May 29 at 1:05
1  
Make sure you're not re-inventing the wheel. See if Smolder (search.cpan.org/perldoc?Smolder) already does what you need. – mpeters May 29 at 12:00
@james2vegas its not a bad thing I am just saying getting it installed is a horrible painful process – kthakore May 29 at 12:59

4 Answers

vote up 15 vote down check

Catalyst comes with a built-in test server - check Catalyst::Manual::Tutorial for more details. This looks like a good place to start.

link|flag
1  
In the Catalyst Manual, there is an interesting section about the pros/cons of each deployment solutions in Catalyst: search.cpan.org/~hkclark/Catalyst-Manual-5.8000/… – sebthebert May 28 at 23:41
vote up 5 vote down

Catalyst comes with it's own server script/myapp_server.pl. You can also deploy with our without a reverse proxy using the built in server, but in this case it's advisable to use Catalyst::Engine::HTTP::Prefork: CATALYST_ENGINE='HTTP::Prefork' script/myapp_server.pl

I believe Jifty also has a built in dev server, as does Squatting, but I haven't used either of them.

link|flag
vote up 6 vote down

Every popular Perl web framework comes with it's own server: Catalyst, CGI::Application, Jifty. Most popular and DRY-following is Catalyst (don't know about DRY in Jifty).

Also there test result aggregators like Smolder.

link|flag
vote up 2 vote down

Maybe Catalyst. I don't know if it has a stand alone server, but it's Perl with MVC,

link|flag
1  
It can be made to use HTTP::Server::Simple, so you could probably grow a "stand alone server" off that... – jettero May 28 at 17:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.