BigW Consortium Gitlab

listener.rb 2.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
require 'json'

module RspecFlaky
  class Listener
    attr_reader :all_flaky_examples, :new_flaky_examples

    def initialize
      @new_flaky_examples = {}
      @all_flaky_examples = init_all_flaky_examples
    end

    def example_passed(notification)
      current_example = RspecFlaky::Example.new(notification.example)

      return unless current_example.attempts > 1

      flaky_example_hash = all_flaky_examples[current_example.uid]

      all_flaky_examples[current_example.uid] =
        if flaky_example_hash
          FlakyExample.new(flaky_example_hash).tap do |ex|
            ex.last_attempts_count = current_example.attempts
            ex.flaky_reports += 1
          end
        else
          FlakyExample.new(current_example).tap do |ex|
            new_flaky_examples[current_example.uid] = ex
          end
        end
    end

    def dump_summary(_)
      write_report_file(all_flaky_examples, all_flaky_examples_report_path)

      if new_flaky_examples.any?
        Rails.logger.warn "\nNew flaky examples detected:\n"
        Rails.logger.warn JSON.pretty_generate(to_report(new_flaky_examples))

        write_report_file(new_flaky_examples, new_flaky_examples_report_path)
      end
    end

    def to_report(examples)
      Hash[examples.map { |k, ex| [k, ex.to_h] }]
    end

    private

    def init_all_flaky_examples
      return {} unless File.exist?(all_flaky_examples_report_path)

      all_flaky_examples = JSON.parse(File.read(all_flaky_examples_report_path))

      Hash[(all_flaky_examples || {}).map { |k, ex| [k, FlakyExample.new(ex)] }]
    end

    def write_report_file(examples, file_path)
      return unless ENV['FLAKY_RSPEC_GENERATE_REPORT'] == 'true'

      report_path_dir = File.dirname(file_path)
      FileUtils.mkdir_p(report_path_dir) unless Dir.exist?(report_path_dir)
      File.write(file_path, JSON.pretty_generate(to_report(examples)))
    end

    def all_flaky_examples_report_path
      @all_flaky_examples_report_path ||= ENV['ALL_FLAKY_RSPEC_REPORT_PATH'] ||
        Rails.root.join("rspec_flaky/all-report.json")
    end

    def new_flaky_examples_report_path
      @new_flaky_examples_report_path ||= ENV['NEW_FLAKY_RSPEC_REPORT_PATH'] ||
        Rails.root.join("rspec_flaky/new-report.json")
    end
  end
end