blob: 50a95b9d59c7623d7df612ef31b895b62273b2d7 (
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
|
require 'test_helper'
class ServerTest < ActionCableTest
class ChatChannel < ActionCable::Channel::Base
def self.matches?(identifier)
identifier[:channel] == 'chat' && identifier[:user_id].to_i.nonzero?
end
end
class ChatServer < ActionCable::Server
register_channels ChatChannel
end
def app
ChatServer
end
test "channel registration" do
assert_equal ChatServer.registered_channels, Set.new([ ChatChannel ])
end
test "subscribing to a channel with valid params" do
ws = Faye::WebSocket::Client.new(websocket_url)
ws.on(:message) do |message|
puts message.inspect
end
ws.send action: 'subscribe', identifier: { channel: 'chat'}.to_json
end
test "subscribing to a channel with invalid params" do
end
end
|