2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
require 'forwardable'
|
|
|
|
require 'digest'
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module RspecFlaky
|
|
|
|
# This is a wrapper class for RSpec::Core::Example
|
|
|
|
class Example
|
2021-04-17 20:07:23 +05:30
|
|
|
extend Forwardable
|
|
|
|
|
|
|
|
def_delegators :execution_result, :status, :exception
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
def initialize(rspec_example)
|
2021-04-17 20:07:23 +05:30
|
|
|
@rspec_example = rspec_example.respond_to?(:example) ? rspec_example.example : rspec_example
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def uid
|
|
|
|
@uid ||= Digest::MD5.hexdigest("#{description}-#{file}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def example_id
|
|
|
|
rspec_example.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def file
|
|
|
|
metadata[:file_path]
|
|
|
|
end
|
|
|
|
|
|
|
|
def line
|
|
|
|
metadata[:line_number]
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
metadata[:full_description]
|
|
|
|
end
|
|
|
|
|
|
|
|
def attempts
|
2021-04-17 20:07:23 +05:30
|
|
|
rspec_example.respond_to?(:attempts) ? rspec_example.attempts : 1
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
def to_h
|
|
|
|
{
|
|
|
|
example_id: example_id,
|
|
|
|
file: file,
|
|
|
|
line: line,
|
|
|
|
description: description,
|
|
|
|
last_attempts_count: attempts
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :rspec_example
|
|
|
|
|
|
|
|
def metadata
|
|
|
|
rspec_example.metadata
|
|
|
|
end
|
|
|
|
|
|
|
|
def execution_result
|
|
|
|
rspec_example.execution_result
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|