aboutsummaryrefslogtreecommitdiffstats
path: root/test/stubs/test_connection.rb
blob: 1c353f9ee3fb4c0d2126ae09dde911f5490b849a (plain) (blame)
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
require 'stubs/user'

class TestConnection
  attr_reader :identifiers, :logger, :current_user, :transmissions

  def initialize(user = User.new("lifo"))
    @identifiers = [ :current_user ]

    @current_user = user
    @logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
    @transmissions = []
  end

  def transmit(data)
    @transmissions << data
  end

  def last_transmission
    @transmissions.last
  end

  # Disable async in tests
  def send_async(method, *arguments)
    send method, *arguments
  end
end