Skip to content

Commit bf2568a

Browse files
committed
Add test
1 parent 7788c6c commit bf2568a

File tree

5 files changed

+189
-0
lines changed

5 files changed

+189
-0
lines changed

.rubocop.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ AllCops:
99
- tmp/**/*
1010
- bin/**/*
1111
- test/dummy/**/*
12+
- bench/**/*
13+
- test/lib/action_cable/subscription_adapter/solid_cable_test.rb
1214
TargetRubyVersion: 3.3
1315

1416
# Department Bundler
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# frozen_string_literal: true
2+
3+
# This migration comes from solid_cable (originally 20240103034713)
4+
class CreateSolidCableMessage < ActiveRecord::Migration[7.1]
5+
def change
6+
create_table :solid_cable_messages, if_not_exists: true do |t|
7+
t.text :channel
8+
t.text :payload
9+
10+
t.timestamps
11+
12+
t.index :created_at
13+
end
14+
end
15+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
# This migration comes from solid_cable (originally 20240607184711)
4+
class IndexChannels < ActiveRecord::Migration[7.1]
5+
def change
6+
add_index :solid_cable_messages, :channel, length: 500
7+
end
8+
end

test/dummy/db/schema.rb

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This file is auto-generated from the current state of the database. Instead
2+
# of editing this file, please use the migrations feature of Active Record to
3+
# incrementally modify your database, and then regenerate this schema definition.
4+
#
5+
# This file is the source Rails uses to define your schema when running `bin/rails
6+
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
7+
# be faster and is potentially less error prone than running all of your
8+
# migrations from scratch. Old migrations may fail to apply correctly if those
9+
# migrations use external dependencies or application code.
10+
#
11+
# It's strongly recommended that you check this file into your version control system.
12+
13+
ActiveRecord::Schema[7.2].define(version: 2024_08_23_212658) do
14+
create_table "solid_cable_messages", force: :cascade do |t|
15+
t.text "channel"
16+
t.text "payload"
17+
t.datetime "created_at", null: false
18+
t.datetime "updated_at", null: false
19+
t.index ["channel"], name: "index_solid_cable_messages_on_channel"
20+
t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"
21+
end
22+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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

Comments
 (0)