Skip to content

Commit c7d6e14

Browse files
committedJan 22, 2014
Add a timeout to async examples
1 parent 82fd009 commit c7d6e14

File tree

2 files changed

+34
-7
lines changed

2 files changed

+34
-7
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88

99
* Replaced browser formatter to use html printer from rspec
1010

11+
* Add timeout support to asynchronous specs
12+
1113
## 0.2.1 2013-11-24

‎opal/opal/rspec/async.rb

+32-7
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ def async(desc, *args, &block)
88
end
99

1010
module AsyncHelpers
11-
def run_async(&block)
12-
::RSpec.current_example.continue_async(block)
11+
def async(&block)
12+
@example.continue_async(block)
1313
end
1414

15-
def set_timeout(duration, &block)
16-
`setTimeout(block, duration)`
15+
alias run_async async
16+
17+
def delay(duration, &block)
18+
`setTimeout(block, duration * 1000)`
1719
self
1820
end
21+
22+
alias set_timeout delay
1923
end
2024

2125
class AsyncRunner
@@ -70,14 +74,18 @@ def self.examples
7074
@examples ||= []
7175
end
7276

77+
include AsyncHelpers
78+
7379
def run(example_group_instance, reporter, &after_run_block)
7480
@example_group_instance = example_group_instance
75-
@reporter = reporter
76-
@after_run_block = after_run_block
81+
@reporter = reporter
82+
@after_run_block = after_run_block
83+
@finished = false
7784

7885
should_wait = true
7986

8087
::RSpec.current_example = self
88+
example_group_instance.instance_variable_set :@example, self
8189

8290
start(reporter)
8391

@@ -89,10 +97,21 @@ def run(example_group_instance, reporter, &after_run_block)
8997
should_wait = false
9098
end
9199

92-
async_example_finished unless should_wait
100+
if should_wait
101+
delay options[:timeout] || 10 do
102+
next if finished?
103+
104+
set_exception RuntimeError.new("timeout")
105+
async_example_finished
106+
end
107+
else
108+
async_example_finished
109+
end
93110
end
94111

95112
def continue_async(block)
113+
return if finished?
114+
96115
begin
97116
block.call
98117
rescue Exception => e
@@ -102,7 +121,13 @@ def continue_async(block)
102121
async_example_finished
103122
end
104123

124+
def finished?
125+
@finished
126+
end
127+
105128
def async_example_finished
129+
@finished = true
130+
106131
begin
107132
run_after_each
108133
rescue Exception => e

0 commit comments

Comments
 (0)
Please sign in to comment.