2019-06-21 09:33:41 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-06-27 23:41:09 +08:00
|
|
|
require "bundler/setup"
|
|
|
|
|
2019-06-21 08:59:01 +08:00
|
|
|
require "open3"
|
|
|
|
require "fileutils"
|
|
|
|
require "json"
|
|
|
|
require "rspec"
|
|
|
|
require "rails"
|
2019-06-27 23:41:09 +08:00
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
2019-06-21 08:59:01 +08:00
|
|
|
|
|
|
|
require "parallel_tests"
|
|
|
|
require "parallel_tests/rspec/runner"
|
|
|
|
|
|
|
|
require "./lib/turbo_tests/reporter"
|
|
|
|
require "./lib/turbo_tests/runner"
|
|
|
|
require "./lib/turbo_tests/json_rows_formatter"
|
2023-05-12 17:13:52 +08:00
|
|
|
require "./lib/turbo_tests/documentation_formatter"
|
2019-06-21 08:59:01 +08:00
|
|
|
|
2024-03-08 02:35:46 +08:00
|
|
|
RSpec.configure do |config|
|
|
|
|
# this is an unusual config option because it is used by the formatter, not just the runner
|
|
|
|
config.full_cause_backtrace = true
|
|
|
|
end
|
|
|
|
|
2019-06-21 08:59:01 +08:00
|
|
|
module TurboTests
|
2024-03-08 02:35:46 +08:00
|
|
|
class FakeException < Exception
|
|
|
|
attr_reader :backtrace, :message, :cause
|
|
|
|
|
|
|
|
def initialize(backtrace, message, cause)
|
|
|
|
@backtrace = backtrace
|
|
|
|
@message = message
|
|
|
|
@cause = cause
|
|
|
|
end
|
|
|
|
|
2019-06-21 08:59:01 +08:00
|
|
|
def self.from_obj(obj)
|
|
|
|
if obj
|
|
|
|
obj = obj.symbolize_keys
|
2019-06-27 18:43:12 +08:00
|
|
|
|
|
|
|
klass = Class.new(FakeException) { define_singleton_method(:name) { obj[:class_name] } }
|
|
|
|
|
2019-06-27 18:37:23 +08:00
|
|
|
klass.new(obj[:backtrace], obj[:message], FakeException.from_obj(obj[:cause]))
|
2019-06-21 08:59:01 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-08 03:07:45 +08:00
|
|
|
FakeExecutionResult =
|
|
|
|
Struct.new(
|
|
|
|
:example_skipped?,
|
|
|
|
:pending_message,
|
|
|
|
:status,
|
|
|
|
:pending_fixed?,
|
|
|
|
:exception,
|
|
|
|
:pending_exception,
|
|
|
|
)
|
2019-06-21 08:59:01 +08:00
|
|
|
class FakeExecutionResult
|
|
|
|
def self.from_obj(obj)
|
|
|
|
obj = obj.symbolize_keys
|
|
|
|
new(
|
|
|
|
obj[:example_skipped?],
|
|
|
|
obj[:pending_message],
|
|
|
|
obj[:status].to_sym,
|
|
|
|
obj[:pending_fixed?],
|
2021-12-08 03:07:45 +08:00
|
|
|
FakeException.from_obj(obj[:exception]),
|
|
|
|
FakeException.from_obj(obj[:pending_exception]),
|
2019-06-21 08:59:01 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
FakeExample =
|
2023-05-12 17:13:52 +08:00
|
|
|
Struct.new(
|
|
|
|
:execution_result,
|
|
|
|
:location,
|
|
|
|
:description,
|
|
|
|
:full_description,
|
|
|
|
:metadata,
|
|
|
|
:location_rerun_argument,
|
|
|
|
:process_id,
|
DEV: Introduce automatic reruns to RSpec tests on Github actions (#24811)
What motivated this change?
Our builds on Github actions have been extremely flaky mostly due to system tests. This has led to a drop in confidence
in our test suite where our developers tend to assume that a failed job is due to a flaky system test. As a result, we
have had occurrences where changes that resulted in legitimate test failures are merged into the `main` branch because developers
assumed it was a flaky test.
What does this change do?
This change seeks to reduce the flakiness of our builds on Github Actions by automatically re-running RSpec tests once when
they fail. If a failed test passes subsequently in the re-run, we mark the test as flaky by logging it into a file on disk
which is then uploaded as an artifact of the Github workflow run. We understand that automatically re-runs will lead to
lower accuracy of our tests but we accept this as an acceptable trade-off since a fragile build has a much greater impact
on our developers' time. Internally, the Discourse development team will be running a service to fetch the flaky tests
which have been logged for internal monitoring.
How is the change implemented?
1. A `--retry-and-log-flaky-tests` CLI flag is added to the `bin/turbo_rspec` CLI which will then initialize `TurboTests::Runner`
with the `retry_and_log_flaky_tests` kwarg set to `true`.
2. When the `retry_and_log_flaky_tests` kwarg is set to `true` for `TurboTests::Runner`, we will register an additional
formatter `Flaky::FailuresLoggerFormatter` to the `TurboTests::Reporter` in the `TurboTests::Runner#run` method.
The `Flaky::FailuresLoggerFormatter` has a simple job of logging all failed examples to a file on disk when running all the
tests. The details of the failed example which are logged can be found in `TurboTests::Flaky::FailedExample.to_h`.
3. Once all the tests have been run once, we check the result for any failed examples and if there are, we read the file on
disk to fetch the `location_rerun_location` of the failed examples which is then used to run the tests in a new RSpec process.
In the rerun, we configure a `TurboTests::Flaky::FlakyDetectorFormatter` with RSpec which removes all failed examples from the log file on disk since those examples are not flaky tests. Note that if there are too many failed examples on the first run, we will deem the failures to likely not be due to flaky tests and not re-run the test failures. As of writing, the threshold of failed examples is set to 10. If there are more than 10 failed examples, we will not re-run the failures.
2023-12-13 07:18:27 +08:00
|
|
|
:command_string,
|
2023-05-12 17:13:52 +08:00
|
|
|
)
|
|
|
|
|
2019-06-21 08:59:01 +08:00
|
|
|
class FakeExample
|
DEV: Introduce automatic reruns to RSpec tests on Github actions (#24811)
What motivated this change?
Our builds on Github actions have been extremely flaky mostly due to system tests. This has led to a drop in confidence
in our test suite where our developers tend to assume that a failed job is due to a flaky system test. As a result, we
have had occurrences where changes that resulted in legitimate test failures are merged into the `main` branch because developers
assumed it was a flaky test.
What does this change do?
This change seeks to reduce the flakiness of our builds on Github Actions by automatically re-running RSpec tests once when
they fail. If a failed test passes subsequently in the re-run, we mark the test as flaky by logging it into a file on disk
which is then uploaded as an artifact of the Github workflow run. We understand that automatically re-runs will lead to
lower accuracy of our tests but we accept this as an acceptable trade-off since a fragile build has a much greater impact
on our developers' time. Internally, the Discourse development team will be running a service to fetch the flaky tests
which have been logged for internal monitoring.
How is the change implemented?
1. A `--retry-and-log-flaky-tests` CLI flag is added to the `bin/turbo_rspec` CLI which will then initialize `TurboTests::Runner`
with the `retry_and_log_flaky_tests` kwarg set to `true`.
2. When the `retry_and_log_flaky_tests` kwarg is set to `true` for `TurboTests::Runner`, we will register an additional
formatter `Flaky::FailuresLoggerFormatter` to the `TurboTests::Reporter` in the `TurboTests::Runner#run` method.
The `Flaky::FailuresLoggerFormatter` has a simple job of logging all failed examples to a file on disk when running all the
tests. The details of the failed example which are logged can be found in `TurboTests::Flaky::FailedExample.to_h`.
3. Once all the tests have been run once, we check the result for any failed examples and if there are, we read the file on
disk to fetch the `location_rerun_location` of the failed examples which is then used to run the tests in a new RSpec process.
In the rerun, we configure a `TurboTests::Flaky::FlakyDetectorFormatter` with RSpec which removes all failed examples from the log file on disk since those examples are not flaky tests. Note that if there are too many failed examples on the first run, we will deem the failures to likely not be due to flaky tests and not re-run the test failures. As of writing, the threshold of failed examples is set to 10. If there are more than 10 failed examples, we will not re-run the failures.
2023-12-13 07:18:27 +08:00
|
|
|
def self.from_obj(obj, process_id:, command_string:)
|
2019-06-21 08:59:01 +08:00
|
|
|
obj = obj.symbolize_keys
|
2019-08-29 19:40:06 +08:00
|
|
|
metadata = obj[:metadata].symbolize_keys
|
|
|
|
|
|
|
|
metadata[:shared_group_inclusion_backtrace].map! do |frame|
|
|
|
|
frame = frame.symbolize_keys
|
|
|
|
RSpec::Core::SharedExampleGroupInclusionStackFrame.new(
|
|
|
|
frame[:shared_group_name],
|
|
|
|
frame[:inclusion_location],
|
|
|
|
)
|
2023-01-09 20:10:19 +08:00
|
|
|
end
|
2019-08-29 19:40:06 +08:00
|
|
|
|
2019-06-21 08:59:01 +08:00
|
|
|
new(
|
|
|
|
FakeExecutionResult.from_obj(obj[:execution_result]),
|
|
|
|
obj[:location],
|
2023-05-12 17:13:52 +08:00
|
|
|
obj[:description],
|
2019-06-21 08:59:01 +08:00
|
|
|
obj[:full_description],
|
2019-08-29 19:40:06 +08:00
|
|
|
metadata,
|
2019-06-21 08:59:01 +08:00
|
|
|
obj[:location_rerun_argument],
|
2023-05-12 17:13:52 +08:00
|
|
|
process_id,
|
DEV: Introduce automatic reruns to RSpec tests on Github actions (#24811)
What motivated this change?
Our builds on Github actions have been extremely flaky mostly due to system tests. This has led to a drop in confidence
in our test suite where our developers tend to assume that a failed job is due to a flaky system test. As a result, we
have had occurrences where changes that resulted in legitimate test failures are merged into the `main` branch because developers
assumed it was a flaky test.
What does this change do?
This change seeks to reduce the flakiness of our builds on Github Actions by automatically re-running RSpec tests once when
they fail. If a failed test passes subsequently in the re-run, we mark the test as flaky by logging it into a file on disk
which is then uploaded as an artifact of the Github workflow run. We understand that automatically re-runs will lead to
lower accuracy of our tests but we accept this as an acceptable trade-off since a fragile build has a much greater impact
on our developers' time. Internally, the Discourse development team will be running a service to fetch the flaky tests
which have been logged for internal monitoring.
How is the change implemented?
1. A `--retry-and-log-flaky-tests` CLI flag is added to the `bin/turbo_rspec` CLI which will then initialize `TurboTests::Runner`
with the `retry_and_log_flaky_tests` kwarg set to `true`.
2. When the `retry_and_log_flaky_tests` kwarg is set to `true` for `TurboTests::Runner`, we will register an additional
formatter `Flaky::FailuresLoggerFormatter` to the `TurboTests::Reporter` in the `TurboTests::Runner#run` method.
The `Flaky::FailuresLoggerFormatter` has a simple job of logging all failed examples to a file on disk when running all the
tests. The details of the failed example which are logged can be found in `TurboTests::Flaky::FailedExample.to_h`.
3. Once all the tests have been run once, we check the result for any failed examples and if there are, we read the file on
disk to fetch the `location_rerun_location` of the failed examples which is then used to run the tests in a new RSpec process.
In the rerun, we configure a `TurboTests::Flaky::FlakyDetectorFormatter` with RSpec which removes all failed examples from the log file on disk since those examples are not flaky tests. Note that if there are too many failed examples on the first run, we will deem the failures to likely not be due to flaky tests and not re-run the test failures. As of writing, the threshold of failed examples is set to 10. If there are more than 10 failed examples, we will not re-run the failures.
2023-12-13 07:18:27 +08:00
|
|
|
command_string,
|
2019-06-21 08:59:01 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification
|
|
|
|
RSpec::Core::Notifications::ExampleNotification.for(self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|