lib/rspec/rails/fixture_support.rb



module RSpec
  module Rails
    # @private
    module FixtureSupport
      if defined?(ActiveRecord::TestFixtures)
        extend ActiveSupport::Concern
        include RSpec::Rails::SetupAndTeardownAdapter
        include RSpec::Rails::MinitestLifecycleAdapter
        include RSpec::Rails::MinitestAssertionAdapter
        include ActiveRecord::TestFixtures

        # @private prevent ActiveSupport::TestFixtures to start a DB transaction.
        # Monkey patched to avoid collisions with 'let(:name)' in Rails 6.1 and after
        # and let(:method_name) before Rails 6.1.
        def run_in_transaction?
          current_example_name = (RSpec.current_example && RSpec.current_example.metadata[:description])
          use_transactional_tests && !self.class.uses_transaction?(current_example_name)
        end

        included do
          if RSpec.configuration.use_active_record?
            include Fixtures

            self.fixture_path = RSpec.configuration.fixture_path
            self.use_transactional_tests = RSpec.configuration.use_transactional_fixtures
            self.use_instantiated_fixtures = RSpec.configuration.use_instantiated_fixtures

            fixtures RSpec.configuration.global_fixtures if RSpec.configuration.global_fixtures
          end
        end

        module Fixtures
          extend ActiveSupport::Concern

          class_methods do
            def fixtures(*args)
              orig_methods = private_instance_methods
              super.tap do
                new_methods = private_instance_methods - orig_methods
                new_methods.each do |method_name|
                  proxy_method_warning_if_called_in_before_context_scope(method_name)
                end
              end
            end

            def proxy_method_warning_if_called_in_before_context_scope(method_name)
              orig_implementation = instance_method(method_name)
              define_method(method_name) do |*args, &blk|
                if inspect.include?("before(:context)")
                  RSpec.warn_with("Calling fixture method in before :context ")
                else
                  orig_implementation.bind(self).call(*args, &blk)
                end
              end
            end
          end
        end
      end
    end
  end
end