Sha256: 3e659fc2e9e629088143454277697149d8e63dd593814d83ce263ec40a7c5818

Contents?: true

Size: 1.1 KB

Versions: 3

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    class UpdatesController
      module Testing
        IVARS_TO_KEEP = %i[@_session].freeze

        # Perform multiple dispatches on same instance.
        def dispatch_again(bot = nil, update = nil, webhook_request = nil)
          recycle!
          initialize(bot, update, webhook_request)
          dispatch
        end

        # Cleans controller between dispatches.
        # Seems like there is nothing to clean between requests for now:
        # everything will be rewriten with #initialize.
        #
        # With `full` set to `true` it'll clear all cached instance variables.
        def recycle!(full = false) # rubocop:disable Style/OptionalBooleanParameter
          return unless full
          (instance_variables - IVARS_TO_KEEP).each do |ivar|
            remove_instance_variable(ivar)
          end
        end

        protected

        # Stubs session.
        def session
          @_session ||= # rubocop:disable Naming/MemoizedInstanceVariableName
            Session::NullSessionHash.new
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
telegram-bot-0.16.5 lib/telegram/bot/updates_controller/testing.rb
telegram-bot-0.16.4 lib/telegram/bot/updates_controller/testing.rb
telegram-bot-0.16.3 lib/telegram/bot/updates_controller/testing.rb