Created
September 22, 2013 16:52
-
-
Save lorenzoplanas/6661802 to your computer and use it in GitHub Desktop.
Testing EventMachine periodic timers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'eventmachine' | |
| module Sample | |
| class Runner | |
| DEFAULT_INTERVAL_IN_SECS = 1 | |
| def initialize(command, interval=DEFAULT_INTERVAL_IN_SECS) | |
| @command = command | |
| @interval = interval | |
| end | |
| def run(&after_command) | |
| EventMachine.run { | |
| EventMachine::PeriodicTimer.new(interval) { | |
| command.run | |
| after_command.call if after_command | |
| } | |
| } | |
| end | |
| private | |
| attr_reader :command, :interval | |
| end # Runner | |
| end # Sample | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem 'minitest' | |
| require 'minitest/autorun' | |
| require_relative './runner' | |
| describe Sample::Runner do | |
| describe '#run' do | |
| it 'runs a command' do | |
| command = Minitest::Mock.new | |
| runner = Sample::Runner.new(command) | |
| command.expect :run, self | |
| runner.run { EventMachine.stop } | |
| command.verify | |
| end | |
| it 'runs the loop at the interval set at initialization' do | |
| interval_in_secs = 0.5 | |
| runner = Sample::Runner.new(fake_command, interval_in_secs) | |
| before = Time.now.to_i | |
| runner.run { EventMachine.stop } | |
| after = Time.now.to_i | |
| (before - after < 1).must_equal true | |
| end | |
| it 'executes a block after running the command' do | |
| runner = Sample::Runner.new(fake_command) | |
| timer_loops = 0 | |
| return_value = runner.run { | |
| timer_loops = timer_loops + 1 | |
| EventMachine.stop if timer_loops > 1 | |
| } | |
| timer_loops.must_equal 2 | |
| end | |
| end | |
| def fake_command | |
| command = Object.new | |
| def command.run; self; end | |
| command | |
| end | |
| end # Sample::Runner | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment