|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +require "test_helper" |
| 4 | +require "concurrent" |
| 5 | + |
| 6 | +require "active_support/core_ext/hash/indifferent_access" |
| 7 | +require "pathname" |
| 8 | + |
| 9 | +class ActionCable::SubscriptionAdapter::SolidCableTest < ActionCable::TestCase |
| 10 | + |
| 11 | + WAIT_WHEN_EXPECTING_EVENT = 3 |
| 12 | + WAIT_WHEN_NOT_EXPECTING_EVENT = 0.2 |
| 13 | + |
| 14 | + def setup |
| 15 | + server = ActionCable::Server::Base.new |
| 16 | + server.config.cable = cable_config.with_indifferent_access |
| 17 | + server.config.logger = Logger.new(StringIO.new).tap do |l| |
| 18 | + l.level = Logger::UNKNOWN |
| 19 | + end |
| 20 | + |
| 21 | + adapter_klass = server.config.pubsub_adapter |
| 22 | + |
| 23 | + @rx_adapter = adapter_klass.new(server) |
| 24 | + @tx_adapter = adapter_klass.new(server) |
| 25 | + |
| 26 | + @tx_adapter.shutdown |
| 27 | + @tx_adapter = @rx_adapter |
| 28 | + end |
| 29 | + |
| 30 | + def cable_config |
| 31 | + { adapter: "solid_cable", polling_interval: "0.01.seconds" } |
| 32 | + end |
| 33 | + |
| 34 | + def teardown |
| 35 | + [@rx_adapter, @tx_adapter].uniq.compact.each(&:shutdown) |
| 36 | + end |
| 37 | + |
| 38 | + def subscribe_as_queue(channel, adapter = @rx_adapter) |
| 39 | + queue = Queue.new |
| 40 | + |
| 41 | + callback = ->(data) { queue << data } |
| 42 | + subscribed = Concurrent::Event.new |
| 43 | + adapter.subscribe(channel, callback, proc { subscribed.set }) |
| 44 | + subscribed.wait(WAIT_WHEN_EXPECTING_EVENT) |
| 45 | + sleep WAIT_WHEN_EXPECTING_EVENT |
| 46 | + assert_predicate subscribed, :set? |
| 47 | + |
| 48 | + yield queue |
| 49 | + |
| 50 | + sleep WAIT_WHEN_NOT_EXPECTING_EVENT |
| 51 | + assert_empty queue |
| 52 | + ensure |
| 53 | + adapter.unsubscribe(channel, callback) if subscribed.set? |
| 54 | + end |
| 55 | + |
| 56 | + def test_subscribe_and_unsubscribe |
| 57 | + subscribe_as_queue("channel") do |queue| |
| 58 | + end |
| 59 | + end |
| 60 | + |
| 61 | + def test_basic_broadcast |
| 62 | + subscribe_as_queue("channel") do |queue| |
| 63 | + @tx_adapter.broadcast("channel", "hello world") |
| 64 | + |
| 65 | + assert_equal "hello world", queue.pop |
| 66 | + end |
| 67 | + end |
| 68 | + |
| 69 | + def test_broadcast_after_unsubscribe |
| 70 | + keep_queue = nil |
| 71 | + subscribe_as_queue("channel") do |queue| |
| 72 | + keep_queue = queue |
| 73 | + |
| 74 | + @tx_adapter.broadcast("channel", "hello world") |
| 75 | + |
| 76 | + assert_equal "hello world", queue.pop |
| 77 | + end |
| 78 | + |
| 79 | + @tx_adapter.broadcast("channel", "hello void") |
| 80 | + |
| 81 | + sleep WAIT_WHEN_NOT_EXPECTING_EVENT |
| 82 | + assert_empty keep_queue |
| 83 | + end |
| 84 | + |
| 85 | + def test_multiple_broadcast |
| 86 | + subscribe_as_queue("channel") do |queue| |
| 87 | + @tx_adapter.broadcast("channel", "bananas") |
| 88 | + @tx_adapter.broadcast("channel", "apples") |
| 89 | + |
| 90 | + received = [] |
| 91 | + 2.times { received << queue.pop } |
| 92 | + assert_equal %w(apples bananas), received.sort |
| 93 | + end |
| 94 | + end |
| 95 | + |
| 96 | + def test_identical_subscriptions |
| 97 | + subscribe_as_queue("channel") do |queue| |
| 98 | + subscribe_as_queue("channel") do |queue_2| |
| 99 | + @tx_adapter.broadcast("channel", "hello") |
| 100 | + |
| 101 | + assert_equal "hello", queue_2.pop |
| 102 | + end |
| 103 | + |
| 104 | + assert_equal "hello", queue.pop |
| 105 | + end |
| 106 | + end |
| 107 | + |
| 108 | + def test_simultaneous_subscriptions |
| 109 | + subscribe_as_queue("channel") do |queue| |
| 110 | + subscribe_as_queue("other channel") do |queue_2| |
| 111 | + @tx_adapter.broadcast("channel", "apples") |
| 112 | + @tx_adapter.broadcast("other channel", "oranges") |
| 113 | + |
| 114 | + assert_equal "apples", queue.pop |
| 115 | + assert_equal "oranges", queue_2.pop |
| 116 | + end |
| 117 | + end |
| 118 | + end |
| 119 | + |
| 120 | + def test_channel_filtered_broadcast |
| 121 | + subscribe_as_queue("channel") do |queue| |
| 122 | + @tx_adapter.broadcast("other channel", "one") |
| 123 | + @tx_adapter.broadcast("channel", "two") |
| 124 | + |
| 125 | + assert_equal "two", queue.pop |
| 126 | + end |
| 127 | + end |
| 128 | + |
| 129 | + def test_long_identifiers |
| 130 | + channel_1 = "#{'a' * 100}1" |
| 131 | + channel_2 = "#{'a' * 100}2" |
| 132 | + subscribe_as_queue(channel_1) do |queue| |
| 133 | + subscribe_as_queue(channel_2) do |queue_2| |
| 134 | + @tx_adapter.broadcast(channel_1, "apples") |
| 135 | + @tx_adapter.broadcast(channel_2, "oranges") |
| 136 | + |
| 137 | + assert_equal "apples", queue.pop |
| 138 | + assert_equal "oranges", queue_2.pop |
| 139 | + end |
| 140 | + end |
| 141 | + end |
| 142 | +end |
0 commit comments