aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/test/stubs/test_connection.rb
blob: da9820190069a70414855e7cf73123d662217338 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                      
            


                                      






                          
   
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 pubsub
    SuccessAdapter.new(TestServer.new)
  end

  def transmit(data)
    @transmissions << data
  end

  def last_transmission
    @transmissions.last
  end
end