Sha256: 556a67cdcdadf645d55ef28f232f4ff282c713b4cc4d66defba12b750adb5122

Contents?: true

Size: 937 Bytes

Versions: 5

Compression:

Stored size: 937 Bytes

Contents

module FactoryBot
  class Callback
    attr_reader :name

    def initialize(name, block)
      @name  = name.to_sym
      @block = block
      ensure_valid_callback_name!
    end

    def run(instance, evaluator)
      case block.arity
      when 1, -1 then syntax_runner.instance_exec(instance, &block)
      when 2 then syntax_runner.instance_exec(instance, evaluator, &block)
      else        syntax_runner.instance_exec(&block)
      end
    end

    def ==(other)
      name == other.name &&
        block == other.block
    end

    protected

    attr_reader :block

    private

    def ensure_valid_callback_name!
      unless FactoryBot.callback_names.include?(name)
        raise InvalidCallbackNameError, "#{name} is not a valid callback name. " +
          "Valid callback names are #{FactoryBot.callback_names.inspect}"
      end
    end

    def syntax_runner
      @syntax_runner ||= SyntaxRunner.new
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
factory_bot-5.0.2 lib/factory_bot/callback.rb
factory_bot-5.0.1 lib/factory_bot/callback.rb
factory_bot-5.0.0 lib/factory_bot/callback.rb
factory_bot-5.0.0.rc2 lib/factory_bot/callback.rb
factory_bot-5.0.0.rc1 lib/factory_bot/callback.rb