Re: apache-swat project - need feedback!

2016-03-23 Thread Alexey Melezhik
Hi Jim, sounds good! Let me know if anything else you need. Also keep swat updated from cpan, as I have been developing it, adding new features , bug fixes and improvements , to make swat better and easier to use. среда, 23 марта 2016 г. пользователь Jim Jagielski написал: > Thanks! > > After we

Re: apache-swat project - need feedback!

2016-03-23 Thread Jim Jagielski
Thanks! After we get 2.4.next out, I plan on diving in. > On Mar 14, 2016, at 2:08 PM, Alexey Melezhik wrote: > > I have just update some docs on swatpm.org to help beginners start > with swat on more gentle way: > > - http://swatpm.org/ - hello world example to start with

Re: apache-swat project - need feedback!

2016-03-14 Thread Alexey Melezhik
I have just update some docs on swatpm.org to help beginners start with swat on more gentle way: - http://swatpm.org/ - hello world example to start with - http://swatpm.org/faq - FAQ page with answers to possible common questions about swat Regards PS anyway, if anybody succeeded in starting

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Please also consider these 2 variables as tests time tuning , in cases of dead locks or hanging requests they also could be helpful - curl_connect_timeout - maximum time in seconds that you allow the connection to the server to take, follow curl documentation for full explanation.

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi , not sure if I completely understand the question, but if you ask about mapping http requess into swat language, then this is my answer : In terms of swat request is just a directories and file paths so GET /58854/denied/ would be a directory 58854/denied/ with a file get.txt in it. $

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi Eric! Have you made these three steps ? 1. Make sure that http.conf.templ has all your changes ( concerning MPM modules loading ) 2. # generate httpd.conf ./configure.bash /path/to/apache/server/root 3. # run apache with new http do.conf sudo /path/to/apache/install/prefix/bin/apachectl -f

Re: apache-swat project - need feedback!

2016-02-26 Thread Alexey Melezhik
Hi ! Please try to set try_num variable , which defines number of attempts in case of unsuccessful return , swat makes exponential delays on every retry , so to get things fast you probably need try_num=1, please follow https://github.com/melezhik/swat#curl-parameters for details, also please

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
On Fri, Feb 26, 2016 at 11:23 AM, Eric Covener wrote: > On Thu, Feb 4, 2016 at 6:07 AM, Alexey Melezhik wrote: >> * what things could be improved > > I notice that failed (bad status code for example) tests hang for a > many seconds which makes iterating

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
On Thu, Feb 4, 2016 at 6:07 AM, Alexey Melezhik wrote: > * what things could be improved I notice that failed (bad status code for example) tests hang for a many seconds which makes iterating over stuff a little slow. -- Eric Covener cove...@gmail.com

Re: apache-swat project - need feedback!

2016-02-26 Thread Jim Jagielski
Any hints would be appreciated... I'd also like to dig deeper into using it. > On Feb 26, 2016, at 10:54 AM, Eric Covener wrote: > > Whoops, I realized this is not true -- it's got some modules, but it > didn't have MY modules -- notably my MPM. > > On Fri, Feb 26, 2016 at

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
Whoops, I realized this is not true -- it's got some modules, but it didn't have MY modules -- notably my MPM. On Fri, Feb 26, 2016 at 10:52 AM, Eric Covener wrote: > I tried to take this for a spin, because I had a bad fix (1 step > forward, 10 steps back!) fix for an issue

Re: apache-swat project - need feedback!

2016-02-26 Thread Eric Covener
I tried to take this for a spin, because I had a bad fix (1 step forward, 10 steps back!) fix for an issue you later wrote a test for. But the httpd.conf template doesn't load any modules, so my (typical) DSO config didn't work at all. Did I do something wrong? Our Apache::Test harness copies

apache-swat project - need feedback!

2016-02-04 Thread Alexey Melezhik
Hi! Recently I have started apache-swat project https://github.com/melezhik/apache-swat , thanks to Bill for supporting my first attempt - http://mail-archives.apache.org/mod_mbox/httpd-dev/201601.mbox/%3CCACsi253b6=vufvyrw3j0ixyhmgruzlyy1+ufrenaxfkd+re...@mail.gmail.com%3E As being newbie in