Overhaul Report

This commit is contained in:
Michael Miller 2021-05-16 13:19:04 -06:00
parent fb436d2ec4
commit ceb368a7f4
No known key found for this signature in database
GPG key ID: FB9F12F7C646A4AD

View file

@ -3,118 +3,127 @@ require "./result"
module Spectator module Spectator
# Outcome of all tests in a suite. # Outcome of all tests in a suite.
class Report class Report
include Enumerable(Example) # Records the number of examples that had each type of result.
record Counts, pass = 0, fail = 0, error = 0, pending = 0, remaining = 0 do
# Number of examples that actually ran.
def run
pass + fail + pending
end
# Total number of examples in the suite that were selected to run.
def total
run + remaining
end
# Indicates whether there were skipped tests
# because of a failure causing the test suite to abort.
def remaining?
remaining_count > 0
end
end
# Total length of time it took to execute the test suite. # Total length of time it took to execute the test suite.
# This includes examples, hooks, and framework processes. # This includes examples, hooks, and framework processes.
getter runtime : Time::Span getter runtime : Time::Span
# Number of passing examples. # Number of examples of each result type.
getter successful_count = 0 getter counts : Counts
# Number of failing examples (includes errors). # Seed used for random number generation.
getter failed_count = 0
# Number of examples that had errors.
getter error_count = 0
# Number of pending examples.
getter pending_count = 0
# Number of remaining tests.
# This will be greater than zero only in fail-fast mode.
getter remaining_count
# Random seed used to determine test ordering.
getter! random_seed : UInt64? getter! random_seed : UInt64?
# Creates the report. # Creates the report.
# The *examples* are all examples in the test suite. # The *examples* are all examples in the test suite that were selected to run.
# The *runtime* is the total time it took to execute the suite. # The *runtime* is the total time it took to execute the suite.
# The *remaining_count* is the number of tests skipped due to fail-fast. # The *counts* is the number of examples for each type of result.
# The *fail_blank* flag indicates whether it is a failure if there were no tests run.
# The *random_seed* is the seed used for random number generation. # The *random_seed* is the seed used for random number generation.
def initialize(@examples : Array(Example), @runtime, @remaining_count = 0, @fail_blank = false, @random_seed = nil) def initialize(@examples : Array(Example), @runtime, @counts : Counts, @random_seed = nil)
@examples.each do |example| end
case example.result
when PassResult # Generates the report from a set of examples.
@successful_count += 1 def self.generate(examples : Enumerable(Example), runtime, random_seed = nil)
when ErrorResult counts = count_examples(examples)
@error_count += 1 new(examples.to_a, runtime, counts, random_seed)
@failed_count += 1 end
when FailResult
@failed_count += 1 # Counts the number of examples for each result type.
when PendingResult private def self.count_examples(examples)
@pending_count += 1 visitor = CountVisitor.new
when Result
# This case isn't possible, but gets the compiler to stop complaining. # Number of tests not run.
nil remaining = 0
# Iterate through each example and count the number of each type of result.
# If an example hasn't run (indicated by `Node#finished?`), then count is as "remaining."
# This typically happens in fail-fast mode.
examples.each do |example|
if example.finished?
example.result.accept(visitor)
else
remaining += 1
end end
end end
visitor.counts(remaining)
end end
# Creates the report. # Returns a collection of all failed examples.
# This constructor is intended for reports of subsets of results.
# The *examples* are all examples in the test suite.
# The runtime is calculated from the *results*.
def initialize(examples : Array(Example))
runtime = examples.sum(&.result.elapsed)
initialize(examples, runtime)
end
# Yields each example in turn.
def each
@examples.each do |example|
yield example
end
end
# Retrieves results of all examples.
def results
@examples.each.map(&.result)
end
# Number of examples.
def example_count
@examples.size
end
# Number of examples run (not skipped or pending).
def examples_ran
@successful_count + @failed_count
end
# Indicates whether the test suite failed.
def failed?
failed_count > 0 || (@fail_blank && examples_ran == 0)
end
# Indicates whether there were skipped tests
# because of a failure causing the test to abort.
def remaining?
remaining_count > 0
end
# Returns a set of all failed examples.
def failures def failures
@examples.select(&.result.is_a?(FailResult)) @examples.each.select(&.result.fail?)
end end
# Returns a set of all errored examples. # Returns a collection of all pending (skipped) examples.
def errors def pending
@examples.select(&.result.is_a?(ErrorResult)) @examples.each.select(&.result.pending?)
end end
# Length of time it took to run just example code. # Length of time it took to run just example code.
# This does not include hooks, # This does not include hooks,
# but it does include pre- and post-conditions. # but it does include pre- and post-conditions.
def example_runtime def example_runtime
results.sum(&.elapsed) @examples.sum(&.result.elapsed)
end end
# Length of time spent in framework processes and hooks. # Length of time spent in framework processes and hooks.
def overhead_time def overhead_time
@runtime - example_runtime @runtime - example_runtime
end end
# Totals up the number of each type of result.
# Defines methods for the different types of results.
# Call `#counts` to retrieve the `Counts` instance.
private class CountVisitor
@pass = 0
@fail = 0
@error = 0
@pending = 0
# Increments the number of passing examples.
def pass(_result)
@pass += 1
end
# Increments the number of failing (non-error) examples.
def fail(_result)
@fail += 1
end
# Increments the number of error (and failed) examples.
def error(result)
fail(result)
@error += 1
end
# Increments the number of pending (skipped) examples.
def pending(_result)
@pending += 1
end
# Produces the total counts.
# The *remaining* number of examples should be provided.
def counts(remaining)
Counts.new(@pass, @fail, @error, @pending, remaining)
end
end
end end
end end