mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Initial documentation and rework on runnable example
This commit is contained in:
parent
81dce3df9a
commit
34dce28663
1 changed files with 40 additions and 9 deletions
|
@ -1,33 +1,60 @@
|
||||||
require "./example"
|
require "./example"
|
||||||
|
|
||||||
module Spectator
|
module Spectator
|
||||||
|
# Common base for all examples that can be run.
|
||||||
|
# This class includes all the logic for running example hooks,
|
||||||
|
# the example code, and capturing a result.
|
||||||
|
# Sub-classes need to implement the `#run_instance` method.
|
||||||
abstract class RunnableExample < Example
|
abstract class RunnableExample < Example
|
||||||
def run_inner
|
# Runs the example, hooks, and captures the result.
|
||||||
|
def run_inner : Result
|
||||||
result = ResultCapture.new
|
result = ResultCapture.new
|
||||||
group.run_before_all_hooks
|
|
||||||
group.run_before_each_hooks
|
|
||||||
begin
|
begin
|
||||||
|
run_before_hooks
|
||||||
wrapped_capture_result(result).call
|
wrapped_capture_result(result).call
|
||||||
ensure
|
ensure
|
||||||
@finished = true
|
run_after_hooks
|
||||||
group.run_after_each_hooks
|
|
||||||
group.run_after_all_hooks
|
|
||||||
end
|
end
|
||||||
expectations = Internals::Harness.current.expectation_results
|
expectations = Internals::Harness.current.expectation_results
|
||||||
translate_result(result, expectations)
|
translate_result(result, expectations)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Runs the actual test code.
|
||||||
|
private abstract def run_instance
|
||||||
|
|
||||||
|
# Runs the hooks that should be performed before starting the test code.
|
||||||
|
private def run_before_hooks
|
||||||
|
group.run_before_all_hooks
|
||||||
|
group.run_before_each_hooks
|
||||||
|
end
|
||||||
|
|
||||||
|
# Runs the hooks that should be performed after the test code finishes.
|
||||||
|
private def run_after_hooks
|
||||||
|
group.run_after_each_hooks
|
||||||
|
group.run_after_all_hooks
|
||||||
|
rescue ex
|
||||||
|
# TODO: Pass along error to result.
|
||||||
|
end
|
||||||
|
|
||||||
|
# Creates a proc that runs the test code
|
||||||
|
# and captures the result.
|
||||||
private def wrapped_capture_result(result)
|
private def wrapped_capture_result(result)
|
||||||
|
# Wrap the method that runs and captures
|
||||||
|
# the test code with the around-each hooks.
|
||||||
group.wrap_around_each_hooks do
|
group.wrap_around_each_hooks do
|
||||||
|
# Pass along the result capture utility.
|
||||||
capture_result(result)
|
capture_result(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Runs the test code and captures the result.
|
||||||
private def capture_result(result)
|
private def capture_result(result)
|
||||||
|
# Capture how long it takes to run the test code.
|
||||||
result.elapsed = Time.measure do
|
result.elapsed = Time.measure do
|
||||||
begin
|
begin
|
||||||
|
# Actually go run the example code.
|
||||||
run_instance
|
run_instance
|
||||||
rescue ex
|
rescue ex # Catch all errors and handle them later.
|
||||||
result.error = ex
|
result.error = ex
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -44,10 +71,14 @@ module Spectator
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
protected abstract def run_instance
|
# Utility class for storing parts of the result while the example is running.
|
||||||
|
|
||||||
private class ResultCapture
|
private class ResultCapture
|
||||||
|
# Length of time that it took to run the test code.
|
||||||
|
# This does not include hooks.
|
||||||
property elapsed = Time::Span.zero
|
property elapsed = Time::Span.zero
|
||||||
|
|
||||||
|
# The error that occurred while running the test code.
|
||||||
|
# If no error occurred, this will be nil.
|
||||||
property error : Exception?
|
property error : Exception?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue