shard-spectator/src/spectator/result.cr
2021-02-12 22:46:22 -07:00

40 lines
1.3 KiB
Crystal

module Spectator
# Base class that represents the outcome of running an example.
# Sub-classes contain additional information specific to the type of result.
abstract class Result
# Example that generated the result.
# TODO: Remove this.
getter example : Example
# Length of time it took to run the example.
getter elapsed : Time::Span
# The assertions checked in the example.
getter expectations : Enumerable(Expectation)
# Creates the result.
# *elapsed* is the length of time it took to run the example.
def initialize(@example, @elapsed, @expectations = [] of Expectation)
end
# Calls the corresponding method for the type of result.
# This is the visitor design pattern.
abstract def accept(visitor)
# Creates a JSON object from the result information.
def to_json(json : ::JSON::Builder)
json.object do
add_json_fields(json)
end
end
# Adds the common fields for a result to a JSON builder.
private def add_json_fields(json : ::JSON::Builder)
json.field("name", example)
json.field("location", example.location)
json.field("result", to_s)
json.field("time", elapsed.total_seconds)
json.field("expectations", expectations)
end
end
end