aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/test_server.rb
blob: 56d132b30a124708e3cb286cad7d23358edccdb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'ostruct'

class TestServer
  include ActionCable::Server::Connections

  attr_reader :logger, :config

  def initialize
    @logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
    @config = OpenStruct.new(log_tags: [], subscription_adapter: SuccessAdapter)
  end

  def pubsub
    @config.subscription_adapter.new(self)
  end

  def stream_event_loop
    @stream_event_loop ||= ActionCable::Connection::StreamEventLoop.new
  end
end