blob: ce604cc88eb71f5314aa8815af0be11b6d11a796 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# frozen_string_literal: true
require_relative "async"
module ActionCable
module SubscriptionAdapter
# == Test adapter for Action Cable
#
# The test adapter should be used only in testing. Along with
# <tt>ActionCable::TestHelper</tt> it makes a great tool to test your Rails application.
#
# To use the test adapter set +adapter+ value to +test+ in your +config/cable.yml+ file.
#
# NOTE: Test adapter extends the <tt>ActionCable::SubscriptionsAdapter::Async</tt> adapter,
# so it could be used in system tests too.
class Test < Async
def broadcast(channel, payload)
broadcasts(channel) << payload
super
end
def broadcasts(channel)
channels_data[channel] ||= []
end
def clear_messages(channel)
channels_data[channel] = []
end
def clear
@channels_data = nil
end
private
def channels_data
@channels_data ||= {}
end
end
end
end
|