in reply to threads or processes ? - Simulation test
As I would be testing the features like FTP,Email etc., So I would be using the Perl modules Net::FTP, Net::SMTP,POP3,IMAP etc in my script(s), which would be executing on a workstation (unix flavour) acting as a client and sending the request to server(unix flavour):
The scenario could be like this:
1) send 10 mails after every 2 mins
2) Try ftp for 10 users every 3 mins/5 mins>br>
3) Check if can access webpages (thru' Mechanize module) every 5 mins and other stuff (testing other features) which would be doing something every TIMEPERIOD.
Those would be independent of each other and will not need to communicate with each other and would be sending the requests to the server.
I may have to get the logs/reports after one iteration or after completion of some particular test , that I still need to figure out. But right now I am more concerned about the approach should I take related to threads or processes?