Stem's integ tests presently use tor's BW events to check its ability to receive asynchronous events. This is because BW events are reliably emitted each second, and as far as I'm aware it's the only way to reliably get an event.
This is essentially a sleep in our tests. Better would be to have an event we can trigger on demand. This would speed up our tests a little and improve their reliability...
Sebastian had the neat idea for new PING event type that can be triggered by calling a controller method. But perhaps we already have a triggerable event I'm overlooking?
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
Reassigning this to Stem. Turns out there's indeed several options. Best so far sounds to be listening for CONF_CHANGED then triggering SETCONF events (don't forget the corresponding RESETCONF so tests don't leave tor in a changed state!).
09:21 < Sebastian> atagar wants an asynch controller command that just replies with something09:21 < nickm> hmmm09:21 < Sebastian> I could implement a ping09:21 < Sebastian> but do we have something that already does that?09:21 < Sebastian> (The idea is to reply just once)09:22 < nickm> Sebastian: what's the application?09:23 < atagar> I described it in the ticket - one sec...09:23 < Sebastian> It would make the tests a lot faster09:23 < Sebastian> currently atagar uses bw events for taht09:23 < Sebastian> that*09:23 < atagar> Not a lot, but a few seconds.09:23 < nickm> oh, easy09:23 < nickm> SETEVENTS ADDRMAP09:23 < nickm> 250 OK09:23 < nickm> RESOLVE 127.0.0.109:23 < nickm> 650 ADDRMAP 127.0.0.1 127.0.0.1 "2015-02-19 12:21:25" EXPIRES="2015-02-19 17:21:25" CACHED="NO"09:23 < Sebastian> thanks for correcting that, atagar. I had hoped for a lot09:23 < nickm> 250 OK09:23 < atagar> ah, there it is - https://trac.torproject.org/projects/tor/ticket/1494309:23 < nickm> probably there's other stuff too09:24 < nickm> note that if you resolve something that is already an IP, it doesn't hit the network09:24 < atagar> If you don't have network connectivity does that work? I'd expect RESOLVE to fail, so suspect it wouldn't emit an event.09:24 < nickm> I bet it will succeed if you tell it 127.0.0.109:24 < Sebastian> easy to test09:25 < Sebastian> just disablenetwork09:25 < nickm> works for me with disablenetwork set09:25 < nickm> haven't tried it with no internet connectivity09:25 < atagar> Also the tests shouldn't touch the network if running without the online target - if it doesn't then perfect.09:25 < nickm> it shouldn't.09:25 < atagar> great - thanks!09:25 < Sebastian> ok, thankss. Will have to find something else to implement then :)09:26 < Sebastian> I'll write the stem patch if you don't want to do it atagar?09:26 < nickm> another option is listen for SIGNAL then send a SIGNAL CLEARDNSCACHE09:26 < nickm> maybe09:26 < nickm> let me check09:26 < atagar> Sebastian: I was just about to ask that. :P09:26 < nickm> yup, that works too09:26 < atagar> Have quite a few other things on my plate so if you're up for writing it that would be appreciated.09:27 < nickm> Or listen for CONF_CHANGED and then set Contact or something09:27 < Sebastian> atagar: ok cool. I am in a train so no real computer and no real network09:27 < Sebastian> Can you file a bug and assign it?09:27 < atagar> oooh, CONF_CHANGED sounds like the best so far09:27 < atagar> thanks nickm09:27 < Sebastian> I'll implement it09:27 < Sebastian> thanks both of you :)09:27 * nickm is just breezing through control-spec.txt09:27 < atagar> Sebastian: Will do. I'll reassign the existing ticket and add this backlog.09:27 < Sebastian> (the great thing about this is that it doesn't even need a feature-gate)