aboutsummaryrefslogtreecommitdiffstats
path: root/test/connection/subscriptions_test.rb
blob: 24fe8f9300a2f56f230b8cbbc0196a1951fe1082 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
require 'test_helper'

class ActionCable::Connection::SubscriptionsTest < ActiveSupport::TestCase
  class Connection < ActionCable::Connection::Base
    attr_reader :websocket
  end

  class ChatChannel < ActionCable::Channel::Base
    attr_reader :room, :lines

    def subscribed
      @room = Room.new params[:id]
      @lines = []
    end

    def speak(data)
      @lines << data
    end
  end

  setup do
    @server = TestServer.new
    @server.stubs(:channel_classes).returns(ChatChannel.name => ChatChannel)

    env = Rack::MockRequest.env_for "/test", 'HTTP_CONNECTION' => 'upgrade', 'HTTP_UPGRADE' => 'websocket'
    @connection = Connection.new(@server, env)

    @subscriptions = ActionCable::Connection::Subscriptions.new(@connection)
    @chat_identifier = { id: 1, channel: 'ActionCable::Connection::SubscriptionsTest::ChatChannel' }.to_json
  end

  test "subscribe command" do
    channel = subscribe_to_chat_channel

    assert_kind_of ChatChannel, channel
    assert_equal 1, channel.room.id
  end

  test "subscribe command without an identifier" do
    @subscriptions.execute_command 'command' => 'subscribe'
    assert @subscriptions.identifiers.empty?
  end

  test "unsubscribe command" do
    subscribe_to_chat_channel

    channel = subscribe_to_chat_channel
    channel.expects(:unsubscribe_from_channel)

    @subscriptions.execute_command 'command' => 'unsubscribe', 'identifier' => @chat_identifier
    assert @subscriptions.identifiers.empty?
  end

  test "unsubscribe command without an identifier" do
    @subscriptions.execute_command 'command' => 'unsubscribe'
    assert @subscriptions.identifiers.empty?
  end

  test "message command" do
    channel = subscribe_to_chat_channel

    data = { 'content' => 'Hello World!', 'action' => 'speak' }
    @subscriptions.execute_command 'command' => 'message', 'identifier' => @chat_identifier, 'data' => data.to_json

    assert_equal [ data ], channel.lines
  end

  test "unsubscrib from all" do
    channel1 = subscribe_to_chat_channel

    channel2_id = { id: 2, channel: 'ActionCable::Connection::SubscriptionsTest::ChatChannel' }.to_json
    channel2 = subscribe_to_chat_channel(channel2_id)

    channel1.expects(:unsubscribe_from_channel)
    channel2.expects(:unsubscribe_from_channel)

    @subscriptions.unsubscribe_from_all
  end

  private
    def subscribe_to_chat_channel(identifier = @chat_identifier)
      @subscriptions.execute_command 'command' => 'subscribe', 'identifier' => identifier
      assert_equal identifier, @subscriptions.identifiers.last

      @subscriptions.send :find, 'identifier' => identifier
    end
end