aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/channel/periodic_timers_test.rb
blob: 1590a12f09f0bb6900a0067a23903e9fd51e05c5 (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
require 'test_helper'
require 'stubs/test_connection'
require 'stubs/room'

class ActionCable::Channel::PeriodicTimersTest < ActiveSupport::TestCase
  class ChatChannel < ActionCable::Channel::Base
    periodically -> { ping }, every: 5
    periodically :send_updates, every: 1

    private
      def ping
      end
  end

  setup do
    @connection = TestConnection.new
  end

  test "periodic timers definition" do
    timers = ChatChannel.periodic_timers

    assert_equal 2, timers.size

    first_timer = timers[0]
    assert_kind_of Proc, first_timer[0]
    assert_equal 5, first_timer[1][:every]

    second_timer = timers[1]
    assert_equal :send_updates, second_timer[0]
    assert_equal 1, second_timer[1][:every]
  end

  test "timer start and stop" do
    EventMachine::PeriodicTimer.expects(:new).times(2).returns(true)
    channel = ChatChannel.new @connection, "{id: 1}", { id: 1 }

    channel.expects(:stop_periodic_timers).once
    channel.unsubscribe_from_channel
  end
end