2017-07-16 13:10:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:15:15 -04:00
|
|
|
require "test_helper"
|
|
|
|
require "stubs/test_server"
|
2015-08-21 07:41:27 -04:00
|
|
|
|
2015-10-15 22:11:49 -04:00
|
|
|
class ActionCable::Connection::StringIdentifierTest < ActionCable::TestCase
|
2015-08-21 07:41:27 -04:00
|
|
|
class Connection < ActionCable::Connection::Base
|
|
|
|
identified_by :current_token
|
|
|
|
|
|
|
|
def connect
|
|
|
|
self.current_token = "random-string"
|
|
|
|
end
|
|
|
|
|
2015-10-15 22:11:49 -04:00
|
|
|
def send_async(method, *args)
|
|
|
|
send method, *args
|
|
|
|
end
|
2015-08-21 07:41:27 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "connection identifier" do
|
2015-10-15 22:11:49 -04:00
|
|
|
run_in_eventmachine do
|
2018-05-13 12:00:54 -04:00
|
|
|
open_connection
|
|
|
|
|
2015-10-15 22:11:49 -04:00
|
|
|
assert_equal "random-string", @connection.connection_identifier
|
|
|
|
end
|
2015-08-21 07:41:27 -04:00
|
|
|
end
|
|
|
|
|
2016-12-23 09:44:10 -05:00
|
|
|
private
|
2015-08-21 07:41:27 -04:00
|
|
|
def open_connection
|
2018-05-13 12:00:54 -04:00
|
|
|
server = TestServer.new
|
2016-08-06 13:15:15 -04:00
|
|
|
env = Rack::MockRequest.env_for "/test", "HTTP_HOST" => "localhost", "HTTP_CONNECTION" => "upgrade", "HTTP_UPGRADE" => "websocket"
|
2018-05-13 12:00:54 -04:00
|
|
|
@connection = Connection.new(server, env)
|
2015-10-15 22:11:49 -04:00
|
|
|
|
2015-08-21 07:41:27 -04:00
|
|
|
@connection.process
|
|
|
|
@connection.send :on_open
|
|
|
|
end
|
|
|
|
end
|