I would like to test my node.js/socket.io application using the zombie.js headless browser.

Unfortunately when the zombie.js app connects to my app it reports a load of connection/disconnection events.

Eg.

Zombie: Firing timeout 234, delay: 1000
Zombie: GET http://localhost:8000/socket.io/1/?t=1313487267750&jsonp=68
Zombie: GET http://localhost:8000/socket.io/1/?t=1313487267724&jsonp=69
connected
connected
connected
Zombie: Firing timeout 237, delay: 2000
Zombie: Firing timeout 226, delay: 16000
Zombie: Firing timeout 218, delay: 25000
disconnected

It seems Zombie doesn't respect timeout delays, so I wonder if this could be a cause?

Has anyone tried using zombie with socket.io or can tell me why zombie seems to fire timeouts immediately rather than waiting the stated time?

link|improve this question

77% accept rate
Are you sure that's not zombie emulating XHR to keep the socket.io connection open? – Raynos Aug 16 '11 at 10:02
Yes, likely. I've updated the question with a better example. I think the issue may be that the XHR requests do not occur after the stated timeout delay, and instead happen at once. – bdls Aug 16 '11 at 10:11
2  
@bdis this may be a limitation of zombie. Try reproducing it with phantomjs – Raynos Aug 16 '11 at 10:31
@Raynos Phantomjs works. Thanks for the suggestion. – bdls Aug 16 '11 at 13:17
I also believe you can test your socket.io code with the latest version.. – Alfred Aug 16 '11 at 19:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.