Module: ActionCable::Channel::TestCase::Behavior
- Extended by:
- ActiveSupport::Concern
- Includes:
- TestHelper, ActiveSupport::Testing::ConstantLookup
- Included in:
- ActionCable::Channel::TestCase
- Defined in:
- lib/action_cable/channel/test_case.rb
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- CHANNEL_IDENTIFIER =
"test_stub"
Instance Method Summary collapse
- #assert_broadcast_on(stream_or_object, *args) ⇒ Object
-
#assert_broadcasts(stream_or_object, *args) ⇒ Object
Enhance TestHelper assertions to handle non-String broadcastings.
-
#assert_has_stream(stream) ⇒ Object
Asserts that the specified stream has been started.
-
#assert_has_stream_for(object) ⇒ Object
Asserts that the specified stream for a model has started.
-
#assert_no_streams ⇒ Object
Asserts that no streams have been started.
-
#perform(action, data = {}) ⇒ Object
Perform action on a channel.
-
#stub_connection(identifiers = {}) ⇒ Object
Set up test connection with the specified identifiers:.
-
#subscribe(params = {}) ⇒ Object
Subscribe to the channel under test.
-
#transmissions ⇒ Object
Returns messages transmitted into channel.
-
#unsubscribe ⇒ Object
Unsubscribe the subscription under test.
Methods included from TestHelper
#after_teardown, #assert_no_broadcasts, #before_setup, #pubsub_adapter
Instance Method Details
#assert_broadcast_on(stream_or_object, *args) ⇒ Object
258 259 260 |
# File 'lib/action_cable/channel/test_case.rb', line 258 def assert_broadcast_on(stream_or_object, *args) super(broadcasting_for(stream_or_object), *args) end |
#assert_broadcasts(stream_or_object, *args) ⇒ Object
Enhance TestHelper assertions to handle non-String broadcastings
254 255 256 |
# File 'lib/action_cable/channel/test_case.rb', line 254 def assert_broadcasts(stream_or_object, *args) super(broadcasting_for(stream_or_object), *args) end |
#assert_has_stream(stream) ⇒ Object
Asserts that the specified stream has been started.
def test_assert_started_stream
subscribe
assert_has_stream 'messages'
end
280 281 282 |
# File 'lib/action_cable/channel/test_case.rb', line 280 def assert_has_stream(stream) assert subscription.streams.include?(stream), "Stream #{stream} has not been started" end |
#assert_has_stream_for(object) ⇒ Object
Asserts that the specified stream for a model has started.
def test_assert_started_stream_for
subscribe id: 42
assert_has_stream_for User.find(42)
end
291 292 293 |
# File 'lib/action_cable/channel/test_case.rb', line 291 def assert_has_stream_for(object) assert_has_stream(broadcasting_for(object)) end |
#assert_no_streams ⇒ Object
Asserts that no streams have been started.
def test_assert_no_started_stream
subscribe
assert_no_streams
end
269 270 271 |
# File 'lib/action_cable/channel/test_case.rb', line 269 def assert_no_streams assert subscription.streams.empty?, "No streams started was expected, but #{subscription.streams.count} found" end |
#perform(action, data = {}) ⇒ Object
Perform action on a channel.
NOTE: Must be subscribed.
241 242 243 244 |
# File 'lib/action_cable/channel/test_case.rb', line 241 def perform(action, data = {}) check_subscribed! subscription.perform_action(data.stringify_keys.merge("action" => action.to_s)) end |
#stub_connection(identifiers = {}) ⇒ Object
Set up test connection with the specified identifiers:
class ApplicationCable < ActionCable::Connection::Base
identified_by :user, :token
end
stub_connection(user: users[:john], token: 'my-secret-token')
219 220 221 |
# File 'lib/action_cable/channel/test_case.rb', line 219 def stub_connection(identifiers = {}) @connection = ConnectionStub.new(identifiers) end |
#subscribe(params = {}) ⇒ Object
Subscribe to the channel under test. Optionally pass subscription parameters as a Hash.
224 225 226 227 228 229 230 |
# File 'lib/action_cable/channel/test_case.rb', line 224 def subscribe(params = {}) @connection ||= stub_connection @subscription = self.class.channel_class.new(connection, CHANNEL_IDENTIFIER, params.with_indifferent_access) @subscription.singleton_class.include(ChannelStub) @subscription.subscribe_to_channel @subscription end |
#transmissions ⇒ Object
Returns messages transmitted into channel
247 248 249 250 |
# File 'lib/action_cable/channel/test_case.rb', line 247 def transmissions # Return only directly sent message (via #transmit) connection.transmissions.map { |data| data["message"] }.compact end |
#unsubscribe ⇒ Object
Unsubscribe the subscription under test.
233 234 235 236 |
# File 'lib/action_cable/channel/test_case.rb', line 233 def unsubscribe check_subscribed! subscription.unsubscribe_from_channel end |