Class: ActionCable::Channel::ConnectionStub

Inherits:
Object
  • Object
show all
Defined in:
lib/action_cable/channel/test_case.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(identifiers = {}) ⇒ ConnectionStub

Returns a new instance of ConnectionStub.



50
51
52
53
54
55
56
57
58
59
60
# File 'lib/action_cable/channel/test_case.rb', line 50

def initialize(identifiers = {})
  @transmissions = []

  identifiers.each do |identifier, val|
    define_singleton_method(identifier) { val }
  end

  @subscriptions = ActionCable::Connection::Subscriptions.new(self)
  @identifiers = identifiers.keys
  @logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
end

Instance Attribute Details

#identifiersObject (readonly)

Returns the value of attribute identifiers.



48
49
50
# File 'lib/action_cable/channel/test_case.rb', line 48

def identifiers
  @identifiers
end

#loggerObject (readonly)

Returns the value of attribute logger.



48
49
50
# File 'lib/action_cable/channel/test_case.rb', line 48

def logger
  @logger
end

#subscriptionsObject (readonly)

Returns the value of attribute subscriptions.



48
49
50
# File 'lib/action_cable/channel/test_case.rb', line 48

def subscriptions
  @subscriptions
end

#transmissionsObject (readonly)

Returns the value of attribute transmissions.



48
49
50
# File 'lib/action_cable/channel/test_case.rb', line 48

def transmissions
  @transmissions
end

Instance Method Details

#transmit(cable_message) ⇒ Object



62
63
64
# File 'lib/action_cable/channel/test_case.rb', line 62

def transmit(cable_message)
  transmissions << cable_message.with_indifferent_access
end