lib/submodules/ably-ruby/SPEC.md in ably-rest-0.9.3 vs lib/submodules/ably-ruby/SPEC.md in ably-rest-1.0.0
- old
+ new
@@ -1,109 +1,150 @@
-# Ably Realtime & REST Client Library 0.8.9 Specification
+# Ably Realtime & REST Client Library 0.9.0-pre.1 Specification
### Ably::Realtime::Auth
_(see [spec/acceptance/realtime/auth_spec.rb](./spec/acceptance/realtime/auth_spec.rb))_
* using JSON protocol
* with basic auth
* #authentication_security_requirements_met?
- * [returns true](./spec/acceptance/realtime/auth_spec.rb#L20)
+ * [returns true](./spec/acceptance/realtime/auth_spec.rb#L28)
* #key
- * [contains the API key](./spec/acceptance/realtime/auth_spec.rb#L27)
+ * [contains the API key](./spec/acceptance/realtime/auth_spec.rb#L35)
* #key_name
- * [contains the API key name](./spec/acceptance/realtime/auth_spec.rb#L34)
+ * [contains the API key name](./spec/acceptance/realtime/auth_spec.rb#L42)
* #key_secret
- * [contains the API key secret](./spec/acceptance/realtime/auth_spec.rb#L41)
+ * [contains the API key secret](./spec/acceptance/realtime/auth_spec.rb#L49)
* #using_basic_auth?
- * [is true when using Basic Auth](./spec/acceptance/realtime/auth_spec.rb#L48)
+ * [is true when using Basic Auth](./spec/acceptance/realtime/auth_spec.rb#L56)
* #using_token_auth?
- * [is false when using Basic Auth](./spec/acceptance/realtime/auth_spec.rb#L55)
+ * [is false when using Basic Auth](./spec/acceptance/realtime/auth_spec.rb#L63)
* with token auth
* #client_id
- * [contains the ClientOptions client ID](./spec/acceptance/realtime/auth_spec.rb#L67)
+ * [contains the ClientOptions client ID](./spec/acceptance/realtime/auth_spec.rb#L75)
* #current_token_details
- * [contains the current token after auth](./spec/acceptance/realtime/auth_spec.rb#L74)
+ * [contains the current token after auth](./spec/acceptance/realtime/auth_spec.rb#L82)
* #token_renewable?
- * [is true when an API key exists](./spec/acceptance/realtime/auth_spec.rb#L84)
+ * [is true when an API key exists](./spec/acceptance/realtime/auth_spec.rb#L92)
* #options (auth_options)
- * [contains the configured auth options](./spec/acceptance/realtime/auth_spec.rb#L95)
+ * [contains the configured auth options](./spec/acceptance/realtime/auth_spec.rb#L104)
* #token_params
- * [contains the configured auth options](./spec/acceptance/realtime/auth_spec.rb#L106)
+ * [contains the configured auth options](./spec/acceptance/realtime/auth_spec.rb#L115)
* #using_basic_auth?
- * [is false when using Token Auth](./spec/acceptance/realtime/auth_spec.rb#L115)
+ * [is false when using Token Auth](./spec/acceptance/realtime/auth_spec.rb#L124)
* #using_token_auth?
- * [is true when using Token Auth](./spec/acceptance/realtime/auth_spec.rb#L124)
- *
+ * [is true when using Token Auth](./spec/acceptance/realtime/auth_spec.rb#L133)
+ * methods
* #create_token_request
- * [returns a token request asynchronously](./spec/acceptance/realtime/auth_spec.rb#L138)
+ * [returns a token request asynchronously](./spec/acceptance/realtime/auth_spec.rb#L147)
* #create_token_request_async
- * [returns a token request synchronously](./spec/acceptance/realtime/auth_spec.rb#L148)
+ * [returns a token request synchronously](./spec/acceptance/realtime/auth_spec.rb#L157)
* #request_token
- * [returns a token asynchronously](./spec/acceptance/realtime/auth_spec.rb#L158)
+ * [returns a token asynchronously](./spec/acceptance/realtime/auth_spec.rb#L167)
* #request_token_async
- * [returns a token synchronously](./spec/acceptance/realtime/auth_spec.rb#L169)
- * #authorise
- * [returns a token asynchronously](./spec/acceptance/realtime/auth_spec.rb#L180)
+ * [returns a token synchronously](./spec/acceptance/realtime/auth_spec.rb#L178)
+ * #authorize
+ * with token auth
+ * [returns a token asynchronously](./spec/acceptance/realtime/auth_spec.rb#L192)
+ * with auth_callback blocking
+ * with a slow auth callback response
+ * [asynchronously authenticates](./spec/acceptance/realtime/auth_spec.rb#L215)
* when implicitly called, with an explicit ClientOptions client_id
* and an incompatible client_id in a TokenDetails object passed to the auth callback
- * [rejects a TokenDetails object with an incompatible client_id and raises an exception](./spec/acceptance/realtime/auth_spec.rb#L197)
- * and an incompatible client_id in a TokenRequest object passed to the auth callback and raises an exception
- * [rejects a TokenRequests object with an incompatible client_id and raises an exception](./spec/acceptance/realtime/auth_spec.rb#L212)
+ * [rejects a TokenDetails object with an incompatible client_id and fails with an exception](./spec/acceptance/realtime/auth_spec.rb#L239)
+ * and an incompatible client_id in a TokenRequest object passed to the auth callback and fails with an exception
+ * [rejects a TokenRequests object with an incompatible client_id and fails with an exception](./spec/acceptance/realtime/auth_spec.rb#L255)
* when explicitly called, with an explicit ClientOptions client_id
* and an incompatible client_id in a TokenDetails object passed to the auth callback
- * [rejects a TokenDetails object with an incompatible client_id and raises an exception](./spec/acceptance/realtime/auth_spec.rb#L243)
- * #authorise_async
- * [returns a token synchronously](./spec/acceptance/realtime/auth_spec.rb#L260)
+ * [rejects a TokenDetails object with an incompatible client_id and fails with an exception](./spec/acceptance/realtime/auth_spec.rb#L287)
+ * when already authenticated with a valid token
+ * [ensures message delivery continuity whilst upgrading (#RTC8a1)](./spec/acceptance/realtime/auth_spec.rb#L700)
+ * when INITIALIZED
+ * [obtains a token and connects to Ably (#RTC8c, #RTC8b1)](./spec/acceptance/realtime/auth_spec.rb#L328)
+ * when CONNECTING
+ * [aborts the current connection process, obtains a token, and connects to Ably again (#RTC8b)](./spec/acceptance/realtime/auth_spec.rb#L350)
+ * when FAILED
+ * [obtains a token and connects to Ably (#RTC8c, #RTC8b1)](./spec/acceptance/realtime/auth_spec.rb#L369)
+ * when CLOSED
+ * [obtains a token and connects to Ably (#RTC8c, #RTC8b1, #RTC8a3)](./spec/acceptance/realtime/auth_spec.rb#L386)
+ * when in the CONNECTED state
+ * with a valid token in the AUTH ProtocolMessage sent
+ * PENDING: *[obtains a new token (that upgrades from anonymous to identified) and upgrades the connection after receiving an updated CONNECTED ProtocolMessage (#RTC8a, #RTC8a3)](./spec/acceptance/realtime/auth_spec.rb#L409)*
+ * [obtains a new token (as anonymous user before & after) and upgrades the connection after receiving an updated CONNECTED ProtocolMessage (#RTC8a, #RTC8a3)](./spec/acceptance/realtime/auth_spec.rb#L445)
+ * when DISCONNECTED
+ * PENDING: *[obtains a token, upgrades from anonymous to identified, and connects to Ably immediately (#RTC8c, #RTC8b1)](./spec/acceptance/realtime/auth_spec.rb#L481)*
+ * [obtains a similar anonymous token and connects to Ably immediately (#RTC8c, #RTC8b1)](./spec/acceptance/realtime/auth_spec.rb#L517)
+ * when SUSPENDED
+ * [obtains a token and connects to Ably immediately (#RTC8c, #RTC8b1)](./spec/acceptance/realtime/auth_spec.rb#L561)
+ * when client is identified
+ * [transitions the connection state to FAILED if the client_id changes (#RSA15c, #RTC8a2)](./spec/acceptance/realtime/auth_spec.rb#L596)
+ * when auth fails
+ * [transitions the connection state to the FAILED state (#RSA15c, #RTC8a2, #RTC8a3)](./spec/acceptance/realtime/auth_spec.rb#L611)
+ * when the authCallback fails
+ * [calls the error callback of authorize and leaves the connection intact (#RSA4c3)](./spec/acceptance/realtime/auth_spec.rb#L639)
+ * when upgrading capabilities
+ * [is allowed (#RTC8a1)](./spec/acceptance/realtime/auth_spec.rb#L658)
+ * when downgrading capabilities (#RTC8a1)
+ * [is allowed and channels are detached](./spec/acceptance/realtime/auth_spec.rb#L683)
+ * #authorize_async
+ * [returns a token synchronously](./spec/acceptance/realtime/auth_spec.rb#L734)
+ * server initiated AUTH ProtocolMessage
+ * when received
+ * [should immediately start a new authentication process (#RTN22)](./spec/acceptance/realtime/auth_spec.rb#L758)
+ * when not received
+ * [should expect the connection to be disconnected by the server but should resume automatically (#RTN22a)](./spec/acceptance/realtime/auth_spec.rb#L781)
* #auth_params
- * [returns the auth params asynchronously](./spec/acceptance/realtime/auth_spec.rb#L272)
+ * [returns the auth params asynchronously](./spec/acceptance/realtime/auth_spec.rb#L807)
* #auth_params_sync
- * [returns the auth params synchronously](./spec/acceptance/realtime/auth_spec.rb#L281)
+ * [returns the auth params synchronously](./spec/acceptance/realtime/auth_spec.rb#L816)
* #auth_header
- * [returns an auth header asynchronously](./spec/acceptance/realtime/auth_spec.rb#L288)
+ * [returns an auth header asynchronously](./spec/acceptance/realtime/auth_spec.rb#L823)
* #auth_header_sync
- * [returns an auth header synchronously](./spec/acceptance/realtime/auth_spec.rb#L297)
+ * [returns an auth header synchronously](./spec/acceptance/realtime/auth_spec.rb#L832)
* #client_id_validated?
* when using basic auth
* before connected
- * [is false as basic auth users do not have an identity](./spec/acceptance/realtime/auth_spec.rb#L310)
+ * [is false as basic auth users do not have an identity](./spec/acceptance/realtime/auth_spec.rb#L845)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L317)
- * [contains a validated wildcard client_id](./spec/acceptance/realtime/auth_spec.rb#L324)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L852)
+ * [contains a validated wildcard client_id](./spec/acceptance/realtime/auth_spec.rb#L859)
* when using a token string
* with a valid client_id
* before connected
- * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L338)
- * [#client_id is nil](./spec/acceptance/realtime/auth_spec.rb#L343)
+ * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L873)
+ * [#client_id is nil](./spec/acceptance/realtime/auth_spec.rb#L878)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L350)
- * [#client_id is populated](./spec/acceptance/realtime/auth_spec.rb#L357)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L885)
+ * [#client_id is populated](./spec/acceptance/realtime/auth_spec.rb#L892)
* with no client_id (anonymous)
* before connected
- * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L370)
+ * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L905)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L377)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L912)
* with a wildcard client_id (anonymous)
* before connected
- * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L390)
+ * [is false as identification is not possible from an opaque token string](./spec/acceptance/realtime/auth_spec.rb#L925)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L397)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L932)
* when using a token
* with a client_id
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L411)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L946)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L417)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L952)
* with no client_id (anonymous)
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L429)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L964)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L435)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L970)
* with a wildcard client_id (anonymous)
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L447)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L982)
* once connected
- * [is true](./spec/acceptance/realtime/auth_spec.rb#L453)
+ * [is true](./spec/acceptance/realtime/auth_spec.rb#L988)
* when using a token request with a client_id
- * [is not true as identification is not confirmed until authenticated](./spec/acceptance/realtime/auth_spec.rb#L466)
+ * [is not true as identification is not confirmed until authenticated](./spec/acceptance/realtime/auth_spec.rb#L1001)
* once connected
- * [is true as identification is completed following CONNECTED ProtocolMessage](./spec/acceptance/realtime/auth_spec.rb#L472)
+ * [is true as identification is completed following CONNECTED ProtocolMessage](./spec/acceptance/realtime/auth_spec.rb#L1007)
+ * deprecated #authorise
+ * [logs a deprecation warning (#RSA10l)](./spec/acceptance/realtime/auth_spec.rb#L1045)
+ * [returns a valid token (#RSA10l)](./spec/acceptance/realtime/auth_spec.rb#L1051)
### Ably::Realtime::Channel#history
_(see [spec/acceptance/realtime/channel_history_spec.rb](./spec/acceptance/realtime/channel_history_spec.rb))_
* using JSON protocol
* [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/channel_history_spec.rb#L21)
@@ -120,198 +161,290 @@
* [retrieves limited history backwards with pagination](./spec/acceptance/realtime/channel_history_spec.rb#L119)
* and REST history
* [return the same results with unique matching message IDs](./spec/acceptance/realtime/channel_history_spec.rb#L135)
* with option until_attach: true
* [retrieves all messages before channel was attached](./spec/acceptance/realtime/channel_history_spec.rb#L160)
- * [raises an exception unless state is attached](./spec/acceptance/realtime/channel_history_spec.rb#L209)
+ * [fails the deferrable unless the state is attached](./spec/acceptance/realtime/channel_history_spec.rb#L209)
* and two pages of messages
* [retrieves two pages of messages before channel was attached](./spec/acceptance/realtime/channel_history_spec.rb#L175)
### Ably::Realtime::Channel
_(see [spec/acceptance/realtime/channel_spec.rb](./spec/acceptance/realtime/channel_spec.rb))_
* using JSON protocol
* initialization
* with :auto_connect option set to false on connection
- * [remains initialized when accessing a channel](./spec/acceptance/realtime/channel_spec.rb#L21)
- * [opens a connection implicitly on #attach](./spec/acceptance/realtime/channel_spec.rb#L29)
+ * [remains initialized when accessing a channel](./spec/acceptance/realtime/channel_spec.rb#L26)
+ * [opens a connection implicitly on #attach](./spec/acceptance/realtime/channel_spec.rb#L34)
* #attach
- * [emits attaching then attached events](./spec/acceptance/realtime/channel_spec.rb#L39)
- * [ignores subsequent #attach calls but calls the success callback if provided](./spec/acceptance/realtime/channel_spec.rb#L49)
- * [attaches to a channel](./spec/acceptance/realtime/channel_spec.rb#L62)
- * [attaches to a channel and calls the provided block](./spec/acceptance/realtime/channel_spec.rb#L70)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/channel_spec.rb#L77)
- * [calls the SafeDeferrable callback on success](./spec/acceptance/realtime/channel_spec.rb#L82)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/channel_spec.rb#L139)
+ * [calls the SafeDeferrable callback on success (#RTL4d)](./spec/acceptance/realtime/channel_spec.rb#L144)
+ * when initialized
+ * [emits attaching then attached events](./spec/acceptance/realtime/channel_spec.rb#L45)
+ * [ignores subsequent #attach calls but calls the success callback if provided](./spec/acceptance/realtime/channel_spec.rb#L55)
+ * [attaches to a channel](./spec/acceptance/realtime/channel_spec.rb#L68)
+ * [attaches to a channel and calls the provided block (#RTL4d)](./spec/acceptance/realtime/channel_spec.rb#L76)
+ * [sends an ATTACH and waits for an ATTACHED (#RTL4c)](./spec/acceptance/realtime/channel_spec.rb#L83)
+ * [implicitly attaches the channel (#RTL7c)](./spec/acceptance/realtime/channel_spec.rb#L107)
+ * when the implicit channel attach fails
+ * [registers the listener anyway (#RTL7c)](./spec/acceptance/realtime/channel_spec.rb#L124)
+ * when an ATTACHED acknowledge is not received on the current connection
+ * [sends another ATTACH each time the connection becomes connected](./spec/acceptance/realtime/channel_spec.rb#L155)
+ * when state is :attached
+ * [does nothing (#RTL4a)](./spec/acceptance/realtime/channel_spec.rb#L193)
* when state is :failed
- * [reattaches](./spec/acceptance/realtime/channel_spec.rb#L93)
+ * [reattaches and sets the errorReason to nil (#RTL4g)](./spec/acceptance/realtime/channel_spec.rb#L213)
* when state is :detaching
- * [moves straight to attaching and skips detached](./spec/acceptance/realtime/channel_spec.rb#L106)
+ * [does the attach operation after the completion of the pending request (#RTL4h)](./spec/acceptance/realtime/channel_spec.rb#L228)
* with many connections and many channels on each simultaneously
- * [attaches all channels](./spec/acceptance/realtime/channel_spec.rb#L132)
+ * [attaches all channels](./spec/acceptance/realtime/channel_spec.rb#L256)
* failure as a result of insufficient key permissions
- * [emits failed event](./spec/acceptance/realtime/channel_spec.rb#L155)
- * [calls the errback of the returned Deferrable](./spec/acceptance/realtime/channel_spec.rb#L164)
- * [emits an error event](./spec/acceptance/realtime/channel_spec.rb#L172)
- * [updates the error_reason](./spec/acceptance/realtime/channel_spec.rb#L181)
+ * [emits failed event (#RTL4e)](./spec/acceptance/realtime/channel_spec.rb#L288)
+ * [calls the errback of the returned Deferrable (#RTL4d)](./spec/acceptance/realtime/channel_spec.rb#L297)
+ * [updates the error_reason](./spec/acceptance/realtime/channel_spec.rb#L305)
* and subsequent authorisation with suitable permissions
- * [attaches to the channel successfully and resets the channel error_reason](./spec/acceptance/realtime/channel_spec.rb#L190)
+ * [attaches to the channel successfully and resets the channel error_reason](./spec/acceptance/realtime/channel_spec.rb#L314)
+ * with connection state
+ * [is initialized (#RTL4i)](./spec/acceptance/realtime/channel_spec.rb#L333)
+ * [is connecting (#RTL4i)](./spec/acceptance/realtime/channel_spec.rb#L340)
+ * [is disconnected (#RTL4i)](./spec/acceptance/realtime/channel_spec.rb#L348)
* #detach
- * [detaches from a channel](./spec/acceptance/realtime/channel_spec.rb#L212)
- * [detaches from a channel and calls the provided block](./spec/acceptance/realtime/channel_spec.rb#L222)
- * [emits :detaching then :detached events](./spec/acceptance/realtime/channel_spec.rb#L232)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/channel_spec.rb#L244)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/channel_spec.rb#L251)
+ * when state is :attached
+ * [it detaches from a channel (#RTL5d)](./spec/acceptance/realtime/channel_spec.rb#L363)
+ * [detaches from a channel and calls the provided block (#RTL5d, #RTL5e)](./spec/acceptance/realtime/channel_spec.rb#L373)
+ * [emits :detaching then :detached events](./spec/acceptance/realtime/channel_spec.rb#L383)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/channel_spec.rb#L395)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/channel_spec.rb#L402)
+ * and DETACHED message is not received within realtime request timeout
+ * [fails the deferrable and returns to the previous state (#RTL5f, #RTL5e)](./spec/acceptance/realtime/channel_spec.rb#L416)
* when state is :failed
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L264)
+ * [fails the deferrable (#RTL5b)](./spec/acceptance/realtime/channel_spec.rb#L436)
* when state is :attaching
- * [moves straight to :detaching state and skips :attached](./spec/acceptance/realtime/channel_spec.rb#L275)
+ * [waits for the attach to complete and then moves to detached](./spec/acceptance/realtime/channel_spec.rb#L449)
* when state is :detaching
- * [ignores subsequent #detach calls but calls the callback if provided](./spec/acceptance/realtime/channel_spec.rb#L293)
+ * [ignores subsequent #detach calls but calls the callback if provided (#RTL5i)](./spec/acceptance/realtime/channel_spec.rb#L466)
+ * when state is :suspended
+ * [moves the channel state immediately to DETACHED state (#RTL5j)](./spec/acceptance/realtime/channel_spec.rb#L483)
* when state is :initialized
- * [does nothing as there is no channel to detach](./spec/acceptance/realtime/channel_spec.rb#L310)
- * [returns a valid deferrable](./spec/acceptance/realtime/channel_spec.rb#L318)
- * channel recovery in :attaching state
- * the transport is disconnected before the ATTACHED protocol message is received
- * PENDING: *[attach times out and fails if not ATTACHED protocol message received](./spec/acceptance/realtime/channel_spec.rb#L330)*
- * PENDING: *[channel is ATTACHED if ATTACHED protocol message is later received](./spec/acceptance/realtime/channel_spec.rb#L331)*
- * PENDING: *[sends an ATTACH protocol message in response to a channel message being received on the attaching channel](./spec/acceptance/realtime/channel_spec.rb#L332)*
+ * [does nothing as there is no channel to detach (#RTL5a)](./spec/acceptance/realtime/channel_spec.rb#L503)
+ * [returns a valid deferrable](./spec/acceptance/realtime/channel_spec.rb#L511)
+ * when state is :detached
+ * [does nothing as the channel is detached (#RTL5a)](./spec/acceptance/realtime/channel_spec.rb#L521)
+ * when connection state is
+ * closing
+ * [fails the deferrable (#RTL5b)](./spec/acceptance/realtime/channel_spec.rb#L538)
+ * failed and channel is failed
+ * [fails the deferrable (#RTL5b)](./spec/acceptance/realtime/channel_spec.rb#L558)
+ * failed and channel is detached
+ * [fails the deferrable (#RTL5b)](./spec/acceptance/realtime/channel_spec.rb#L580)
+ * initialized
+ * [does the detach operation once the connection state is connected (#RTL5h)](./spec/acceptance/realtime/channel_spec.rb#L600)
+ * connecting
+ * [does the detach operation once the connection state is connected (#RTL5h)](./spec/acceptance/realtime/channel_spec.rb#L615)
+ * disconnected
+ * [does the detach operation once the connection state is connected (#RTL5h)](./spec/acceptance/realtime/channel_spec.rb#L634)
+ * automatic channel recovery
+ * when an ATTACH request times out
+ * [moves to the SUSPENDED state (#RTL4f)](./spec/acceptance/realtime/channel_spec.rb#L661)
+ * if a subsequent ATTACHED is received on an ATTACHED channel
+ * [ignores the additional ATTACHED if resumed is true (#RTL12)](./spec/acceptance/realtime/channel_spec.rb#L675)
+ * [emits an UPDATE only when resumed is true (#RTL12)](./spec/acceptance/realtime/channel_spec.rb#L689)
+ * [emits an UPDATE when resumed is true and includes the reason error from the ProtocolMessage (#RTL12)](./spec/acceptance/realtime/channel_spec.rb#L705)
* #publish
* when attached
- * [publishes messages](./spec/acceptance/realtime/channel_spec.rb#L341)
+ * [publishes messages](./spec/acceptance/realtime/channel_spec.rb#L730)
* when not yet attached
- * [publishes queued messages once attached](./spec/acceptance/realtime/channel_spec.rb#L353)
- * [publishes queued messages within a single protocol message](./spec/acceptance/realtime/channel_spec.rb#L361)
+ * [publishes queued messages once attached](./spec/acceptance/realtime/channel_spec.rb#L742)
+ * [publishes queued messages within a single protocol message](./spec/acceptance/realtime/channel_spec.rb#L750)
* with :queue_messages client option set to false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L384)
+ * [fails the deferrable](./spec/acceptance/realtime/channel_spec.rb#L773)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L392)
+ * [fails the deferrable](./spec/acceptance/realtime/channel_spec.rb#L783)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L404)
+ * [fails the deferrable](./spec/acceptance/realtime/channel_spec.rb#L797)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/channel_spec.rb#L417)
+ * [publishes the message](./spec/acceptance/realtime/channel_spec.rb#L812)
* with name and data arguments
- * [publishes the message and return true indicating success](./spec/acceptance/realtime/channel_spec.rb#L428)
+ * [publishes the message and return true indicating success](./spec/acceptance/realtime/channel_spec.rb#L823)
* and additional attributes
- * [publishes the message with the attributes and return true indicating success](./spec/acceptance/realtime/channel_spec.rb#L441)
+ * [publishes the message with the attributes and return true indicating success](./spec/acceptance/realtime/channel_spec.rb#L836)
+ * and additional invalid attributes
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L849)
* with an array of Hash objects with :name and :data attributes
- * [publishes an array of messages in one ProtocolMessage](./spec/acceptance/realtime/channel_spec.rb#L459)
+ * [publishes an array of messages in one ProtocolMessage](./spec/acceptance/realtime/channel_spec.rb#L863)
* with an array of Message objects
- * [publishes an array of messages in one ProtocolMessage](./spec/acceptance/realtime/channel_spec.rb#L487)
+ * [publishes an array of messages in one ProtocolMessage](./spec/acceptance/realtime/channel_spec.rb#L891)
* nil attributes
* when name is nil
- * [publishes the message without a name attribute in the payload](./spec/acceptance/realtime/channel_spec.rb#L511)
+ * [publishes the message without a name attribute in the payload](./spec/acceptance/realtime/channel_spec.rb#L915)
* when data is nil
- * [publishes the message without a data attribute in the payload](./spec/acceptance/realtime/channel_spec.rb#L534)
+ * [publishes the message without a data attribute in the payload](./spec/acceptance/realtime/channel_spec.rb#L938)
* with neither name or data attributes
- * [publishes the message without any attributes in the payload](./spec/acceptance/realtime/channel_spec.rb#L557)
+ * [publishes the message without any attributes in the payload](./spec/acceptance/realtime/channel_spec.rb#L961)
* with two invalid message out of 12
* before client_id is known (validated)
- * [calls the errback once](./spec/acceptance/realtime/channel_spec.rb#L581)
+ * [calls the errback once](./spec/acceptance/realtime/channel_spec.rb#L985)
* when client_id is known (validated)
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L601)
+ * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1005)
* only invalid messages
* before client_id is known (validated)
- * [calls the errback once](./spec/acceptance/realtime/channel_spec.rb#L620)
+ * [calls the errback once](./spec/acceptance/realtime/channel_spec.rb#L1024)
* when client_id is known (validated)
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L639)
+ * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1043)
* with many many messages and many connections simultaneously
- * [publishes all messages, all success callbacks are called, and a history request confirms all messages were published](./spec/acceptance/realtime/channel_spec.rb#L653)
+ * [publishes all messages, all success callbacks are called, and a history request confirms all messages were published](./spec/acceptance/realtime/channel_spec.rb#L1057)
* identified clients
* when authenticated with a wildcard client_id
* with a valid client_id in the message
- * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L681)
+ * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L1085)
* with a wildcard client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L693)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1097)
+ * with a non-String client_id in the message
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1104)
* with an empty client_id in the message
- * [succeeds and publishes without a client_id](./spec/acceptance/realtime/channel_spec.rb#L700)
+ * [succeeds and publishes without a client_id](./spec/acceptance/realtime/channel_spec.rb#L1111)
* when authenticated with a Token string with an implicit client_id
* before the client is CONNECTED and the client's identity has been obtained
* with a valid client_id in the message
- * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L720)
+ * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L1131)
* with an invalid client_id in the message
- * [succeeds in the client library but then fails when delivered to Ably](./spec/acceptance/realtime/channel_spec.rb#L733)
+ * [succeeds in the client library but then fails when delivered to Ably](./spec/acceptance/realtime/channel_spec.rb#L1144)
* with an empty client_id in the message
- * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L744)
+ * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L1155)
* after the client is CONNECTED and the client's identity is known
* with a valid client_id in the message
- * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L758)
+ * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L1169)
* with an invalid client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L772)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1183)
* with an empty client_id in the message
- * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L781)
+ * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L1192)
* when authenticated with a valid client_id
* with a valid client_id
- * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L803)
+ * [succeeds](./spec/acceptance/realtime/channel_spec.rb#L1214)
* with a wildcard client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L815)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1226)
* with an invalid client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L822)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1233)
* with an empty client_id in the message
- * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L829)
+ * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L1240)
* when anonymous and no client_id
* with a client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L848)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1259)
* with a wildcard client_id in the message
- * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L855)
+ * [throws an exception](./spec/acceptance/realtime/channel_spec.rb#L1266)
* with an empty client_id in the message
- * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L862)
+ * [succeeds and publishes with an implicit client_id](./spec/acceptance/realtime/channel_spec.rb#L1273)
* #subscribe
* with an event argument
- * [subscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L878)
+ * [subscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L1289)
* before attach
- * [receives messages as soon as attached](./spec/acceptance/realtime/channel_spec.rb#L888)
+ * [receives messages as soon as attached](./spec/acceptance/realtime/channel_spec.rb#L1299)
* with no event argument
- * [subscribes for all events](./spec/acceptance/realtime/channel_spec.rb#L902)
+ * [subscribes for all events](./spec/acceptance/realtime/channel_spec.rb#L1313)
+ * with a callback that raises an exception
+ * [logs the error and continues](./spec/acceptance/realtime/channel_spec.rb#L1325)
* many times with different event names
- * [filters events accordingly to each callback](./spec/acceptance/realtime/channel_spec.rb#L912)
+ * [filters events accordingly to each callback](./spec/acceptance/realtime/channel_spec.rb#L1344)
* #unsubscribe
* with an event argument
- * [unsubscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L935)
+ * [unsubscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L1367)
* with no event argument
- * [unsubscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L948)
+ * [unsubscribes for a single event](./spec/acceptance/realtime/channel_spec.rb#L1380)
* when connection state changes to
* :failed
+ * an :attaching channel
+ * [transitions state to :failed (#RTL3a)](./spec/acceptance/realtime/channel_spec.rb#L1403)
* an :attached channel
- * [transitions state to :failed](./spec/acceptance/realtime/channel_spec.rb#L971)
- * [emits an error event on the channel](./spec/acceptance/realtime/channel_spec.rb#L983)
- * [updates the channel error_reason](./spec/acceptance/realtime/channel_spec.rb#L994)
+ * [transitions state to :failed (#RTL3a)](./spec/acceptance/realtime/channel_spec.rb#L1420)
+ * [updates the channel error_reason (#RTL3a)](./spec/acceptance/realtime/channel_spec.rb#L1432)
* a :detached channel
- * [remains in the :detached state](./spec/acceptance/realtime/channel_spec.rb#L1008)
+ * [remains in the :detached state (#RTL3a)](./spec/acceptance/realtime/channel_spec.rb#L1446)
* a :failed channel
- * [remains in the :failed state and ignores the failure error](./spec/acceptance/realtime/channel_spec.rb#L1028)
+ * [remains in the :failed state and ignores the failure error (#RTL3a)](./spec/acceptance/realtime/channel_spec.rb#L1465)
* a channel ATTACH request
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1049)
+ * [fails the deferrable (#RTL4b)](./spec/acceptance/realtime/channel_spec.rb#L1485)
* :closed
* an :attached channel
- * [transitions state to :detached](./spec/acceptance/realtime/channel_spec.rb#L1063)
+ * [transitions state to :detached (#RTL3b)](./spec/acceptance/realtime/channel_spec.rb#L1501)
+ * an :attaching channel (#RTL3b)
+ * [transitions state to :detached](./spec/acceptance/realtime/channel_spec.rb#L1512)
* a :detached channel
- * [remains in the :detached state](./spec/acceptance/realtime/channel_spec.rb#L1074)
+ * [remains in the :detached state (#RTL3b)](./spec/acceptance/realtime/channel_spec.rb#L1527)
* a :failed channel
- * [remains in the :failed state and retains the error_reason](./spec/acceptance/realtime/channel_spec.rb#L1095)
+ * [remains in the :failed state and retains the error_reason (#RTL3b)](./spec/acceptance/realtime/channel_spec.rb#L1547)
* a channel ATTACH request when connection CLOSED
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1116)
+ * [fails the deferrable (#RTL4b)](./spec/acceptance/realtime/channel_spec.rb#L1567)
* a channel ATTACH request when connection CLOSING
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1128)
+ * [fails the deferrable (#RTL4b)](./spec/acceptance/realtime/channel_spec.rb#L1581)
* :suspended
+ * an :attaching channel
+ * [transitions state to :suspended (#RTL3c)](./spec/acceptance/realtime/channel_spec.rb#L1597)
* an :attached channel
- * [transitions state to :detached](./spec/acceptance/realtime/channel_spec.rb#L1144)
+ * [transitions state to :suspended (#RTL3c)](./spec/acceptance/realtime/channel_spec.rb#L1611)
+ * [transitions state automatically to :attaching once the connection is re-established (#RTN15c3)](./spec/acceptance/realtime/channel_spec.rb#L1620)
* a :detached channel
- * [remains in the :detached state](./spec/acceptance/realtime/channel_spec.rb#L1155)
+ * [remains in the :detached state (#RTL3c)](./spec/acceptance/realtime/channel_spec.rb#L1634)
* a :failed channel
- * [remains in the :failed state and retains the error_reason](./spec/acceptance/realtime/channel_spec.rb#L1176)
- * a channel ATTACH request when connection SUSPENDED
- * [raises an exception](./spec/acceptance/realtime/channel_spec.rb#L1199)
+ * [remains in the :failed state and retains the error_reason (#RTL3c)](./spec/acceptance/realtime/channel_spec.rb#L1654)
+ * a channel ATTACH request when connection SUSPENDED (#RTL4b)
+ * [fails the deferrable](./spec/acceptance/realtime/channel_spec.rb#L1676)
+ * :connected
+ * a :suspended channel
+ * [is automatically reattached (#RTL3d)](./spec/acceptance/realtime/channel_spec.rb#L1692)
+ * when re-attach attempt fails
+ * [returns to a suspended state (#RTL3d)](./spec/acceptance/realtime/channel_spec.rb#L1709)
+ * :disconnected
+ * with an initialized channel
+ * [has no effect on the channel states (#RTL3e)](./spec/acceptance/realtime/channel_spec.rb#L1735)
+ * with an attaching channel
+ * [has no effect on the channel states (#RTL3e)](./spec/acceptance/realtime/channel_spec.rb#L1748)
+ * with an attached channel
+ * [has no effect on the channel states (#RTL3e)](./spec/acceptance/realtime/channel_spec.rb#L1763)
+ * with a detached channel
+ * [has no effect on the channel states (#RTL3e)](./spec/acceptance/realtime/channel_spec.rb#L1775)
+ * with a failed channel
+ * [has no effect on the channel states (#RTL3e)](./spec/acceptance/realtime/channel_spec.rb#L1797)
* #presence
- * [returns a Ably::Realtime::Presence object](./spec/acceptance/realtime/channel_spec.rb#L1213)
+ * [returns a Ably::Realtime::Presence object](./spec/acceptance/realtime/channel_spec.rb#L1812)
* channel state change
- * [emits a ChannelStateChange object](./spec/acceptance/realtime/channel_spec.rb#L1220)
+ * [emits a ChannelStateChange object](./spec/acceptance/realtime/channel_spec.rb#L1819)
* ChannelStateChange object
- * [has current state](./spec/acceptance/realtime/channel_spec.rb#L1229)
- * [has a previous state](./spec/acceptance/realtime/channel_spec.rb#L1237)
- * [has an empty reason when there is no error](./spec/acceptance/realtime/channel_spec.rb#L1254)
+ * [has current state](./spec/acceptance/realtime/channel_spec.rb#L1828)
+ * [has a previous state](./spec/acceptance/realtime/channel_spec.rb#L1837)
+ * [has the event that generated the state change (#TA5)](./spec/acceptance/realtime/channel_spec.rb#L1846)
+ * [has an empty reason when there is no error](./spec/acceptance/realtime/channel_spec.rb#L1864)
* on failure
- * [has a reason Error object when there is an error on the channel](./spec/acceptance/realtime/channel_spec.rb#L1267)
+ * [has a reason Error object when there is an error on the channel](./spec/acceptance/realtime/channel_spec.rb#L1877)
+ * #resume (#RTL2f)
+ * [is false when a channel first attaches](./spec/acceptance/realtime/channel_spec.rb#L1890)
+ * PENDING: *[is true when a connection is recovered and the channel is attached](./spec/acceptance/realtime/channel_spec.rb#L1898)*
+ * [is false when a connection fails to recover and the channel is attached](./spec/acceptance/realtime/channel_spec.rb#L1919)
+ * when a resume fails
+ * [is false when a resume fails to recover and the channel is automatically re-attached](./spec/acceptance/realtime/channel_spec.rb#L1941)
+ * moves to
+ * suspended
+ * [all queued messages fail with NACK (#RTL11)](./spec/acceptance/realtime/channel_spec.rb#L1960)
+ * [all published messages awaiting an ACK do nothing (#RTL11a)](./spec/acceptance/realtime/channel_spec.rb#L1983)
+ * detached
+ * [all queued messages fail with NACK (#RTL11)](./spec/acceptance/realtime/channel_spec.rb#L1960)
+ * [all published messages awaiting an ACK do nothing (#RTL11a)](./spec/acceptance/realtime/channel_spec.rb#L1983)
+ * failed
+ * [all queued messages fail with NACK (#RTL11)](./spec/acceptance/realtime/channel_spec.rb#L1960)
+ * [all published messages awaiting an ACK do nothing (#RTL11a)](./spec/acceptance/realtime/channel_spec.rb#L1983)
+ * when it receives a server-initiated DETACHED (#RTL13)
+ * and channel is initialized (#RTL13)
+ * [does nothing](./spec/acceptance/realtime/channel_spec.rb#L2017)
+ * and channel is failed
+ * [does nothing (#RTL13)](./spec/acceptance/realtime/channel_spec.rb#L2038)
+ * and channel is attached
+ * [reattaches immediately (#RTL13a)](./spec/acceptance/realtime/channel_spec.rb#L2054)
+ * and channel is suspended
+ * [reattaches immediately (#RTL13a)](./spec/acceptance/realtime/channel_spec.rb#L2070)
+ * and channel is attaching
+ * [will move to the SUSPENDED state and then attempt to ATTACH with the ATTACHING state (#RTL13b)](./spec/acceptance/realtime/channel_spec.rb#L2092)
+ * when it receives an ERROR ProtocolMessage
+ * [should transition to the failed state and the error_reason should be set (#RTL14)](./spec/acceptance/realtime/channel_spec.rb#L2140)
### Ably::Realtime::Channels
_(see [spec/acceptance/realtime/channels_spec.rb](./spec/acceptance/realtime/channels_spec.rb))_
* using JSON protocol
* using shortcut method #channel on the client object
@@ -343,18 +476,18 @@
* token auth
* with TLS enabled
* and a pre-generated Token provided with the :token option
* [connects using token auth](./spec/acceptance/realtime/client_spec.rb#L52)
* with valid :key and :use_token_auth option set to true
- * [automatically authorises on connect and generates a token](./spec/acceptance/realtime/client_spec.rb#L65)
+ * [automatically authorizes on connect and generates a token](./spec/acceptance/realtime/client_spec.rb#L65)
* with client_id
* [connects using token auth](./spec/acceptance/realtime/client_spec.rb#L78)
* with TLS disabled
* and a pre-generated Token provided with the :token option
* [connects using token auth](./spec/acceptance/realtime/client_spec.rb#L52)
* with valid :key and :use_token_auth option set to true
- * [automatically authorises on connect and generates a token](./spec/acceptance/realtime/client_spec.rb#L65)
+ * [automatically authorizes on connect and generates a token](./spec/acceptance/realtime/client_spec.rb#L65)
* with client_id
* [connects using token auth](./spec/acceptance/realtime/client_spec.rb#L78)
* with a Proc for the :auth_callback option
* [calls the Proc](./spec/acceptance/realtime/client_spec.rb#L103)
* [uses the token request returned from the callback when requesting a new token](./spec/acceptance/realtime/client_spec.rb#L110)
@@ -379,79 +512,139 @@
* [provides access to the Connection object](./spec/acceptance/realtime/client_spec.rb#L213)
* #channels
* [provides access to the Channels collection object](./spec/acceptance/realtime/client_spec.rb#L220)
* #auth
* [provides access to the Realtime::Auth object](./spec/acceptance/realtime/client_spec.rb#L227)
+ * #request (#RSC19*)
+ * get
+ * [returns an HttpPaginatedResponse object](./spec/acceptance/realtime/client_spec.rb#L237)
+ * 404 request to invalid URL
+ * [returns an object with 404 status code and error message](./spec/acceptance/realtime/client_spec.rb#L246)
+ * paged results
+ * [provides paging](./spec/acceptance/realtime/client_spec.rb#L260)
### Ably::Realtime::Connection failures
_(see [spec/acceptance/realtime/connection_failures_spec.rb](./spec/acceptance/realtime/connection_failures_spec.rb))_
* using JSON protocol
* authentication failure
* when API key is invalid
* with invalid app part of the key
- * [enters the failed state and returns a not found error](./spec/acceptance/realtime/connection_failures_spec.rb#L26)
+ * [enters the failed state and returns a not found error](./spec/acceptance/realtime/connection_failures_spec.rb#L29)
* with invalid key name part of the key
- * [enters the failed state and returns an authorization error](./spec/acceptance/realtime/connection_failures_spec.rb#L41)
+ * [enters the failed state and returns an authorization error](./spec/acceptance/realtime/connection_failures_spec.rb#L44)
+ * with auth_url
+ * opening a new connection
+ * request fails due to network failure
+ * [the connection moves to the disconnected state and tries again, returning again to the disconnected state (#RSA4c, #RSA4c1, #RSA4c2)](./spec/acceptance/realtime/connection_failures_spec.rb#L62)
+ * request fails due to invalid content
+ * [the connection moves to the disconnected state and tries again, returning again to the disconnected state (#RSA4c, #RSA4c1, #RSA4c2)](./spec/acceptance/realtime/connection_failures_spec.rb#L92)
+ * existing CONNECTED connection
+ * authorize request failure leaves connection in existing condition
+ * [the connection remains in the CONNECTED state and authorize fails (#RSA4c, #RSA4c1, #RSA4c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L120)
+ * with auth_callback
+ * opening a new connection
+ * when callback fails due to an exception
+ * [the connection moves to the disconnected state and tries again, returning again to the disconnected state (#RSA4c, #RSA4c1, #RSA4c2)](./spec/acceptance/realtime/connection_failures_spec.rb#L148)
+ * existing CONNECTED connection
+ * when callback fails due to the request taking longer than realtime_request_timeout
+ * [the authorization request fails as configured in the realtime_request_timeout (#RSA4c, #RSA4c1, #RSA4c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L179)
* automatic connection retry
* with invalid WebSocket host
* when disconnected
- * [enters the suspended state after multiple attempts to connect](./spec/acceptance/realtime/connection_failures_spec.rb#L95)
+ * [enters the suspended state after multiple attempts to connect](./spec/acceptance/realtime/connection_failures_spec.rb#L244)
* for the first time
- * [reattempts connection immediately and then waits disconnected_retry_timeout for a subsequent attempt](./spec/acceptance/realtime/connection_failures_spec.rb#L116)
+ * [reattempts connection immediately and then waits disconnected_retry_timeout for a subsequent attempt](./spec/acceptance/realtime/connection_failures_spec.rb#L265)
* #close
- * [transitions connection state to :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L133)
+ * [transitions connection state to :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L282)
* when connection state is :suspended
- * [stays in the suspended state after any number of reconnection attempts](./spec/acceptance/realtime/connection_failures_spec.rb#L152)
+ * [stays in the suspended state after any number of reconnection attempts](./spec/acceptance/realtime/connection_failures_spec.rb#L301)
* for the first time
- * [waits suspended_retry_timeout before attempting to reconnect](./spec/acceptance/realtime/connection_failures_spec.rb#L175)
+ * [waits suspended_retry_timeout before attempting to reconnect](./spec/acceptance/realtime/connection_failures_spec.rb#L324)
* #close
- * [transitions connection state to :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L197)
+ * [transitions connection state to :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L346)
* when connection state is :failed
* #close
- * [will not transition state to :close and raises a InvalidStateChange exception](./spec/acceptance/realtime/connection_failures_spec.rb#L216)
+ * [will not transition state to :close and fails with an InvalidStateChange exception](./spec/acceptance/realtime/connection_failures_spec.rb#L365)
* #error_reason
- * [contains the error when state is disconnected](./spec/acceptance/realtime/connection_failures_spec.rb#L234)
- * [contains the error when state is suspended](./spec/acceptance/realtime/connection_failures_spec.rb#L234)
- * [contains the error when state is failed](./spec/acceptance/realtime/connection_failures_spec.rb#L234)
- * [is reset to nil when :connected](./spec/acceptance/realtime/connection_failures_spec.rb#L248)
- * [is reset to nil when :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L259)
+ * [contains the error when state is disconnected](./spec/acceptance/realtime/connection_failures_spec.rb#L386)
+ * [contains the error when state is suspended](./spec/acceptance/realtime/connection_failures_spec.rb#L386)
+ * [contains the error when state is failed](./spec/acceptance/realtime/connection_failures_spec.rb#L386)
+ * [is reset to nil when :connected](./spec/acceptance/realtime/connection_failures_spec.rb#L400)
+ * [is reset to nil when :closed](./spec/acceptance/realtime/connection_failures_spec.rb#L411)
* #connect
* connection opening times out
- * [attempts to reconnect](./spec/acceptance/realtime/connection_failures_spec.rb#L290)
+ * [attempts to reconnect](./spec/acceptance/realtime/connection_failures_spec.rb#L442)
* when retry intervals are stubbed to attempt reconnection quickly
- * [never calls the provided success block](./spec/acceptance/realtime/connection_failures_spec.rb#L314)
+ * [never calls the provided success block](./spec/acceptance/realtime/connection_failures_spec.rb#L466)
* connection resume
* when DISCONNECTED ProtocolMessage received from the server
- * [reconnects automatically and immediately](./spec/acceptance/realtime/connection_failures_spec.rb#L345)
+ * [reconnects automatically and immediately](./spec/acceptance/realtime/connection_failures_spec.rb#L497)
* and subsequently fails to reconnect
- * [retries every 15 seconds](./spec/acceptance/realtime/connection_failures_spec.rb#L377)
- * when websocket transport is closed
- * [reconnects automatically](./spec/acceptance/realtime/connection_failures_spec.rb#L420)
+ * [retries every 15 seconds](./spec/acceptance/realtime/connection_failures_spec.rb#L529)
+ * when websocket transport is abruptly disconnected
+ * [reconnects automatically](./spec/acceptance/realtime/connection_failures_spec.rb#L572)
+ * hosts used
+ * [reconnects with the default host](./spec/acceptance/realtime/connection_failures_spec.rb#L588)
* after successfully reconnecting and resuming
- * [retains connection_id and updates the connection_key](./spec/acceptance/realtime/connection_failures_spec.rb#L437)
- * [emits any error received from Ably but leaves the channels attached](./spec/acceptance/realtime/connection_failures_spec.rb#L452)
- * [retains channel subscription state](./spec/acceptance/realtime/connection_failures_spec.rb#L483)
+ * [retains connection_id and updates the connection_key (#RTN15e, #RTN16d)](./spec/acceptance/realtime/connection_failures_spec.rb#L612)
+ * [includes the error received in the connection state change from Ably but leaves the channels attached](./spec/acceptance/realtime/connection_failures_spec.rb#L627)
+ * [retains channel subscription state](./spec/acceptance/realtime/connection_failures_spec.rb#L653)
+ * [retains the client_serial (#RTN15c2, #RTN15c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L714)
* when messages were published whilst the client was disconnected
- * [receives the messages published whilst offline](./spec/acceptance/realtime/connection_failures_spec.rb#L511)
+ * [receives the messages published whilst offline](./spec/acceptance/realtime/connection_failures_spec.rb#L681)
* when failing to resume
* because the connection_key is not or no longer valid
- * [updates the connection_id and connection_key](./spec/acceptance/realtime/connection_failures_spec.rb#L554)
- * [detaches all channels](./spec/acceptance/realtime/connection_failures_spec.rb#L569)
- * [emits an error on the channel and sets the error reason](./spec/acceptance/realtime/connection_failures_spec.rb#L589)
+ * [updates the connection_id and connection_key](./spec/acceptance/realtime/connection_failures_spec.rb#L754)
+ * [issue a reattach for all attached channels and fail all message awaiting an ACK (#RTN15c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L769)
+ * [issue a reattach for all attaching channels and fail all queued messages (#RTN15c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L807)
+ * [issue a attach for all suspended channels (#RTN15c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L843)
+ * [sets the error reason on each channel](./spec/acceptance/realtime/connection_failures_spec.rb#L881)
+ * [resets the client_serial (#RTN15c3)](./spec/acceptance/realtime/connection_failures_spec.rb#L896)
+ * as the DISCONNECTED window to resume has passed
+ * [starts a new connection automatically and does not try and resume](./spec/acceptance/realtime/connection_failures_spec.rb#L933)
+ * when an ERROR protocol message is received
+ * whilst connecting
+ * with a token error code in the range 40140 <= code < 40150 (#RTN14b)
+ * [triggers a re-authentication](./spec/acceptance/realtime/connection_failures_spec.rb#L960)
+ * with an error code indicating an error other than a token failure (#RTN14g, #RTN15i)
+ * [causes the connection to fail](./spec/acceptance/realtime/connection_failures_spec.rb#L976)
+ * with no error code indicating an error other than a token failure (#RTN14g, #RTN15i)
+ * [causes the connection to fail](./spec/acceptance/realtime/connection_failures_spec.rb#L989)
+ * whilst connected
+ * with a token error code in the range 40140 <= code < 40150 (#RTN14b)
+ * [triggers a re-authentication](./spec/acceptance/realtime/connection_failures_spec.rb#L960)
+ * with an error code indicating an error other than a token failure (#RTN14g, #RTN15i)
+ * [causes the connection to fail](./spec/acceptance/realtime/connection_failures_spec.rb#L976)
+ * with no error code indicating an error other than a token failure (#RTN14g, #RTN15i)
+ * [causes the connection to fail](./spec/acceptance/realtime/connection_failures_spec.rb#L989)
+ * whilst resuming
+ * with a token error code in the region 40140 <= code < 40150 (RTN15c5)
+ * [triggers a re-authentication and then resumes the connection](./spec/acceptance/realtime/connection_failures_spec.rb#L1033)
+ * with any other error (#RTN15c4)
+ * [moves the connection to the failed state](./spec/acceptance/realtime/connection_failures_spec.rb#L1065)
* fallback host feature
* with custom realtime websocket host option
- * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L629)
+ * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L1109)
* with custom realtime websocket port option
- * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L647)
+ * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L1127)
* with non-production environment
- * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L666)
+ * [does not use a fallback host by default](./spec/acceptance/realtime/connection_failures_spec.rb#L1146)
+ * :fallback_hosts_use_default is true
+ * [uses a fallback host on every subsequent disconnected attempt until suspended (#RTN17b, #TO3k7)](./spec/acceptance/realtime/connection_failures_spec.rb#L1164)
+ * :fallback_hosts array is provided
+ * [uses a fallback host on every subsequent disconnected attempt until suspended (#RTN17b, #TO3k6)](./spec/acceptance/realtime/connection_failures_spec.rb#L1189)
* with production environment
* when the Internet is down
- * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L696)
+ * [never uses a fallback host](./spec/acceptance/realtime/connection_failures_spec.rb#L1225)
* when the Internet is up
- * [uses a fallback host on every subsequent disconnected attempt until suspended](./spec/acceptance/realtime/connection_failures_spec.rb#L716)
- * [uses the primary host when suspended, and a fallback host on every subsequent suspended attempt](./spec/acceptance/realtime/connection_failures_spec.rb#L735)
+ * and default options
+ * [uses a fallback host + the original host once on every subsequent disconnected attempt until suspended](./spec/acceptance/realtime/connection_failures_spec.rb#L1248)
+ * [uses the primary host when suspended, and then every fallback host and the primary host again on every subsequent suspended attempt](./spec/acceptance/realtime/connection_failures_spec.rb#L1267)
+ * :fallback_hosts array is provided by an empty array
+ * [uses a fallback host on every subsequent disconnected attempt until suspended (#RTN17b, #TO3k6)](./spec/acceptance/realtime/connection_failures_spec.rb#L1297)
+ * :fallback_hosts array is provided
+ * [uses a fallback host on every subsequent disconnected attempt until suspended (#RTN17b, #TO3k6)](./spec/acceptance/realtime/connection_failures_spec.rb#L1317)
### Ably::Realtime::Connection
_(see [spec/acceptance/realtime/connection_spec.rb](./spec/acceptance/realtime/connection_spec.rb))_
* using JSON protocol
* intialization
@@ -460,169 +653,207 @@
* [does not connect automatically](./spec/acceptance/realtime/connection_spec.rb#L35)
* [connects when method #connect is called](./spec/acceptance/realtime/connection_spec.rb#L43)
* with token auth
* for renewable tokens
* that are valid for the duration of the test
- * with valid pre authorised token expiring in the future
- * [uses the existing token created by Auth](./spec/acceptance/realtime/connection_spec.rb#L64)
+ * with valid pre authorized token expiring in the future
+ * [uses the existing token created by Auth](./spec/acceptance/realtime/connection_spec.rb#L65)
* with implicit authorisation
- * [uses the token created by the implicit authorisation](./spec/acceptance/realtime/connection_spec.rb#L76)
+ * [uses the token created by the implicit authorisation](./spec/acceptance/realtime/connection_spec.rb#L77)
* that expire
* opening a new connection
* with almost expired tokens
- * [renews token every time after it expires](./spec/acceptance/realtime/connection_spec.rb#L110)
+ * [renews token every time after it expires](./spec/acceptance/realtime/connection_spec.rb#L111)
* with immediately expired token
- * [renews the token on connect, and makes one immediate subsequent attempt to obtain a new token](./spec/acceptance/realtime/connection_spec.rb#L140)
+ * [renews the token on connect, and makes one immediate subsequent attempt to obtain a new token (#RSA4b)](./spec/acceptance/realtime/connection_spec.rb#L141)
* when disconnected_retry_timeout is 0.5 seconds
- * [renews the token on connect, and continues to attempt renew based on the retry schedule](./spec/acceptance/realtime/connection_spec.rb#L155)
+ * [renews the token on connect, and continues to attempt renew based on the retry schedule](./spec/acceptance/realtime/connection_spec.rb#L156)
* using implicit token auth
- * [uses the primary host for subsequent connection and auth requests](./spec/acceptance/realtime/connection_spec.rb#L177)
+ * [uses the primary host for subsequent connection and auth requests](./spec/acceptance/realtime/connection_spec.rb#L186)
* when connected with a valid non-expired token
* that then expires following the connection being opened
* the server
- * [disconnects the client, and the client automatically renews the token and then reconnects](./spec/acceptance/realtime/connection_spec.rb#L204)
+ * [disconnects the client, and the client automatically renews the token and then reconnects](./spec/acceptance/realtime/connection_spec.rb#L213)
* connection state
- * [retains messages published when disconnected twice during authentication](./spec/acceptance/realtime/connection_spec.rb#L273)
+ * PENDING: *[retains messages published when disconnected three times during authentication](./spec/acceptance/realtime/connection_spec.rb#L273)*
* and subsequent token is invalid
- * [transitions the connection to the failed state](./spec/acceptance/realtime/connection_spec.rb#L302)
+ * [transitions the connection to the failed state](./spec/acceptance/realtime/connection_spec.rb#L309)
* for non-renewable tokens
* that are expired
* opening a new connection
- * [transitions state to failed](./spec/acceptance/realtime/connection_spec.rb#L331)
+ * [transitions state to failed (#RSA4a)](./spec/acceptance/realtime/connection_spec.rb#L339)
* when connected
- * PENDING: *[transitions state to failed](./spec/acceptance/realtime/connection_spec.rb#L344)*
+ * [transitions state to failed (#RSA4a)](./spec/acceptance/realtime/connection_spec.rb#L355)
* with opaque token string that contain an implicit client_id
* string
- * [sets the Client#client_id and Auth#client_id once CONNECTED](./spec/acceptance/realtime/connection_spec.rb#L357)
+ * [sets the Client#client_id and Auth#client_id once CONNECTED](./spec/acceptance/realtime/connection_spec.rb#L375)
* that is incompatible with the current client client_id
- * [fails the connection](./spec/acceptance/realtime/connection_spec.rb#L369)
+ * [fails the connection](./spec/acceptance/realtime/connection_spec.rb#L387)
* wildcard
- * [configures the Client#client_id and Auth#client_id with a wildcard once CONNECTED](./spec/acceptance/realtime/connection_spec.rb#L383)
+ * [configures the Client#client_id and Auth#client_id with a wildcard once CONNECTED](./spec/acceptance/realtime/connection_spec.rb#L401)
* initialization state changes
* with implicit #connect
- * [are emitted in order](./spec/acceptance/realtime/connection_spec.rb#L415)
+ * [are emitted in order](./spec/acceptance/realtime/connection_spec.rb#L433)
* with explicit #connect
- * [are emitted in order](./spec/acceptance/realtime/connection_spec.rb#L421)
+ * [are emitted in order](./spec/acceptance/realtime/connection_spec.rb#L439)
* #connect
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/connection_spec.rb#L429)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/connection_spec.rb#L434)
- * [calls the provided block on success even if state changes to disconnected first](./spec/acceptance/realtime/connection_spec.rb#L441)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/connection_spec.rb#L447)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/connection_spec.rb#L452)
+ * [calls the provided block on success even if state changes to disconnected first](./spec/acceptance/realtime/connection_spec.rb#L459)
* with invalid auth details
- * [calls the Deferrable errback only once on connection failure](./spec/acceptance/realtime/connection_spec.rb#L470)
+ * [calls the Deferrable errback only once on connection failure](./spec/acceptance/realtime/connection_spec.rb#L488)
* when already connected
- * [does nothing and no further state changes are emitted](./spec/acceptance/realtime/connection_spec.rb#L486)
+ * [does nothing and no further state changes are emitted](./spec/acceptance/realtime/connection_spec.rb#L504)
* connection#id
- * [is null before connecting](./spec/acceptance/realtime/connection_spec.rb#L500)
+ * [is null before connecting](./spec/acceptance/realtime/connection_spec.rb#L518)
* connection#key
- * [is null before connecting](./spec/acceptance/realtime/connection_spec.rb#L507)
+ * [is null before connecting](./spec/acceptance/realtime/connection_spec.rb#L525)
* once connected
* connection#id
- * [is a string](./spec/acceptance/realtime/connection_spec.rb#L518)
- * [is unique from the connection#key](./spec/acceptance/realtime/connection_spec.rb#L525)
- * [is unique for every connection](./spec/acceptance/realtime/connection_spec.rb#L532)
+ * [is a string](./spec/acceptance/realtime/connection_spec.rb#L536)
+ * [is unique from the connection#key](./spec/acceptance/realtime/connection_spec.rb#L543)
+ * [is unique for every connection](./spec/acceptance/realtime/connection_spec.rb#L550)
* connection#key
- * [is a string](./spec/acceptance/realtime/connection_spec.rb#L541)
- * [is unique from the connection#id](./spec/acceptance/realtime/connection_spec.rb#L548)
- * [is unique for every connection](./spec/acceptance/realtime/connection_spec.rb#L555)
+ * [is a string](./spec/acceptance/realtime/connection_spec.rb#L559)
+ * [is unique from the connection#id](./spec/acceptance/realtime/connection_spec.rb#L566)
+ * [is unique for every connection](./spec/acceptance/realtime/connection_spec.rb#L573)
* following a previous connection being opened and closed
- * [reconnects and is provided with a new connection ID and connection key from the server](./spec/acceptance/realtime/connection_spec.rb#L565)
+ * [reconnects and is provided with a new connection ID and connection key from the server](./spec/acceptance/realtime/connection_spec.rb#L583)
* when closing
- * [raises an exception before the connection is closed](./spec/acceptance/realtime/connection_spec.rb#L582)
+ * [fails the deferrable before the connection is closed](./spec/acceptance/realtime/connection_spec.rb#L600)
* #serial connection serial
- * [is set to -1 when a new connection is opened](./spec/acceptance/realtime/connection_spec.rb#L597)
- * [is set to 0 when a message sent ACK is received](./spec/acceptance/realtime/connection_spec.rb#L618)
- * [is set to 1 when the second message sent ACK is received](./spec/acceptance/realtime/connection_spec.rb#L625)
+ * [is set to -1 when a new connection is opened](./spec/acceptance/realtime/connection_spec.rb#L617)
+ * [is set to 0 when a message sent ACK is received](./spec/acceptance/realtime/connection_spec.rb#L640)
+ * [is set to 1 when the second message sent ACK is received](./spec/acceptance/realtime/connection_spec.rb#L647)
* when a message is sent but the ACK has not yet been received
- * [the sent message msgSerial is 0 but the connection serial remains at -1](./spec/acceptance/realtime/connection_spec.rb#L605)
+ * [the sent message msgSerial is 0 but the connection serial remains at -1](./spec/acceptance/realtime/connection_spec.rb#L625)
* #close
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/connection_spec.rb#L636)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/connection_spec.rb#L643)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/connection_spec.rb#L658)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/connection_spec.rb#L665)
* when already closed
- * [does nothing and no further state changes are emitted](./spec/acceptance/realtime/connection_spec.rb#L654)
+ * [does nothing and no further state changes are emitted](./spec/acceptance/realtime/connection_spec.rb#L676)
* when connection state is
* :initialized
- * [changes the connection state to :closing and then immediately :closed without sending a ProtocolMessage CLOSE](./spec/acceptance/realtime/connection_spec.rb#L682)
+ * [changes the connection state to :closing and then immediately :closed without sending a ProtocolMessage CLOSE](./spec/acceptance/realtime/connection_spec.rb#L703)
* :connected
- * [changes the connection state to :closing and waits for the server to confirm connection is :closed with a ProtocolMessage](./spec/acceptance/realtime/connection_spec.rb#L700)
+ * [changes the connection state to :closing and waits for the server to confirm connection is :closed with a ProtocolMessage](./spec/acceptance/realtime/connection_spec.rb#L720)
* with an unresponsive connection
- * [force closes the connection when a :closed ProtocolMessage response is not received](./spec/acceptance/realtime/connection_spec.rb#L728)
+ * [force closes the connection when a :closed ProtocolMessage response is not received](./spec/acceptance/realtime/connection_spec.rb#L747)
* #ping
- * [echoes a heart beat](./spec/acceptance/realtime/connection_spec.rb#L751)
- * when not connected
- * [raises an exception](./spec/acceptance/realtime/connection_spec.rb#L761)
+ * [echoes a heart beat (#RTN13a)](./spec/acceptance/realtime/connection_spec.rb#L769)
+ * [sends a unique ID in each protocol message (#RTN13e)](./spec/acceptance/realtime/connection_spec.rb#L779)
+ * [waits until the connection becomes CONNECTED when in the CONNETING state](./spec/acceptance/realtime/connection_spec.rb#L803)
+ * with incompatible states
+ * when not connected
+ * [fails the deferrable (#RTN13b)](./spec/acceptance/realtime/connection_spec.rb#L816)
+ * when suspended
+ * [fails the deferrable (#RTN13b)](./spec/acceptance/realtime/connection_spec.rb#L825)
+ * when failed
+ * [fails the deferrable (#RTN13b)](./spec/acceptance/realtime/connection_spec.rb#L837)
+ * when closed
+ * [fails the deferrable (#RTN13b)](./spec/acceptance/realtime/connection_spec.rb#L849)
+ * when it becomes closed
+ * [fails the deferrable (#RTN13b)](./spec/acceptance/realtime/connection_spec.rb#L863)
* with a success block that raises an exception
- * [catches the exception and logs the error](./spec/acceptance/realtime/connection_spec.rb#L768)
+ * [catches the exception and logs the error](./spec/acceptance/realtime/connection_spec.rb#L876)
* when ping times out
- * [logs a warning](./spec/acceptance/realtime/connection_spec.rb#L781)
- * [yields to the block with a nil value](./spec/acceptance/realtime/connection_spec.rb#L791)
+ * [fails the deferrable logs a warning (#RTN13a, #RTN13c)](./spec/acceptance/realtime/connection_spec.rb#L890)
+ * [yields to the block with a nil value](./spec/acceptance/realtime/connection_spec.rb#L909)
+ * Heartbeats (#RTN23)
+ * heartbeat interval
+ * when reduced artificially
+ * [is the sum of the max_idle_interval and realtime_request_timeout (#RTN23a)](./spec/acceptance/realtime/connection_spec.rb#L936)
+ * [disconnects the transport if no heartbeat received since connected (#RTN23a)](./spec/acceptance/realtime/connection_spec.rb#L946)
+ * [disconnects the transport if no heartbeat received since last event received (#RTN23a)](./spec/acceptance/realtime/connection_spec.rb#L957)
+ * transport-level heartbeats are supported in the websocket transport
+ * [provides the heartbeats argument in the websocket connection params (#RTN23b)](./spec/acceptance/realtime/connection_spec.rb#L972)
+ * PENDING: *[receives websocket heartbeat messages (#RTN23b) [slow test as need to wait for heartbeat]](./spec/acceptance/realtime/connection_spec.rb#L981)*
+ * with websocket heartbeats disabled (undocumented)
+ * [does not provide the heartbeats argument in the websocket connection params (#RTN23b)](./spec/acceptance/realtime/connection_spec.rb#L1000)
+ * [receives websocket protocol messages (#RTN23b) [slow test as need to wait for heartbeat]](./spec/acceptance/realtime/connection_spec.rb#L1009)
* #details
- * [is nil before connected](./spec/acceptance/realtime/connection_spec.rb#L806)
- * [contains the ConnectionDetails object once connected](./spec/acceptance/realtime/connection_spec.rb#L813)
- * [contains the new ConnectionDetails object once a subsequent connection is created](./spec/acceptance/realtime/connection_spec.rb#L822)
+ * [is nil before connected](./spec/acceptance/realtime/connection_spec.rb#L1026)
+ * [contains the ConnectionDetails object once connected (#RTN21)](./spec/acceptance/realtime/connection_spec.rb#L1033)
+ * [contains the new ConnectionDetails object once a subsequent connection is created (#RTN21)](./spec/acceptance/realtime/connection_spec.rb#L1042)
+ * with a different default connection_state_ttl
+ * [updates the private Connection#connection_state_ttl when received from Ably in ConnectionDetails](./spec/acceptance/realtime/connection_spec.rb#L1063)
* recovery
* #recovery_key
- * [is composed of connection key and serial that is kept up to date with each message ACK received](./spec/acceptance/realtime/connection_spec.rb#L864)
- * [is available when connection is in one of the states: connecting, connected, disconnected, suspended, failed](./spec/acceptance/realtime/connection_spec.rb#L887)
- * [is nil when connection is explicitly CLOSED](./spec/acceptance/realtime/connection_spec.rb#L916)
+ * [is composed of connection key and serial that is kept up to date with each message ACK received](./spec/acceptance/realtime/connection_spec.rb#L1100)
+ * [is available when connection is in one of the states: connecting, connected, disconnected](./spec/acceptance/realtime/connection_spec.rb#L1123)
+ * [is nil when connection is explicitly CLOSED](./spec/acceptance/realtime/connection_spec.rb#L1152)
* opening a new connection using a recently disconnected connection's #recovery_key
* connection#id and connection#key after recovery
- * [remains the same for id and party for key](./spec/acceptance/realtime/connection_spec.rb#L928)
+ * [remains the same for id and party for key](./spec/acceptance/realtime/connection_spec.rb#L1164)
* when messages have been sent whilst the old connection is disconnected
* the new connection
- * [recovers server-side queued messages](./spec/acceptance/realtime/connection_spec.rb#L970)
+ * [recovers server-side queued messages](./spec/acceptance/realtime/connection_spec.rb#L1206)
* with :recover option
* with invalid syntax
- * [raises an exception](./spec/acceptance/realtime/connection_spec.rb#L996)
+ * [raises an exception](./spec/acceptance/realtime/connection_spec.rb#L1238)
* with invalid formatted value sent to server
- * [emits a fatal error on the connection object, sets the #error_reason and disconnects](./spec/acceptance/realtime/connection_spec.rb#L1005)
+ * [sets the #error_reason and moves the connection to FAILED](./spec/acceptance/realtime/connection_spec.rb#L1247)
* with expired (missing) value sent to server
- * [emits an error on the connection object, sets the #error_reason, yet will connect anyway](./spec/acceptance/realtime/connection_spec.rb#L1020)
+ * [connects but sets the error reason and includes the reason in the state change](./spec/acceptance/realtime/connection_spec.rb#L1262)
* with many connections simultaneously
- * [opens each with a unique connection#id and connection#key](./spec/acceptance/realtime/connection_spec.rb#L1039)
+ * [opens each with a unique connection#id and connection#key](./spec/acceptance/realtime/connection_spec.rb#L1281)
* when a state transition is unsupported
- * [emits a InvalidStateChange](./spec/acceptance/realtime/connection_spec.rb#L1059)
+ * [logs the invalid state change as fatal](./spec/acceptance/realtime/connection_spec.rb#L1301)
* protocol failure
* receiving an invalid ProtocolMessage
- * [emits an error on the connection and logs a fatal error message](./spec/acceptance/realtime/connection_spec.rb#L1075)
+ * [emits an error on the connection and logs a fatal error message](./spec/acceptance/realtime/connection_spec.rb#L1317)
* undocumented method
* #internet_up?
- * [returns a Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1091)
+ * [returns a Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1335)
* internet up URL protocol
* when using TLS for the connection
- * [uses TLS for the Internet check to https://internet-up.ably-realtime.com/is-the-internet-up.txt](./spec/acceptance/realtime/connection_spec.rb#L1102)
+ * [uses TLS for the Internet check to https://internet-up.ably-realtime.com/is-the-internet-up.txt](./spec/acceptance/realtime/connection_spec.rb#L1346)
* when using a non-secured connection
- * [uses TLS for the Internet check to http://internet-up.ably-realtime.com/is-the-internet-up.txt](./spec/acceptance/realtime/connection_spec.rb#L1112)
+ * [uses TLS for the Internet check to http://internet-up.ably-realtime.com/is-the-internet-up.txt](./spec/acceptance/realtime/connection_spec.rb#L1356)
* when the Internet is up
- * [calls the block with true](./spec/acceptance/realtime/connection_spec.rb#L1143)
- * [calls the success callback of the Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1150)
+ * [calls the block with true](./spec/acceptance/realtime/connection_spec.rb#L1387)
+ * [calls the success callback of the Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1394)
* with a TLS connection
- * [checks the Internet up URL over TLS](./spec/acceptance/realtime/connection_spec.rb#L1126)
+ * [checks the Internet up URL over TLS](./spec/acceptance/realtime/connection_spec.rb#L1370)
* with a non-TLS connection
- * [checks the Internet up URL over TLS](./spec/acceptance/realtime/connection_spec.rb#L1136)
+ * [checks the Internet up URL over TLS](./spec/acceptance/realtime/connection_spec.rb#L1380)
* when the Internet is down
- * [calls the block with false](./spec/acceptance/realtime/connection_spec.rb#L1165)
- * [calls the failure callback of the Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1172)
+ * [calls the block with false](./spec/acceptance/realtime/connection_spec.rb#L1409)
+ * [calls the failure callback of the Deferrable](./spec/acceptance/realtime/connection_spec.rb#L1416)
* state change side effects
* when connection enters the :disconnected state
- * [queues messages to be sent and all channels remain attached](./spec/acceptance/realtime/connection_spec.rb#L1186)
+ * [queues messages to be sent and all channels remain attached](./spec/acceptance/realtime/connection_spec.rb#L1430)
* when connection enters the :suspended state
- * [detaches the channels and prevents publishing of messages on those channels](./spec/acceptance/realtime/connection_spec.rb#L1219)
+ * [moves the channels into the suspended state and prevents publishing of messages on those channels](./spec/acceptance/realtime/connection_spec.rb#L1463)
* when connection enters the :failed state
- * [sets all channels to failed and prevents publishing of messages on those channels](./spec/acceptance/realtime/connection_spec.rb#L1248)
+ * [sets all channels to failed and prevents publishing of messages on those channels](./spec/acceptance/realtime/connection_spec.rb#L1494)
* connection state change
- * [emits a ConnectionStateChange object](./spec/acceptance/realtime/connection_spec.rb#L1259)
+ * [emits event to all and single subscribers](./spec/acceptance/realtime/connection_spec.rb#L1508)
+ * [emits a ConnectionStateChange object](./spec/acceptance/realtime/connection_spec.rb#L1523)
* ConnectionStateChange object
- * [has current state](./spec/acceptance/realtime/connection_spec.rb#L1267)
- * [has a previous state](./spec/acceptance/realtime/connection_spec.rb#L1274)
- * [has an empty reason when there is no error](./spec/acceptance/realtime/connection_spec.rb#L1289)
+ * [has current state](./spec/acceptance/realtime/connection_spec.rb#L1531)
+ * [has a previous state](./spec/acceptance/realtime/connection_spec.rb#L1539)
+ * [has the event that generated the state change (#TH5)](./spec/acceptance/realtime/connection_spec.rb#L1547)
+ * [has an empty reason when there is no error](./spec/acceptance/realtime/connection_spec.rb#L1563)
* on failure
- * [has a reason Error object when there is an error on the connection](./spec/acceptance/realtime/connection_spec.rb#L1302)
+ * [has a reason Error object when there is an error on the connection](./spec/acceptance/realtime/connection_spec.rb#L1576)
* retry_in
- * [is nil when a retry is not required](./spec/acceptance/realtime/connection_spec.rb#L1317)
- * [is 0 when first attempt to connect fails](./spec/acceptance/realtime/connection_spec.rb#L1324)
- * [is 0 when an immediate reconnect will occur](./spec/acceptance/realtime/connection_spec.rb#L1334)
- * [contains the next retry period when an immediate reconnect will not occur](./spec/acceptance/realtime/connection_spec.rb#L1344)
+ * [is nil when a retry is not required](./spec/acceptance/realtime/connection_spec.rb#L1591)
+ * [is 0 when first attempt to connect fails](./spec/acceptance/realtime/connection_spec.rb#L1598)
+ * [is 0 when an immediate reconnect will occur](./spec/acceptance/realtime/connection_spec.rb#L1608)
+ * [contains the next retry period when an immediate reconnect will not occur](./spec/acceptance/realtime/connection_spec.rb#L1618)
+ * whilst CONNECTED
+ * when a CONNECTED message is received (#RTN24)
+ * [emits an UPDATE event](./spec/acceptance/realtime/connection_spec.rb#L1653)
+ * [updates the ConnectionDetail and Connection attributes (#RTC8a1)](./spec/acceptance/realtime/connection_spec.rb#L1668)
+ * when a CONNECTED message with an error is received
+ * [emits an UPDATE event](./spec/acceptance/realtime/connection_spec.rb#L1703)
+ * version params
+ * [sends the protocol version param v (#G4, #RTN2f)](./spec/acceptance/realtime/connection_spec.rb#L1724)
+ * [sends the lib version param lib (#RTN2g)](./spec/acceptance/realtime/connection_spec.rb#L1733)
+ * with variant
+ * [sends the lib version param lib with the variant (#RTN2g + #RSC7b)](./spec/acceptance/realtime/connection_spec.rb#L1753)
### Ably::Realtime::Channel Message
_(see [spec/acceptance/realtime/message_spec.rb](./spec/acceptance/realtime/message_spec.rb))_
* using JSON protocol
* [sends a String data payload](./spec/acceptance/realtime/message_spec.rb#L25)
@@ -633,550 +864,661 @@
* [is encoded and decoded to the same Array](./spec/acceptance/realtime/message_spec.rb#L56)
* String
* [is encoded and decoded to the same Array](./spec/acceptance/realtime/message_spec.rb#L64)
* Binary
* [is encoded and decoded to the same Array](./spec/acceptance/realtime/message_spec.rb#L72)
+ * with supported extra payload content type (#RTL6h, #RSL6a2)
+ * JSON Object (Hash)
+ * PENDING: *[is encoded and decoded to the same hash](./spec/acceptance/realtime/message_spec.rb#L91)*
+ * JSON Array
+ * PENDING: *[is encoded and decoded to the same Array](./spec/acceptance/realtime/message_spec.rb#L100)*
+ * nil
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/message_spec.rb#L107)
* with unsupported data payload content type
* Integer
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L82)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L118)
* Float
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L91)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L127)
* Boolean
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L100)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L136)
* False
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L109)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/message_spec.rb#L145)
* with ASCII_8BIT message name
- * [is converted into UTF_8](./spec/acceptance/realtime/message_spec.rb#L118)
+ * [is converted into UTF_8](./spec/acceptance/realtime/message_spec.rb#L154)
* when the message publisher has a client_id
- * [contains a #client_id attribute](./spec/acceptance/realtime/message_spec.rb#L134)
+ * [contains a #client_id attribute](./spec/acceptance/realtime/message_spec.rb#L170)
* #connection_id attribute
* over realtime
- * [matches the sender connection#id](./spec/acceptance/realtime/message_spec.rb#L147)
+ * [matches the sender connection#id](./spec/acceptance/realtime/message_spec.rb#L183)
* when retrieved over REST
- * [matches the sender connection#id](./spec/acceptance/realtime/message_spec.rb#L159)
+ * [matches the sender connection#id](./spec/acceptance/realtime/message_spec.rb#L195)
* local echo when published
- * [is enabled by default](./spec/acceptance/realtime/message_spec.rb#L171)
+ * [is enabled by default](./spec/acceptance/realtime/message_spec.rb#L207)
* with :echo_messages option set to false
- * [will not echo messages to the client but will still broadcast messages to other connected clients](./spec/acceptance/realtime/message_spec.rb#L191)
- * [will not echo messages to the client from other REST clients publishing using that connection_key](./spec/acceptance/realtime/message_spec.rb#L210)
- * [will echo messages with a valid connection_id to the client from other REST clients publishing using that connection_key](./spec/acceptance/realtime/message_spec.rb#L223)
+ * [will not echo messages to the client but will still broadcast messages to other connected clients](./spec/acceptance/realtime/message_spec.rb#L227)
+ * [will not echo messages to the client from other REST clients publishing using that connection_key](./spec/acceptance/realtime/message_spec.rb#L246)
+ * [will echo messages with a valid connection_id to the client from other REST clients publishing using that connection_key](./spec/acceptance/realtime/message_spec.rb#L259)
* publishing lots of messages across two connections
- * [sends and receives the messages on both opened connections and calls the success callbacks for each message published](./spec/acceptance/realtime/message_spec.rb#L249)
+ * [sends and receives the messages on both opened connections and calls the success callbacks for each message published](./spec/acceptance/realtime/message_spec.rb#L285)
* without suitable publishing permissions
- * [calls the error callback](./spec/acceptance/realtime/message_spec.rb#L294)
+ * [calls the error callback](./spec/acceptance/realtime/message_spec.rb#L330)
* server incorrectly resends a message that was already received by the client library
- * [discards the message and logs it as an error to the channel](./spec/acceptance/realtime/message_spec.rb#L313)
+ * [discards the message and logs it as an error to the channel](./spec/acceptance/realtime/message_spec.rb#L349)
* encoding and decoding encrypted messages
- * with AES-128-CBC using crypto-data-128.json fixtures
+ * with AES-128-CBC using crypto-data-128.json fixtures (#RTL7d)
* item 0 with encrypted encoding utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 1 with encrypted encoding cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 2 with encrypted encoding json/utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 3 with encrypted encoding json/utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
- * with AES-256-CBC using crypto-data-256.json fixtures
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
+ * with AES-256-CBC using crypto-data-256.json fixtures (#RTL7d)
* item 0 with encrypted encoding utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 1 with encrypted encoding cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 2 with encrypted encoding json/utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* item 3 with encrypted encoding json/utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
* with #publish and #subscribe
- * [encrypts message automatically before they are pushed to the server](./spec/acceptance/realtime/message_spec.rb#L377)
- * [sends and receives messages that are encrypted & decrypted by the Ably library](./spec/acceptance/realtime/message_spec.rb#L395)
+ * [encrypts message automatically before they are pushed to the server (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L414)
+ * [sends and receives messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/realtime/message_spec.rb#L432)
* with multiple sends from one client to another
- * [encrypts and decrypts all messages](./spec/acceptance/realtime/message_spec.rb#L434)
- * [receives raw messages with the correct encoding](./spec/acceptance/realtime/message_spec.rb#L451)
+ * [encrypts and decrypts all messages](./spec/acceptance/realtime/message_spec.rb#L471)
+ * [receives raw messages with the correct encoding](./spec/acceptance/realtime/message_spec.rb#L488)
* subscribing with a different transport protocol
- * [delivers a String ASCII-8BIT payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L485)
- * [delivers a String UTF-8 payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L485)
- * [delivers a Hash payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L485)
+ * [delivers a String ASCII-8BIT payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L522)
+ * [delivers a String UTF-8 payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L522)
+ * [delivers a Hash payload to the receiver](./spec/acceptance/realtime/message_spec.rb#L522)
* publishing on an unencrypted channel and subscribing on an encrypted channel with another client
- * [does not attempt to decrypt the message](./spec/acceptance/realtime/message_spec.rb#L504)
+ * [does not attempt to decrypt the message](./spec/acceptance/realtime/message_spec.rb#L543)
* publishing on an encrypted channel and subscribing on an unencrypted channel with another client
- * [delivers the message but still encrypted with a value in the #encoding attribute](./spec/acceptance/realtime/message_spec.rb#L522)
- * [emits a Cipher error on the channel](./spec/acceptance/realtime/message_spec.rb#L531)
+ * [delivers the message but still encrypted with a value in the #encoding attribute (#RTL7e)](./spec/acceptance/realtime/message_spec.rb#L561)
+ * [logs a Cipher error (#RTL7e)](./spec/acceptance/realtime/message_spec.rb#L572)
* publishing on an encrypted channel and subscribing with a different algorithm on another client
- * [delivers the message but still encrypted with the cipher detials in the #encoding attribute](./spec/acceptance/realtime/message_spec.rb#L553)
- * [emits a Cipher error on the channel](./spec/acceptance/realtime/message_spec.rb#L562)
+ * [delivers the message but still encrypted with the cipher detials in the #encoding attribute (#RTL7e)](./spec/acceptance/realtime/message_spec.rb#L592)
+ * [emits a Cipher error on the channel (#RTL7e)](./spec/acceptance/realtime/message_spec.rb#L601)
* publishing on an encrypted channel and subscribing with a different key on another client
- * [delivers the message but still encrypted with the cipher details in the #encoding attribute](./spec/acceptance/realtime/message_spec.rb#L584)
- * [emits a Cipher error on the channel](./spec/acceptance/realtime/message_spec.rb#L595)
+ * [delivers the message but still encrypted with the cipher details in the #encoding attribute](./spec/acceptance/realtime/message_spec.rb#L621)
+ * [emits a Cipher error on the channel](./spec/acceptance/realtime/message_spec.rb#L632)
* when message is published, the connection disconnects before the ACK is received, and the connection is resumed
- * [publishes the message again, later receives the ACK and only one message is ever received from Ably](./spec/acceptance/realtime/message_spec.rb#L616)
+ * [publishes the message again, later receives the ACK and only one message is ever received from Ably](./spec/acceptance/realtime/message_spec.rb#L651)
* when message is published, the connection disconnects before the ACK is received
* the connection is not resumed
- * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L659)
+ * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L694)
* the connection becomes suspended
- * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L685)
+ * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L720)
* the connection becomes failed
- * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L712)
+ * [calls the errback for all messages](./spec/acceptance/realtime/message_spec.rb#L747)
+ * message encoding interoperability
+ * over a JSON transport
+ * when decoding string
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L788)
+ * when encoding string
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L806)
+ * when decoding string
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L788)
+ * when encoding string
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L806)
+ * when decoding jsonObject
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L788)
+ * when encoding jsonObject
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L806)
+ * when decoding jsonArray
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L788)
+ * when encoding jsonArray
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L806)
+ * when decoding binary
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L788)
+ * when encoding binary
+ * [ensures that client libraries have compatible encoding and decoding using common fixtures](./spec/acceptance/realtime/message_spec.rb#L806)
+ * over a MsgPack transport
+ * when publishing a string using JSON protocol
+ * [receives the message over MsgPack and the data matches](./spec/acceptance/realtime/message_spec.rb#L840)
+ * when retrieving a string using JSON protocol
+ * [is compatible with a publishes using MsgPack](./spec/acceptance/realtime/message_spec.rb#L868)
+ * when publishing a string using JSON protocol
+ * [receives the message over MsgPack and the data matches](./spec/acceptance/realtime/message_spec.rb#L840)
+ * when retrieving a string using JSON protocol
+ * [is compatible with a publishes using MsgPack](./spec/acceptance/realtime/message_spec.rb#L868)
+ * when publishing a jsonObject using JSON protocol
+ * [receives the message over MsgPack and the data matches](./spec/acceptance/realtime/message_spec.rb#L840)
+ * when retrieving a jsonObject using JSON protocol
+ * [is compatible with a publishes using MsgPack](./spec/acceptance/realtime/message_spec.rb#L868)
+ * when publishing a jsonArray using JSON protocol
+ * [receives the message over MsgPack and the data matches](./spec/acceptance/realtime/message_spec.rb#L840)
+ * when retrieving a jsonArray using JSON protocol
+ * [is compatible with a publishes using MsgPack](./spec/acceptance/realtime/message_spec.rb#L868)
+ * when publishing a binary using JSON protocol
+ * [receives the message over MsgPack and the data matches](./spec/acceptance/realtime/message_spec.rb#L840)
+ * when retrieving a binary using JSON protocol
+ * [is compatible with a publishes using MsgPack](./spec/acceptance/realtime/message_spec.rb#L868)
### Ably::Realtime::Presence history
_(see [spec/acceptance/realtime/presence_history_spec.rb](./spec/acceptance/realtime/presence_history_spec.rb))_
* using JSON protocol
* [provides up to the moment presence history](./spec/acceptance/realtime/presence_history_spec.rb#L21)
* [ensures REST presence history message IDs match ProtocolMessage wrapped message and connection IDs via Realtime](./spec/acceptance/realtime/presence_history_spec.rb#L42)
* with option until_attach: true
* [retrieves all presence messages before channel was attached](./spec/acceptance/realtime/presence_history_spec.rb#L61)
- * [raises an exception unless state is attached](./spec/acceptance/realtime/presence_history_spec.rb#L97)
+ * [fails with an exception unless state is attached](./spec/acceptance/realtime/presence_history_spec.rb#L97)
* and two pages of messages
* [retrieves two pages of messages before channel was attached](./spec/acceptance/realtime/presence_history_spec.rb#L78)
### Ably::Realtime::Presence
_(see [spec/acceptance/realtime/presence_spec.rb](./spec/acceptance/realtime/presence_spec.rb))_
* using JSON protocol
* when attached (but not present) on a presence channel with an anonymous client (no client ID)
- * [maintains state as other clients enter and leave the channel](./spec/acceptance/realtime/presence_spec.rb#L412)
- * #sync_complete?
+ * [maintains state as other clients enter and leave the channel (#RTP2e)](./spec/acceptance/realtime/presence_spec.rb#L479)
+ * #sync_complete? and SYNC flags (#RTP1)
* when attaching to a channel without any members present
- * [is true and the presence channel is considered synced immediately](./spec/acceptance/realtime/presence_spec.rb#L488)
+ * [sync_complete? is true, there is no presence flag, and the presence channel is considered synced immediately (#RTP1)](./spec/acceptance/realtime/presence_spec.rb#L701)
* when attaching to a channel with members present
- * [is false and the presence channel will subsequently be synced](./spec/acceptance/realtime/presence_spec.rb#L497)
- * 250 existing (present) members on a channel (3 SYNC pages)
- * requires at least 3 SYNC ProtocolMessages
+ * [sync_complete? is false, there is a presence flag, and the presence channel is subsequently synced (#RTP1)](./spec/acceptance/realtime/presence_spec.rb#L722)
+ * 101 existing (present) members on a channel (2 SYNC pages)
+ * requiring at least 2 SYNC ProtocolMessages
* when a client attaches to the presence channel
- * [emits :present for each member](./spec/acceptance/realtime/presence_spec.rb#L533)
+ * [emits :present for each member](./spec/acceptance/realtime/presence_spec.rb#L771)
+ * and a member enters before the SYNC operation is complete
+ * [emits a :enter immediately and the member is :present once the sync is complete (#RTP2g)](./spec/acceptance/realtime/presence_spec.rb#L787)
* and a member leaves before the SYNC operation is complete
- * [emits :leave immediately as the member leaves](./spec/acceptance/realtime/presence_spec.rb#L547)
- * [ignores presence events with timestamps prior to the current :present event in the MembersMap](./spec/acceptance/realtime/presence_spec.rb#L588)
- * [does not emit :present after the :leave event has been emitted, and that member is not included in the list of members via #get with :wait_for_sync](./spec/acceptance/realtime/presence_spec.rb#L630)
+ * [emits :leave immediately as the member leaves and cleans up the ABSENT member after (#RTP2f, #RTP2g)](./spec/acceptance/realtime/presence_spec.rb#L824)
+ * [ignores presence events with timestamps / identifiers prior to the current :present event in the MembersMap (#RTP2c)](./spec/acceptance/realtime/presence_spec.rb#L872)
+ * [does not emit :present after the :leave event has been emitted, and that member is not included in the list of members via #get (#RTP2f)](./spec/acceptance/realtime/presence_spec.rb#L917)
* #get
- * with :wait_for_sync option set to true
- * [waits until sync is complete](./spec/acceptance/realtime/presence_spec.rb#L680)
* by default
- * [it does not wait for sync](./spec/acceptance/realtime/presence_spec.rb#L699)
+ * [waits until sync is complete (#RTP11c1)](./spec/acceptance/realtime/presence_spec.rb#L967)
+ * with :wait_for_sync option set to false (#RTP11c1)
+ * [it does not wait for sync](./spec/acceptance/realtime/presence_spec.rb#L986)
* state
* once opened
- * [once opened, enters the :left state if the channel detaches](./spec/acceptance/realtime/presence_spec.rb#L725)
+ * [once opened, enters the :left state if the channel detaches](./spec/acceptance/realtime/presence_spec.rb#L1012)
* #enter
* data attribute
* when provided as argument option to #enter
- * [changes to value provided in #leave](./spec/acceptance/realtime/presence_spec.rb#L750)
+ * [changes to value provided in #leave](./spec/acceptance/realtime/presence_spec.rb#L1037)
* message #connection_id
- * [matches the current client connection_id](./spec/acceptance/realtime/presence_spec.rb#L774)
+ * [matches the current client connection_id](./spec/acceptance/realtime/presence_spec.rb#L1061)
* without necessary capabilities to join presence
- * [calls the Deferrable errback on capabilities failure](./spec/acceptance/realtime/presence_spec.rb#L793)
+ * [calls the Deferrable errback on capabilities failure](./spec/acceptance/realtime/presence_spec.rb#L1080)
* it should behave like a public presence method
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L54)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L66)
- * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L77)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L63)
+ * [raise an exception if the channel becomes detached](./spec/acceptance/realtime/presence_spec.rb#L81)
+ * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [raise an exception if the channel becomes failed](./spec/acceptance/realtime/presence_spec.rb#L114)
+ * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L130)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* when :queue_messages client option is false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L89)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L142)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L152)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L110)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L167)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L123)
+ * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L182)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* #update
- * [without previous #enter automatically enters](./spec/acceptance/realtime/presence_spec.rb#L805)
- * [updates the data if :data argument provided](./spec/acceptance/realtime/presence_spec.rb#L830)
- * [updates the data to nil if :data argument is not provided (assumes nil value)](./spec/acceptance/realtime/presence_spec.rb#L840)
+ * [without previous #enter automatically enters](./spec/acceptance/realtime/presence_spec.rb#L1092)
+ * [updates the data if :data argument provided](./spec/acceptance/realtime/presence_spec.rb#L1117)
+ * [updates the data to nil if :data argument is not provided (assumes nil value)](./spec/acceptance/realtime/presence_spec.rb#L1127)
* when ENTERED
- * [has no effect on the state](./spec/acceptance/realtime/presence_spec.rb#L815)
+ * [has no effect on the state](./spec/acceptance/realtime/presence_spec.rb#L1102)
* it should behave like a public presence method
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L54)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L66)
- * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L77)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L63)
+ * [raise an exception if the channel becomes detached](./spec/acceptance/realtime/presence_spec.rb#L81)
+ * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [raise an exception if the channel becomes failed](./spec/acceptance/realtime/presence_spec.rb#L114)
+ * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L130)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* when :queue_messages client option is false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L89)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L142)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L152)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L110)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L167)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L123)
+ * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L182)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* #leave
- * [raises an exception if not entered](./spec/acceptance/realtime/presence_spec.rb#L914)
+ * [raises an exception if not entered](./spec/acceptance/realtime/presence_spec.rb#L1201)
* :data option
* when set to a string
- * [emits the new data for the leave event](./spec/acceptance/realtime/presence_spec.rb#L859)
+ * [emits the new data for the leave event](./spec/acceptance/realtime/presence_spec.rb#L1146)
* when set to nil
- * [emits the last value for the data attribute when leaving](./spec/acceptance/realtime/presence_spec.rb#L872)
+ * [emits the last value for the data attribute when leaving](./spec/acceptance/realtime/presence_spec.rb#L1159)
* when not passed as an argument (i.e. nil)
- * [emits the previous value for the data attribute when leaving](./spec/acceptance/realtime/presence_spec.rb#L885)
+ * [emits the previous value for the data attribute when leaving](./spec/acceptance/realtime/presence_spec.rb#L1172)
* and sync is complete
- * [does not cache members that have left](./spec/acceptance/realtime/presence_spec.rb#L898)
+ * [does not cache members that have left](./spec/acceptance/realtime/presence_spec.rb#L1185)
* it should behave like a public presence method
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* :left event
- * [emits the data defined in enter](./spec/acceptance/realtime/presence_spec.rb#L923)
- * [emits the data defined in update](./spec/acceptance/realtime/presence_spec.rb#L934)
+ * [emits the data defined in enter](./spec/acceptance/realtime/presence_spec.rb#L1210)
+ * [emits the data defined in update](./spec/acceptance/realtime/presence_spec.rb#L1221)
* entering/updating/leaving presence state on behalf of another client_id
* #enter_client
* multiple times on the same channel with different client_ids
- * [has no affect on the client's presence state and only enters on behalf of the provided client_id](./spec/acceptance/realtime/presence_spec.rb#L957)
- * [enters a channel and sets the data based on the provided :data option](./spec/acceptance/realtime/presence_spec.rb#L971)
+ * [has no affect on the client's presence state and only enters on behalf of the provided client_id](./spec/acceptance/realtime/presence_spec.rb#L1244)
+ * [enters a channel and sets the data based on the provided :data option](./spec/acceptance/realtime/presence_spec.rb#L1258)
* message #connection_id
- * [matches the current client connection_id](./spec/acceptance/realtime/presence_spec.rb#L990)
+ * [matches the current client connection_id](./spec/acceptance/realtime/presence_spec.rb#L1277)
* without necessary capabilities to enter on behalf of another client
- * [calls the Deferrable errback on capabilities failure](./spec/acceptance/realtime/presence_spec.rb#L1010)
+ * [calls the Deferrable errback on capabilities failure](./spec/acceptance/realtime/presence_spec.rb#L1297)
* it should behave like a public presence method
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L54)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L66)
- * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L77)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L63)
+ * [raise an exception if the channel becomes detached](./spec/acceptance/realtime/presence_spec.rb#L81)
+ * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [raise an exception if the channel becomes failed](./spec/acceptance/realtime/presence_spec.rb#L114)
+ * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L130)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* when :queue_messages client option is false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L89)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L142)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L152)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L110)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L167)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L123)
+ * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L182)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* it should behave like a presence on behalf of another client method
* :enter_client when authenticated with a wildcard client_id
* and a valid client_id
- * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L302)
+ * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L362)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L312)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L372)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L319)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L379)
+ * and a client_id that is not a string type
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
* :enter_client when authenticated with a valid client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L335)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L402)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L344)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L411)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L354)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L421)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L361)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L428)
* :enter_client when anonymous and no client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L377)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L444)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L453)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L396)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L463)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L403)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L470)
* #update_client
* multiple times on the same channel with different client_ids
- * [updates the data attribute for the member when :data option provided](./spec/acceptance/realtime/presence_spec.rb#L1024)
- * [updates the data attribute to null for the member when :data option is not provided (assumed null)](./spec/acceptance/realtime/presence_spec.rb#L1048)
- * [enters if not already entered](./spec/acceptance/realtime/presence_spec.rb#L1060)
+ * [updates the data attribute for the member when :data option provided](./spec/acceptance/realtime/presence_spec.rb#L1311)
+ * [updates the data attribute to null for the member when :data option is not provided (assumed null)](./spec/acceptance/realtime/presence_spec.rb#L1335)
+ * [enters if not already entered](./spec/acceptance/realtime/presence_spec.rb#L1347)
* it should behave like a public presence method
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L54)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L66)
- * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L77)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L63)
+ * [raise an exception if the channel becomes detached](./spec/acceptance/realtime/presence_spec.rb#L81)
+ * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [raise an exception if the channel becomes failed](./spec/acceptance/realtime/presence_spec.rb#L114)
+ * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L130)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* when :queue_messages client option is false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L89)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L142)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L152)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L110)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L167)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L123)
+ * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L182)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* it should behave like a presence on behalf of another client method
* :update_client when authenticated with a wildcard client_id
* and a valid client_id
- * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L302)
+ * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L362)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L312)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L372)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L319)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L379)
+ * and a client_id that is not a string type
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
* :update_client when authenticated with a valid client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L335)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L402)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L344)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L411)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L354)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L421)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L361)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L428)
* :update_client when anonymous and no client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L377)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L444)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L453)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L396)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L463)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L403)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L470)
* #leave_client
* leaves a channel
* multiple times on the same channel with different client_ids
- * [emits the :leave event for each client_id](./spec/acceptance/realtime/presence_spec.rb#L1090)
- * [succeeds if that client_id has not previously entered the channel](./spec/acceptance/realtime/presence_spec.rb#L1114)
+ * [emits the :leave event for each client_id](./spec/acceptance/realtime/presence_spec.rb#L1377)
+ * [succeeds if that client_id has not previously entered the channel](./spec/acceptance/realtime/presence_spec.rb#L1401)
* with a new value in :data option
- * [emits the leave event with the new data value](./spec/acceptance/realtime/presence_spec.rb#L1138)
+ * [emits the leave event with the new data value](./spec/acceptance/realtime/presence_spec.rb#L1425)
* with a nil value in :data option
- * [emits the leave event with the previous value as a convenience](./spec/acceptance/realtime/presence_spec.rb#L1151)
+ * [emits the leave event with the previous value as a convenience](./spec/acceptance/realtime/presence_spec.rb#L1438)
* with no :data option
- * [emits the leave event with the previous value as a convenience](./spec/acceptance/realtime/presence_spec.rb#L1164)
+ * [emits the leave event with the previous value as a convenience](./spec/acceptance/realtime/presence_spec.rb#L1451)
* it should behave like a public presence method
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L54)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L66)
- * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L77)
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L234)
- * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L241)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L249)
- * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L259)
+ * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L63)
+ * [raise an exception if the channel becomes detached](./spec/acceptance/realtime/presence_spec.rb#L81)
+ * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [raise an exception if the channel becomes failed](./spec/acceptance/realtime/presence_spec.rb#L114)
+ * [implicitly attaches the channel](./spec/acceptance/realtime/presence_spec.rb#L130)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L293)
+ * [allows a block to be passed in that is executed upon success](./spec/acceptance/realtime/presence_spec.rb#L300)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L308)
+ * [catches exceptions in the provided method block and logs them to the logger](./spec/acceptance/realtime/presence_spec.rb#L318)
* when :queue_messages client option is false
* and connection state initialized
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L89)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L142)
* and connection state connecting
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L97)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L152)
* and connection state disconnected
- * [raises an exception](./spec/acceptance/realtime/presence_spec.rb#L110)
+ * [fails the deferrable](./spec/acceptance/realtime/presence_spec.rb#L167)
* and connection state connected
- * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L123)
+ * [publishes the message](./spec/acceptance/realtime/presence_spec.rb#L182)
* with supported data payload content type
* JSON Object (Hash)
- * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L150)
+ * [is encoded and decoded to the same hash](./spec/acceptance/realtime/presence_spec.rb#L209)
* JSON Array
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L160)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L219)
* String
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L170)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L229)
* Binary
- * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L180)
+ * [is encoded and decoded to the same Array](./spec/acceptance/realtime/presence_spec.rb#L239)
* with unsupported data payload content type
* Integer
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L200)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L259)
* Float
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L209)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L268)
* Boolean
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L218)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L277)
* False
- * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L227)
+ * [raises an UnsupportedDataType 40011 exception](./spec/acceptance/realtime/presence_spec.rb#L286)
* if connection fails before success
- * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L271)
+ * [calls the Deferrable errback if channel is detached](./spec/acceptance/realtime/presence_spec.rb#L331)
* it should behave like a presence on behalf of another client method
* :leave_client when authenticated with a wildcard client_id
* and a valid client_id
- * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L302)
+ * [succeeds](./spec/acceptance/realtime/presence_spec.rb#L362)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L312)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L372)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L319)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L379)
+ * and a client_id that is not a string type
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
* :leave_client when authenticated with a valid client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L335)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L402)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L344)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L411)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L354)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L421)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L361)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L428)
* :leave_client when anonymous and no client_id
* and another invalid client_id
* before authentication
- * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L377)
+ * [allows the operation and then Ably rejects the operation](./spec/acceptance/realtime/presence_spec.rb#L444)
* after authentication
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L386)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L453)
* and a wildcard client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L396)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L463)
* and an empty client_id
- * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L403)
+ * [throws an exception](./spec/acceptance/realtime/presence_spec.rb#L470)
* #get
- * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L1183)
- * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L1188)
- * [catches exceptions in the provided method block](./spec/acceptance/realtime/presence_spec.rb#L1195)
- * [raise an exception if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L1202)
- * [raise an exception if the channel is failed](./spec/acceptance/realtime/presence_spec.rb#L1212)
- * [returns the current members on the channel](./spec/acceptance/realtime/presence_spec.rb#L1292)
- * [filters by connection_id option if provided](./spec/acceptance/realtime/presence_spec.rb#L1307)
- * [filters by client_id option if provided](./spec/acceptance/realtime/presence_spec.rb#L1329)
- * [does not wait for SYNC to complete if :wait_for_sync option is false](./spec/acceptance/realtime/presence_spec.rb#L1353)
+ * [returns a SafeDeferrable that catches exceptions in callbacks and logs them](./spec/acceptance/realtime/presence_spec.rb#L1470)
+ * [calls the Deferrable callback on success](./spec/acceptance/realtime/presence_spec.rb#L1475)
+ * [catches exceptions in the provided method block](./spec/acceptance/realtime/presence_spec.rb#L1482)
+ * [implicitly attaches the channel (#RTP11b)](./spec/acceptance/realtime/presence_spec.rb#L1490)
+ * [fails if the connection is DETACHED (#RTP11b)](./spec/acceptance/realtime/presence_spec.rb#L1524)
+ * [fails if the connection is FAILED (#RTP11b)](./spec/acceptance/realtime/presence_spec.rb#L1539)
+ * [returns the current members on the channel (#RTP11a)](./spec/acceptance/realtime/presence_spec.rb#L1623)
+ * [filters by connection_id option if provided (#RTP11c3)](./spec/acceptance/realtime/presence_spec.rb#L1638)
+ * [filters by client_id option if provided (#RTP11c2)](./spec/acceptance/realtime/presence_spec.rb#L1660)
+ * [does not wait for SYNC to complete if :wait_for_sync option is false (#RTP11c1)](./spec/acceptance/realtime/presence_spec.rb#L1684)
+ * [returns the list of members and waits for SYNC to complete by default (#RTP11a)](./spec/acceptance/realtime/presence_spec.rb#L1693)
+ * when the channel is SUSPENDED
+ * with wait_for_sync: true
+ * [returns the current PresenceMap and does not wait for the channel to change to the ATTACHED state (#RTP11d)](./spec/acceptance/realtime/presence_spec.rb#L1500)
+ * with wait_for_sync: false
+ * [returns the current PresenceMap and does not wait for the channel to change to the ATTACHED state (#RTP11d)](./spec/acceptance/realtime/presence_spec.rb#L1512)
* during a sync
* when :wait_for_sync is true
- * [fails if the connection fails](./spec/acceptance/realtime/presence_spec.rb#L1243)
- * [fails if the channel is detached](./spec/acceptance/realtime/presence_spec.rb#L1266)
+ * [fails if the connection becomes FAILED (#RTP11b)](./spec/acceptance/realtime/presence_spec.rb#L1576)
+ * [fails if the channel becomes detached (#RTP11b)](./spec/acceptance/realtime/presence_spec.rb#L1599)
* when a member enters and then leaves
- * [has no members](./spec/acceptance/realtime/presence_spec.rb#L1363)
+ * [has no members](./spec/acceptance/realtime/presence_spec.rb#L1703)
+ * when a member enters and the presence map is updated
+ * [adds the member as being :present (#RTP2d)](./spec/acceptance/realtime/presence_spec.rb#L1716)
* with lots of members on different clients
- * [returns a complete list of members on all clients](./spec/acceptance/realtime/presence_spec.rb#L1382)
+ * [returns a complete list of members on all clients](./spec/acceptance/realtime/presence_spec.rb#L1734)
* #subscribe
- * [implicitly attaches](./spec/acceptance/realtime/presence_spec.rb#L1457)
+ * [implicitly attaches](./spec/acceptance/realtime/presence_spec.rb#L1809)
* with no arguments
- * [calls the callback for all presence events](./spec/acceptance/realtime/presence_spec.rb#L1418)
+ * [calls the callback for all presence events](./spec/acceptance/realtime/presence_spec.rb#L1770)
* with event name
- * [calls the callback for specified presence event](./spec/acceptance/realtime/presence_spec.rb#L1438)
+ * [calls the callback for specified presence event](./spec/acceptance/realtime/presence_spec.rb#L1790)
+ * with a callback that raises an exception
+ * [logs the error and continues](./spec/acceptance/realtime/presence_spec.rb#L1822)
* #unsubscribe
* with no arguments
- * [removes the callback for all presence events](./spec/acceptance/realtime/presence_spec.rb#L1470)
+ * [removes the callback for all presence events](./spec/acceptance/realtime/presence_spec.rb#L1843)
* with event name
- * [removes the callback for specified presence event](./spec/acceptance/realtime/presence_spec.rb#L1488)
+ * [removes the callback for specified presence event](./spec/acceptance/realtime/presence_spec.rb#L1861)
* REST #get
- * [returns current members](./spec/acceptance/realtime/presence_spec.rb#L1507)
- * [returns no members once left](./spec/acceptance/realtime/presence_spec.rb#L1520)
+ * [returns current members](./spec/acceptance/realtime/presence_spec.rb#L1880)
+ * [returns no members once left](./spec/acceptance/realtime/presence_spec.rb#L1893)
* client_id with ASCII_8BIT
* in connection set up
- * [is converted into UTF_8](./spec/acceptance/realtime/presence_spec.rb#L1537)
+ * [is converted into UTF_8](./spec/acceptance/realtime/presence_spec.rb#L1910)
* in channel options
- * [is converted into UTF_8](./spec/acceptance/realtime/presence_spec.rb#L1550)
+ * [is converted into UTF_8](./spec/acceptance/realtime/presence_spec.rb#L1923)
* encoding and decoding of presence message data
- * [encrypts presence message data](./spec/acceptance/realtime/presence_spec.rb#L1576)
+ * [encrypts presence message data](./spec/acceptance/realtime/presence_spec.rb#L1949)
* #subscribe
- * [emits decrypted enter events](./spec/acceptance/realtime/presence_spec.rb#L1595)
- * [emits decrypted update events](./spec/acceptance/realtime/presence_spec.rb#L1607)
- * [emits previously set data for leave events](./spec/acceptance/realtime/presence_spec.rb#L1621)
+ * [emits decrypted enter events](./spec/acceptance/realtime/presence_spec.rb#L1968)
+ * [emits decrypted update events](./spec/acceptance/realtime/presence_spec.rb#L1980)
+ * [emits previously set data for leave events](./spec/acceptance/realtime/presence_spec.rb#L1994)
* #get
- * [returns a list of members with decrypted data](./spec/acceptance/realtime/presence_spec.rb#L1637)
+ * [returns a list of members with decrypted data](./spec/acceptance/realtime/presence_spec.rb#L2010)
* REST #get
- * [returns a list of members with decrypted data](./spec/acceptance/realtime/presence_spec.rb#L1650)
+ * [returns a list of members with decrypted data](./spec/acceptance/realtime/presence_spec.rb#L2023)
* when cipher settings do not match publisher
- * [delivers an unencoded presence message left with encoding value](./spec/acceptance/realtime/presence_spec.rb#L1665)
- * [emits an error when cipher does not match and presence data cannot be decoded](./spec/acceptance/realtime/presence_spec.rb#L1678)
+ * [delivers an unencoded presence message left with encoding value](./spec/acceptance/realtime/presence_spec.rb#L2038)
+ * [emits an error when cipher does not match and presence data cannot be decoded](./spec/acceptance/realtime/presence_spec.rb#L2051)
* leaving
- * [expect :left event once underlying connection is closed](./spec/acceptance/realtime/presence_spec.rb#L1695)
- * [expect :left event with client data from enter event](./spec/acceptance/realtime/presence_spec.rb#L1705)
+ * [expect :left event once underlying connection is closed](./spec/acceptance/realtime/presence_spec.rb#L2067)
+ * [expect :left event with client data from enter event](./spec/acceptance/realtime/presence_spec.rb#L2077)
* connection failure mid-way through a large member sync
- * [resumes the SYNC operation](./spec/acceptance/realtime/presence_spec.rb#L1724)
+ * [resumes the SYNC operation (#RTP3)](./spec/acceptance/realtime/presence_spec.rb#L2096)
+ * server-initiated sync
+ * with multiple SYNC pages
+ * [is initiated with a SYNC message and completed with a later SYNC message with no cursor value part of the channelSerial (#RTP18a, #RTP18b) ](./spec/acceptance/realtime/presence_spec.rb#L2134)
+ * with a single SYNC page
+ * [is initiated and completed with a single SYNC message (and no channelSerial) (#RTP18a, #RTP18c) ](./spec/acceptance/realtime/presence_spec.rb#L2185)
+ * when members exist in the PresenceMap before a SYNC completes
+ * [removes the members that are no longer present (#RTP19)](./spec/acceptance/realtime/presence_spec.rb#L2233)
+ * when the client does not have presence subscribe privileges but is present on the channel
+ * PENDING: *[receives presence updates for all presence events generated by the current connection and the presence map is kept up to date (#RTP17a)](./spec/acceptance/realtime/presence_spec.rb#L2291)*
+ * local PresenceMap for presence members entered by this client
+ * [maintains a copy of the member map for any member that shares this connection's connection ID (#RTP17)](./spec/acceptance/realtime/presence_spec.rb#L2328)
+ * when a channel becomes attached again
+ * and the resume flag is true
+ * and the presence flag is false
+ * [does not send any presence events as the PresenceMap is in sync (#RTP5c1)](./spec/acceptance/realtime/presence_spec.rb#L2368)
+ * and the presence flag is true
+ * and following the SYNC all local MemberMap members are present in the PresenceMap
+ * [does nothing as MemberMap is in sync (#RTP5c2)](./spec/acceptance/realtime/presence_spec.rb#L2395)
+ * and following the SYNC a local MemberMap member is not present in the PresenceMap
+ * [re-enters the missing members automatically (#RTP5c2)](./spec/acceptance/realtime/presence_spec.rb#L2431)
+ * and the resume flag is false
+ * and the presence flag is false
+ * [immediately resends all local presence members (#RTP5c2, #RTP19a)](./spec/acceptance/realtime/presence_spec.rb#L2511)
+ * when re-entering a client automatically, if the re-enter fails for any reason
+ * [should emit an ErrorInfo with error code 91004 (#RTP5c3)](./spec/acceptance/realtime/presence_spec.rb#L2559)
+ * channel state side effects
+ * channel transitions to the FAILED state
+ * [clears the PresenceMap and local member map copy and does not emit any presence events (#RTP5a)](./spec/acceptance/realtime/presence_spec.rb#L2616)
+ * channel transitions to the DETACHED state
+ * [clears the PresenceMap and local member map copy and does not emit any presence events (#RTP5a)](./spec/acceptance/realtime/presence_spec.rb#L2640)
+ * channel transitions to the SUSPENDED state
+ * [maintains the PresenceMap and only publishes presence event changes since the last attached state (#RTP5f)](./spec/acceptance/realtime/presence_spec.rb#L2673)
### Ably::Realtime::Client#stats
_(see [spec/acceptance/realtime/stats_spec.rb](./spec/acceptance/realtime/stats_spec.rb))_
* using JSON protocol
* fetching stats
@@ -1214,11 +1556,11 @@
* with :key option
* [key_name is used in request and signing uses key_secret](./spec/acceptance/rest/auth_spec.rb#L147)
* with :key_name & :key_secret options
* [key_name is used in request and signing uses key_secret](./spec/acceptance/rest/auth_spec.rb#L177)
* with :query_time option
- * [queries the server for the time](./spec/acceptance/rest/auth_spec.rb#L185)
+ * [queries the server for the time (#RSA10k)](./spec/acceptance/rest/auth_spec.rb#L185)
* without :query_time option
* [does not query the server for the time](./spec/acceptance/rest/auth_spec.rb#L194)
* with :auth_url option merging
* with existing configured auth options
* using unspecified :auth_method
@@ -1252,127 +1594,152 @@
* [raises InvalidResponseBody](./spec/acceptance/rest/auth_spec.rb#L417)
* with a Proc for the :auth_callback option
* that returns a TokenRequest
* [calls the Proc with token_params when authenticating to obtain the request token](./spec/acceptance/rest/auth_spec.rb#L440)
* [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L444)
- * when authorised
+ * when authorized
* [sets Auth#client_id to the new token's client_id](./spec/acceptance/rest/auth_spec.rb#L451)
* [sets Client#client_id to the new token's client_id](./spec/acceptance/rest/auth_spec.rb#L455)
* that returns a TokenDetails JSON object
* [calls the Proc when authenticating to obtain the request token](./spec/acceptance/rest/auth_spec.rb#L489)
* [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L494)
- * when authorised
+ * when authorized
* [sets Auth#client_id to the new token's client_id](./spec/acceptance/rest/auth_spec.rb#L506)
* [sets Client#client_id to the new token's client_id](./spec/acceptance/rest/auth_spec.rb#L510)
* that returns a TokenDetails object
* [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L525)
* that returns a Token string
* [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L541)
* with auth_option :client_id
* [returns a token with the client_id](./spec/acceptance/rest/auth_spec.rb#L571)
* with token_param :client_id
* [returns a token with the client_id](./spec/acceptance/rest/auth_spec.rb#L580)
- * before #authorise has been called
+ * before #authorize has been called
* [has no current_token_details](./spec/acceptance/rest/auth_spec.rb#L587)
- * #authorise
- * [updates the persisted token params that are then used for subsequent authorise requests](./spec/acceptance/rest/auth_spec.rb#L637)
- * [updates the persisted token params that are then used for subsequent authorise requests](./spec/acceptance/rest/auth_spec.rb#L643)
+ * #authorize (#RSA10, #RSA10j)
+ * [updates the persisted token params that are then used for subsequent authorize requests](./spec/acceptance/rest/auth_spec.rb#L754)
+ * [updates the persisted auth options that are then used for subsequent authorize requests](./spec/acceptance/rest/auth_spec.rb#L760)
* when called for the first time since the client has been instantiated
* [passes all auth_options and token_params to #request_token](./spec/acceptance/rest/auth_spec.rb#L601)
* [returns a valid token](./spec/acceptance/rest/auth_spec.rb#L606)
- * [issues a new token if option :force => true](./spec/acceptance/rest/auth_spec.rb#L610)
+ * [issues a new token every time (#RSA10a)](./spec/acceptance/rest/auth_spec.rb#L610)
+ * query_time: true with authorize
+ * [only queries the server time once and then works out the offset, query_time option is never persisted (#RSA10k)](./spec/acceptance/rest/auth_spec.rb#L624)
+ * query_time: true ClientOption when instanced
+ * [only queries the server time once and then works out the offset, query_time option is never persisted (#RSA10k)](./spec/acceptance/rest/auth_spec.rb#L644)
+ * TokenParams argument
+ * [has no effect on the defaults when null and TokenParam defaults remain the same](./spec/acceptance/rest/auth_spec.rb#L661)
+ * [updates defaults when present and all previous configured TokenParams are discarded (#RSA10g)](./spec/acceptance/rest/auth_spec.rb#L668)
+ * [updates Auth#token_params attribute with an immutable hash](./spec/acceptance/rest/auth_spec.rb#L676)
+ * [uses TokenParams#timestamp for this request but obtains a new timestamp for subsequence requests (#RSA10g)](./spec/acceptance/rest/auth_spec.rb#L681)
+ * AuthOptions argument
+ * [has no effect on the defaults when null and AuthOptions defaults remain the same](./spec/acceptance/rest/auth_spec.rb#L706)
+ * [updates defaults when present and all previous configured AuthOptions are discarded (#RSA10g)](./spec/acceptance/rest/auth_spec.rb#L712)
+ * [updates Auth#options attribute with an immutable hash](./spec/acceptance/rest/auth_spec.rb#L719)
+ * [uses AuthOptions#query_time for this request and will not query_time for subsequent requests (#RSA10g)](./spec/acceptance/rest/auth_spec.rb#L724)
+ * [uses AuthOptions#query_time for this request and will query_time again if provided subsequently](./spec/acceptance/rest/auth_spec.rb#L730)
* with previous authorisation
- * [does not request a token if current_token_details has not expired](./spec/acceptance/rest/auth_spec.rb#L621)
- * [requests a new token if token is expired](./spec/acceptance/rest/auth_spec.rb#L626)
- * [issues a new token if option :force => true](./spec/acceptance/rest/auth_spec.rb#L632)
+ * [requests a new token if token is expired](./spec/acceptance/rest/auth_spec.rb#L743)
+ * [issues a new token every time #authorize is called](./spec/acceptance/rest/auth_spec.rb#L749)
* with a Proc for the :auth_callback option
- * [calls the Proc](./spec/acceptance/rest/auth_spec.rb#L659)
- * [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L663)
+ * [calls the Proc](./spec/acceptance/rest/auth_spec.rb#L776)
+ * [uses the token request returned from the callback when requesting a new token](./spec/acceptance/rest/auth_spec.rb#L780)
* for every subsequent #request_token
* without a :auth_callback Proc
- * [calls the originally provided block](./spec/acceptance/rest/auth_spec.rb#L669)
+ * [calls the originally provided block](./spec/acceptance/rest/auth_spec.rb#L786)
* with a provided block
- * [does not call the originally provided Proc and calls the new #request_token :auth_callback Proc](./spec/acceptance/rest/auth_spec.rb#L676)
+ * [does not call the originally provided Proc and calls the new #request_token :auth_callback Proc](./spec/acceptance/rest/auth_spec.rb#L793)
* with an explicit token string that expires
* and a Proc for the :auth_callback option to provide a means to renew the token
- * [calls the Proc once the token has expired and the new token is used](./spec/acceptance/rest/auth_spec.rb#L703)
+ * [calls the Proc once the token has expired and the new token is used](./spec/acceptance/rest/auth_spec.rb#L820)
* with an explicit ClientOptions client_id
* and an incompatible client_id in a TokenDetails object passed to the auth callback
- * [rejects a TokenDetails object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L721)
+ * [rejects a TokenDetails object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L838)
* and an incompatible client_id in a TokenRequest object passed to the auth callback and raises an exception
- * [rejects a TokenRequests object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L729)
+ * [rejects a TokenRequests object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L846)
* and a token string without any retrievable client_id
- * [rejects a TokenRequests object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L737)
+ * [rejects a TokenRequests object with an incompatible client_id and raises an exception](./spec/acceptance/rest/auth_spec.rb#L854)
* #create_token_request
- * [returns a TokenRequest object](./spec/acceptance/rest/auth_spec.rb#L752)
- * [returns a TokenRequest that can be passed to a client that can use it for authentication without an API key](./spec/acceptance/rest/auth_spec.rb#L756)
- * [uses the key name from the client](./spec/acceptance/rest/auth_spec.rb#L763)
- * [uses the default TTL](./spec/acceptance/rest/auth_spec.rb#L767)
- * [uses the default capability](./spec/acceptance/rest/auth_spec.rb#L780)
+ * [returns a TokenRequest object](./spec/acceptance/rest/auth_spec.rb#L869)
+ * [returns a TokenRequest that can be passed to a client that can use it for authentication without an API key](./spec/acceptance/rest/auth_spec.rb#L873)
+ * [uses the key name from the client](./spec/acceptance/rest/auth_spec.rb#L880)
+ * [uses the default TTL](./spec/acceptance/rest/auth_spec.rb#L884)
+ * [uses the default capability](./spec/acceptance/rest/auth_spec.rb#L897)
* with a :ttl option below the Token expiry buffer that ensures tokens are renewed 15s before they expire as they are considered expired
- * [uses the Token expiry buffer default + 10s to allow for a token request in flight](./spec/acceptance/rest/auth_spec.rb#L774)
+ * [uses the Token expiry buffer default + 10s to allow for a token request in flight](./spec/acceptance/rest/auth_spec.rb#L891)
* the nonce
- * [is unique for every request](./spec/acceptance/rest/auth_spec.rb#L785)
- * [is at least 16 characters](./spec/acceptance/rest/auth_spec.rb#L790)
+ * [is unique for every request](./spec/acceptance/rest/auth_spec.rb#L902)
+ * [is at least 16 characters](./spec/acceptance/rest/auth_spec.rb#L907)
* with token param :ttl
- * [overrides default](./spec/acceptance/rest/auth_spec.rb#L801)
+ * [overrides default](./spec/acceptance/rest/auth_spec.rb#L918)
* with token param :nonce
- * [overrides default](./spec/acceptance/rest/auth_spec.rb#L801)
+ * [overrides default](./spec/acceptance/rest/auth_spec.rb#L918)
* with token param :client_id
- * [overrides default](./spec/acceptance/rest/auth_spec.rb#L801)
+ * [overrides default](./spec/acceptance/rest/auth_spec.rb#L918)
* when specifying capability
- * [overrides the default](./spec/acceptance/rest/auth_spec.rb#L812)
- * [uses these capabilities when Ably issues an actual token](./spec/acceptance/rest/auth_spec.rb#L816)
+ * [overrides the default](./spec/acceptance/rest/auth_spec.rb#L929)
+ * [uses these capabilities when Ably issues an actual token](./spec/acceptance/rest/auth_spec.rb#L933)
* with additional invalid attributes
- * [are ignored](./spec/acceptance/rest/auth_spec.rb#L826)
+ * [are ignored](./spec/acceptance/rest/auth_spec.rb#L943)
* when required fields are missing
- * [should raise an exception if key secret is missing](./spec/acceptance/rest/auth_spec.rb#L837)
- * [should raise an exception if key name is missing](./spec/acceptance/rest/auth_spec.rb#L841)
+ * [should raise an exception if key secret is missing](./spec/acceptance/rest/auth_spec.rb#L954)
+ * [should raise an exception if key name is missing](./spec/acceptance/rest/auth_spec.rb#L958)
* timestamp attribute
- * [is a Time object in Ruby and is set to the local time](./spec/acceptance/rest/auth_spec.rb#L868)
+ * [is a Time object in Ruby and is set to the local time](./spec/acceptance/rest/auth_spec.rb#L985)
* with :query_time auth_option
- * [queries the server for the timestamp](./spec/acceptance/rest/auth_spec.rb#L853)
+ * [queries the server for the timestamp](./spec/acceptance/rest/auth_spec.rb#L970)
* with :timestamp option
- * [uses the provided timestamp in the token request](./spec/acceptance/rest/auth_spec.rb#L863)
+ * [uses the provided timestamp in the token request](./spec/acceptance/rest/auth_spec.rb#L980)
* signing
- * [generates a valid HMAC](./spec/acceptance/rest/auth_spec.rb#L892)
+ * [generates a valid HMAC](./spec/acceptance/rest/auth_spec.rb#L1009)
+ * lexicographic ordering of channels and operations
+ * [HMAC is lexicographic ordered and thus the HMAC is identical](./spec/acceptance/rest/auth_spec.rb#L1036)
+ * [is valid when used for authentication](./spec/acceptance/rest/auth_spec.rb#L1042)
* using token authentication
* with :token option
- * [authenticates successfully using the provided :token](./spec/acceptance/rest/auth_spec.rb#L915)
- * [disallows publishing on unspecified capability channels](./spec/acceptance/rest/auth_spec.rb#L919)
- * [fails if timestamp is invalid](./spec/acceptance/rest/auth_spec.rb#L927)
- * [cannot be renewed automatically](./spec/acceptance/rest/auth_spec.rb#L935)
+ * [authenticates successfully using the provided :token](./spec/acceptance/rest/auth_spec.rb#L1069)
+ * [disallows publishing on unspecified capability channels](./spec/acceptance/rest/auth_spec.rb#L1073)
+ * [fails if timestamp is invalid](./spec/acceptance/rest/auth_spec.rb#L1081)
+ * [cannot be renewed automatically](./spec/acceptance/rest/auth_spec.rb#L1089)
+ * and the token expires
+ * [should indicate an error and not retry the request (#RSA4a)](./spec/acceptance/rest/auth_spec.rb#L1123)
* when implicit as a result of using :client_id
* and requests to the Ably server are mocked
- * [will send a token request to the server](./spec/acceptance/rest/auth_spec.rb#L963)
+ * [will send a token request to the server](./spec/acceptance/rest/auth_spec.rb#L1153)
* a token is created
- * [before a request is made](./spec/acceptance/rest/auth_spec.rb#L972)
- * [when a message is published](./spec/acceptance/rest/auth_spec.rb#L976)
- * [with capability and TTL defaults](./spec/acceptance/rest/auth_spec.rb#L980)
- * [#client_id contains the client_id](./spec/acceptance/rest/auth_spec.rb#L991)
+ * [before a request is made](./spec/acceptance/rest/auth_spec.rb#L1162)
+ * [when a message is published](./spec/acceptance/rest/auth_spec.rb#L1166)
+ * [with capability and TTL defaults](./spec/acceptance/rest/auth_spec.rb#L1170)
+ * [#client_id contains the client_id](./spec/acceptance/rest/auth_spec.rb#L1181)
+ * when token expires
+ * [automatically renews the token (#RSA4b)](./spec/acceptance/rest/auth_spec.rb#L1210)
+ * [fails if the token renewal fails (#RSA4b)](./spec/acceptance/rest/auth_spec.rb#L1220)
* when :client_id is provided in a token
- * [#client_id contains the client_id](./spec/acceptance/rest/auth_spec.rb#L1006)
+ * [#client_id contains the client_id](./spec/acceptance/rest/auth_spec.rb#L1244)
* #client_id_validated?
* when using basic auth
- * [is false as basic auth users do not have an identity](./spec/acceptance/rest/auth_spec.rb#L1018)
+ * [is false as basic auth users do not have an identity](./spec/acceptance/rest/auth_spec.rb#L1256)
* when using a token auth string for a token with a client_id
- * [is false as identification is not possible from an opaque token string](./spec/acceptance/rest/auth_spec.rb#L1026)
+ * [is false as identification is not possible from an opaque token string](./spec/acceptance/rest/auth_spec.rb#L1264)
* when using a token
* with a client_id
- * [is true](./spec/acceptance/rest/auth_spec.rb#L1035)
+ * [is true](./spec/acceptance/rest/auth_spec.rb#L1273)
* with no client_id (anonymous)
- * [is true](./spec/acceptance/rest/auth_spec.rb#L1043)
+ * [is true](./spec/acceptance/rest/auth_spec.rb#L1281)
* with a wildcard client_id (anonymous)
- * [is false](./spec/acceptance/rest/auth_spec.rb#L1051)
+ * [is false](./spec/acceptance/rest/auth_spec.rb#L1289)
* when using a token request with a client_id
- * [is not true as identification is not confirmed until authenticated](./spec/acceptance/rest/auth_spec.rb#L1060)
+ * [is not true as identification is not confirmed until authenticated](./spec/acceptance/rest/auth_spec.rb#L1298)
* after authentication
- * [is true as identification is completed during implicit authentication](./spec/acceptance/rest/auth_spec.rb#L1067)
+ * [is true as identification is completed during implicit authentication](./spec/acceptance/rest/auth_spec.rb#L1305)
* when using a :key and basic auth
- * [#using_token_auth? is false](./spec/acceptance/rest/auth_spec.rb#L1075)
- * [#key attribute contains the key string](./spec/acceptance/rest/auth_spec.rb#L1079)
- * [#using_basic_auth? is true](./spec/acceptance/rest/auth_spec.rb#L1083)
+ * [#using_token_auth? is false](./spec/acceptance/rest/auth_spec.rb#L1313)
+ * [#key attribute contains the key string](./spec/acceptance/rest/auth_spec.rb#L1317)
+ * [#using_basic_auth? is true](./spec/acceptance/rest/auth_spec.rb#L1321)
+ * deprecated #authorise
+ * [logs a deprecation warning (#RSA10l)](./spec/acceptance/rest/auth_spec.rb#L1357)
+ * [returns a valid token (#RSA10l)](./spec/acceptance/rest/auth_spec.rb#L1362)
### Ably::Rest
_(see [spec/acceptance/rest/base_spec.rb](./spec/acceptance/rest/base_spec.rb))_
* transport protocol
* when protocol is not defined it defaults to :msgpack
@@ -1469,22 +1836,22 @@
* limit
* [defaults to 100](./spec/acceptance/rest/channel_spec.rb#L349)
* #history option
* :start
* with milliseconds since epoch value
- * [uses this value in the history request](./spec/acceptance/rest/channel_spec.rb#L392)
+ * [uses this value in the history request](./spec/acceptance/rest/channel_spec.rb#L389)
* with a Time object value
- * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/channel_spec.rb#L402)
+ * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/channel_spec.rb#L399)
* :end
* with milliseconds since epoch value
- * [uses this value in the history request](./spec/acceptance/rest/channel_spec.rb#L392)
+ * [uses this value in the history request](./spec/acceptance/rest/channel_spec.rb#L389)
* with a Time object value
- * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/channel_spec.rb#L402)
+ * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/channel_spec.rb#L399)
* when argument start is after end
- * [should raise an exception](./spec/acceptance/rest/channel_spec.rb#L412)
+ * [should raise an exception](./spec/acceptance/rest/channel_spec.rb#L409)
* #presence
- * [returns a REST Presence object](./spec/acceptance/rest/channel_spec.rb#L422)
+ * [returns a REST Presence object](./spec/acceptance/rest/channel_spec.rb#L419)
### Ably::Rest::Channels
_(see [spec/acceptance/rest/channels_spec.rb](./spec/acceptance/rest/channels_spec.rb))_
* using JSON protocol
* using shortcut method #channel on the client object
@@ -1507,98 +1874,136 @@
### Ably::Rest::Client
_(see [spec/acceptance/rest/client_spec.rb](./spec/acceptance/rest/client_spec.rb))_
* using JSON protocol
* #initialize
* with only an API key
- * [uses basic authentication](./spec/acceptance/rest/client_spec.rb#L24)
+ * [uses basic authentication](./spec/acceptance/rest/client_spec.rb#L25)
* with an explicit string :token
- * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L32)
+ * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L33)
* with :use_token_auth set to true
- * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L40)
+ * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L41)
* with a :client_id configured
- * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L48)
+ * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L49)
+ * with a non string :client_id
+ * [raises an ArgumentError](./spec/acceptance/rest/client_spec.rb#L57)
* with an invalid wildcard "*" :client_id
- * [raises an exception](./spec/acceptance/rest/client_spec.rb#L54)
+ * [raises an exception](./spec/acceptance/rest/client_spec.rb#L63)
* with an :auth_callback Proc
- * [calls the auth Proc to get a new token](./spec/acceptance/rest/client_spec.rb#L62)
- * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L67)
+ * [calls the auth Proc to get a new token](./spec/acceptance/rest/client_spec.rb#L71)
+ * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L76)
+ * with :default_token_params
+ * [overides the default token params (#TO3j11)](./spec/acceptance/rest/client_spec.rb#L90)
* with an :auth_callback Proc (clientId provided in library options instead of as a token_request param)
- * [correctly sets the clientId on the token](./spec/acceptance/rest/client_spec.rb#L76)
+ * [correctly sets the clientId on the token](./spec/acceptance/rest/client_spec.rb#L100)
* with an auth URL
- * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L86)
+ * [uses token authentication](./spec/acceptance/rest/client_spec.rb#L110)
* before any REST request
- * [sends an HTTP request to the provided auth URL to get a new token](./spec/acceptance/rest/client_spec.rb#L97)
+ * [sends an HTTP request to the provided auth URL to get a new token](./spec/acceptance/rest/client_spec.rb#L121)
* auth headers
* with basic auth
- * [sends the API key in authentication part of the secure URL (the Authorization: Basic header is not used with the Faraday HTTP library by default)](./spec/acceptance/rest/client_spec.rb#L117)
+ * [sends the API key in authentication part of the secure URL (the Authorization: Basic header is not used with the Faraday HTTP library by default)](./spec/acceptance/rest/client_spec.rb#L141)
* with token auth
* without specifying protocol
- * [sends the token string over HTTPS in the Authorization Bearer header with Base64 encoding](./spec/acceptance/rest/client_spec.rb#L136)
+ * [sends the token string over HTTPS in the Authorization Bearer header with Base64 encoding](./spec/acceptance/rest/client_spec.rb#L160)
* when setting constructor ClientOption :tls to false
- * [sends the token string over HTTP in the Authorization Bearer header with Base64 encoding](./spec/acceptance/rest/client_spec.rb#L146)
+ * [sends the token string over HTTP in the Authorization Bearer header with Base64 encoding](./spec/acceptance/rest/client_spec.rb#L170)
* using tokens
* when expired
- * [creates a new token automatically when the old token expires](./spec/acceptance/rest/client_spec.rb#L179)
+ * [creates a new token automatically when the old token expires](./spec/acceptance/rest/client_spec.rb#L203)
* with a different client_id in the subsequent token
- * [fails to authenticate and raises an exception](./spec/acceptance/rest/client_spec.rb#L192)
+ * [fails to authenticate and raises an exception](./spec/acceptance/rest/client_spec.rb#L216)
* when token has not expired
- * [reuses the existing token for every request](./spec/acceptance/rest/client_spec.rb#L203)
+ * [reuses the existing token for every request](./spec/acceptance/rest/client_spec.rb#L227)
* connection transport
* defaults
* for default host
- * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L220)
- * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L224)
+ * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L244)
+ * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L248)
* for the fallback hosts
- * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L230)
- * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L234)
+ * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L254)
+ * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L258)
* with custom http_open_timeout and http_request_timeout options
* for default host
- * [is configured to use custom open timeout](./spec/acceptance/rest/client_spec.rb#L246)
- * [is configured to use custom request timeout](./spec/acceptance/rest/client_spec.rb#L250)
+ * [is configured to use custom open timeout](./spec/acceptance/rest/client_spec.rb#L270)
+ * [is configured to use custom request timeout](./spec/acceptance/rest/client_spec.rb#L274)
* for the fallback hosts
- * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L256)
- * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L260)
+ * [is configured to timeout connection opening in 4 seconds](./spec/acceptance/rest/client_spec.rb#L280)
+ * [is configured to timeout connection requests in 15 seconds](./spec/acceptance/rest/client_spec.rb#L284)
* fallback hosts
* configured
- * [should make connection attempts to A.ably-realtime.com, B.ably-realtime.com, C.ably-realtime.com, D.ably-realtime.com, E.ably-realtime.com](./spec/acceptance/rest/client_spec.rb#L274)
- * when environment is NOT production
- * [does not retry failed requests with fallback hosts when there is a connection error](./spec/acceptance/rest/client_spec.rb#L291)
+ * [should make connection attempts to A.ably-realtime.com, B.ably-realtime.com, C.ably-realtime.com, D.ably-realtime.com, E.ably-realtime.com (#RSC15a)](./spec/acceptance/rest/client_spec.rb#L298)
+ * when environment is NOT production (#RSC15b)
+ * [does not retry failed requests with fallback hosts when there is a connection error](./spec/acceptance/rest/client_spec.rb#L315)
* when environment is production
* and connection times out
- * [tries fallback hosts 3 times](./spec/acceptance/rest/client_spec.rb#L329)
+ * [tries fallback hosts 3 times (#RSC15b, #RSC15b)](./spec/acceptance/rest/client_spec.rb#L354)
* and the total request time exeeds 10 seconds
- * [makes no further attempts to any fallback hosts](./spec/acceptance/rest/client_spec.rb#L344)
+ * [makes no further attempts to any fallback hosts](./spec/acceptance/rest/client_spec.rb#L369)
* and connection fails
- * [tries fallback hosts 3 times](./spec/acceptance/rest/client_spec.rb#L360)
+ * [tries fallback hosts 3 times](./spec/acceptance/rest/client_spec.rb#L385)
+ * and first request to primary endpoint fails
+ * [tries a fallback host, and for the next request tries the primary endpoint again (#RSC15e)](./spec/acceptance/rest/client_spec.rb#L419)
* and basic authentication fails
- * [does not attempt the fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L384)
+ * [does not attempt the fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L446)
* and server returns a 50x error
- * [attempts the fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L406)
+ * [attempts the fallback hosts as this is an authentication failure (#RSC15d)](./spec/acceptance/rest/client_spec.rb#L468)
+ * when environment is production and server returns a 50x error
+ * with custom fallback hosts provided
+ * [attempts the fallback hosts as this is an authentication failure (#RSC15b, #RSC15a, #TO3k6)](./spec/acceptance/rest/client_spec.rb#L517)
+ * with an empty array of fallback hosts provided (#RSC15b, #RSC15a, #TO3k6)
+ * [does not attempt the fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L530)
+ * using a local web-server
+ * and timing out the primary host
+ * with request timeout less than max_retry_duration
+ * [tries one of the fallback hosts (#RSC15d)](./spec/acceptance/rest/client_spec.rb#L586)
+ * with request timeout less than max_retry_duration
+ * [tries one of the fallback hosts (#RSC15d)](./spec/acceptance/rest/client_spec.rb#L608)
+ * and failing the primary host
+ * [tries one of the fallback hosts](./spec/acceptance/rest/client_spec.rb#L652)
+ * when environment is not production and server returns a 50x error
+ * with custom fallback hosts provided (#RSC15b, #TO3k6)
+ * [attempts the fallback hosts as this is not an authentication failure](./spec/acceptance/rest/client_spec.rb#L702)
+ * with an empty array of fallback hosts provided (#RSC15b, #TO3k6)
+ * [does not attempt the fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L715)
+ * with fallback_hosts_use_default: true (#RSC15b, #TO3k7)
+ * [attempts the default fallback hosts as this is an authentication failure](./spec/acceptance/rest/client_spec.rb#L740)
* with a custom host
* that does not exist
- * [fails immediately and raises a Faraday Error](./spec/acceptance/rest/client_spec.rb#L422)
+ * [fails immediately and raises a Faraday Error](./spec/acceptance/rest/client_spec.rb#L756)
* fallback hosts
- * [are never used](./spec/acceptance/rest/client_spec.rb#L443)
+ * [are never used](./spec/acceptance/rest/client_spec.rb#L777)
* that times out
- * [fails immediately and raises a Faraday Error](./spec/acceptance/rest/client_spec.rb#L458)
+ * [fails immediately and raises a Faraday Error](./spec/acceptance/rest/client_spec.rb#L792)
* fallback hosts
- * [are never used](./spec/acceptance/rest/client_spec.rb#L471)
+ * [are never used](./spec/acceptance/rest/client_spec.rb#L805)
* HTTP configuration options
- * [is frozen](./spec/acceptance/rest/client_spec.rb#L528)
+ * [is frozen](./spec/acceptance/rest/client_spec.rb#L862)
* defaults
- * [#http_open_timeout is 4s](./spec/acceptance/rest/client_spec.rb#L483)
- * [#http_request_timeout is 15s](./spec/acceptance/rest/client_spec.rb#L487)
- * [#http_max_retry_count is 3](./spec/acceptance/rest/client_spec.rb#L491)
- * [#http_max_retry_duration is 10s](./spec/acceptance/rest/client_spec.rb#L495)
+ * [#http_open_timeout is 4s](./spec/acceptance/rest/client_spec.rb#L817)
+ * [#http_request_timeout is 15s](./spec/acceptance/rest/client_spec.rb#L821)
+ * [#http_max_retry_count is 3](./spec/acceptance/rest/client_spec.rb#L825)
+ * [#http_max_retry_duration is 10s](./spec/acceptance/rest/client_spec.rb#L829)
* configured
- * [#http_open_timeout uses provided value](./spec/acceptance/rest/client_spec.rb#L511)
- * [#http_request_timeout uses provided value](./spec/acceptance/rest/client_spec.rb#L515)
- * [#http_max_retry_count uses provided value](./spec/acceptance/rest/client_spec.rb#L519)
- * [#http_max_retry_duration uses provided value](./spec/acceptance/rest/client_spec.rb#L523)
+ * [#http_open_timeout uses provided value](./spec/acceptance/rest/client_spec.rb#L845)
+ * [#http_request_timeout uses provided value](./spec/acceptance/rest/client_spec.rb#L849)
+ * [#http_max_retry_count uses provided value](./spec/acceptance/rest/client_spec.rb#L853)
+ * [#http_max_retry_duration uses provided value](./spec/acceptance/rest/client_spec.rb#L857)
* #auth
- * [is provides access to the Auth object](./spec/acceptance/rest/client_spec.rb#L539)
- * [configures the Auth object with all ClientOptions passed to client in the initializer](./spec/acceptance/rest/client_spec.rb#L543)
+ * [is provides access to the Auth object](./spec/acceptance/rest/client_spec.rb#L873)
+ * [configures the Auth object with all ClientOptions passed to client in the initializer](./spec/acceptance/rest/client_spec.rb#L877)
+ * version headers
+ * with variant none
+ * [sends a protocol version and lib version header (#G4, #RSC7a, #RSC7b)](./spec/acceptance/rest/client_spec.rb#L911)
+ * with variant foo
+ * [sends a protocol version and lib version header (#G4, #RSC7a, #RSC7b)](./spec/acceptance/rest/client_spec.rb#L911)
+ * #request (#RSC19*)
+ * get
+ * [returns an HttpPaginatedResponse object](./spec/acceptance/rest/client_spec.rb#L924)
+ * 404 request to invalid URL
+ * [returns an object with 404 status code and error message](./spec/acceptance/rest/client_spec.rb#L931)
+ * paged results
+ * [provides paging](./spec/acceptance/rest/client_spec.rb#L943)
### Ably::Models::MessageEncoders
_(see [spec/acceptance/rest/encoders_spec.rb](./spec/acceptance/rest/encoders_spec.rb))_
* with binary transport protocol
* without encryption
@@ -1643,136 +2048,143 @@
* [is encoded and decoded to the same Array](./spec/acceptance/rest/message_spec.rb#L39)
* String
* [is encoded and decoded to the same Array](./spec/acceptance/rest/message_spec.rb#L48)
* Binary
* [is encoded and decoded to the same Array](./spec/acceptance/rest/message_spec.rb#L57)
+ * with supported extra payload content type (#RSL1h, #RSL6a2)
+ * JSON Object (Hash)
+ * PENDING: *[is encoded and decoded to the same hash](./spec/acceptance/rest/message_spec.rb#L68)*
+ * JSON Array
+ * PENDING: *[is encoded and decoded to the same Array](./spec/acceptance/rest/message_spec.rb#L78)*
+ * nil
+ * [is encoded and decoded to the same Array](./spec/acceptance/rest/message_spec.rb#L86)
* with unsupported data payload content type
* Integer
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L68)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L97)
* Float
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L76)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L105)
* Boolean
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L84)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L113)
* False
- * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L92)
+ * [is raises an UnsupportedDataType 40011 exception](./spec/acceptance/rest/message_spec.rb#L121)
* encryption and encoding
* with #publish and #history
- * with AES-128-CBC using crypto-data-128.json fixtures
+ * with AES-128-CBC using crypto-data-128.json fixtures (#RTL7d)
* item 0 with encrypted encoding utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 1 with encrypted encoding cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 2 with encrypted encoding json/utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 3 with encrypted encoding json/utf-8/cipher+aes-128-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
- * with AES-256-CBC using crypto-data-256.json fixtures
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
+ * with AES-256-CBC using crypto-data-256.json fixtures (#RTL7d)
* item 0 with encrypted encoding utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 1 with encrypted encoding cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 2 with encrypted encoding json/utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* item 3 with encrypted encoding json/utf-8/cipher+aes-256-cbc/base64
* behaves like an Ably encrypter and decrypter
- * [encrypts message automatically when published](./spec/acceptance/rest/message_spec.rb#L137)
- * [sends and retrieves messages that are encrypted & decrypted by the Ably library](./spec/acceptance/rest/message_spec.rb#L152)
+ * [encrypts message automatically when published (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L166)
+ * [sends and retrieves messages that are encrypted & decrypted by the Ably library (#RTL7d)](./spec/acceptance/rest/message_spec.rb#L181)
* when publishing lots of messages
- * [encrypts on #publish and decrypts on #history](./spec/acceptance/rest/message_spec.rb#L185)
+ * [encrypts on #publish and decrypts on #history](./spec/acceptance/rest/message_spec.rb#L214)
* when retrieving #history with a different protocol
- * [delivers a String ASCII-8BIT payload to the receiver](./spec/acceptance/rest/message_spec.rb#L212)
- * [delivers a String UTF-8 payload to the receiver](./spec/acceptance/rest/message_spec.rb#L212)
- * [delivers a Hash payload to the receiver](./spec/acceptance/rest/message_spec.rb#L212)
+ * [delivers a String ASCII-8BIT payload to the receiver](./spec/acceptance/rest/message_spec.rb#L241)
+ * [delivers a String UTF-8 payload to the receiver](./spec/acceptance/rest/message_spec.rb#L241)
+ * [delivers a Hash payload to the receiver](./spec/acceptance/rest/message_spec.rb#L241)
* when publishing on an unencrypted channel and retrieving with #history on an encrypted channel
- * [does not attempt to decrypt the message](./spec/acceptance/rest/message_spec.rb#L228)
+ * [does not attempt to decrypt the message](./spec/acceptance/rest/message_spec.rb#L257)
* when publishing on an encrypted channel and retrieving with #history on an unencrypted channel
- * [retrieves the message that remains encrypted with an encrypted encoding attribute](./spec/acceptance/rest/message_spec.rb#L249)
- * [logs a Cipher exception](./spec/acceptance/rest/message_spec.rb#L255)
- * publishing on an encrypted channel and retrieving #history with a different algorithm on another client
- * [retrieves the message that remains encrypted with an encrypted encoding attribute](./spec/acceptance/rest/message_spec.rb#L276)
- * [logs a Cipher exception](./spec/acceptance/rest/message_spec.rb#L282)
+ * [retrieves the message that remains encrypted with an encrypted encoding attribute (#RTL7e)](./spec/acceptance/rest/message_spec.rb#L278)
+ * [logs a Cipher exception (#RTL7e)](./spec/acceptance/rest/message_spec.rb#L284)
+ * publishing on an encrypted channel and retrieving #history with a different algorithm on another client (#RTL7e)
+ * [retrieves the message that remains encrypted with an encrypted encoding attribute (#RTL7e)](./spec/acceptance/rest/message_spec.rb#L305)
+ * [logs a Cipher exception (#RTL7e)](./spec/acceptance/rest/message_spec.rb#L311)
* publishing on an encrypted channel and subscribing with a different key on another client
- * [retrieves the message that remains encrypted with an encrypted encoding attribute](./spec/acceptance/rest/message_spec.rb#L303)
- * [logs a Cipher exception](./spec/acceptance/rest/message_spec.rb#L309)
+ * [retrieves the message that remains encrypted with an encrypted encoding attribute](./spec/acceptance/rest/message_spec.rb#L332)
+ * [logs a Cipher exception](./spec/acceptance/rest/message_spec.rb#L338)
### Ably::Rest::Presence
_(see [spec/acceptance/rest/presence_spec.rb](./spec/acceptance/rest/presence_spec.rb))_
* using JSON protocol
* tested against presence fixture data set up in test app
* #get
* [returns current members on the channel with their action set to :present](./spec/acceptance/rest/presence_spec.rb#L41)
* with :limit option
* [returns a paged response limiting number of members per page](./spec/acceptance/rest/presence_spec.rb#L57)
* default :limit
- * [defaults to a limit of 100](./spec/acceptance/rest/presence_spec.rb#L89)
+ * [defaults to a limit of 100](./spec/acceptance/rest/presence_spec.rb#L86)
* with :client_id option
- * [returns a list members filtered by the provided client ID](./spec/acceptance/rest/presence_spec.rb#L98)
+ * [returns a list members filtered by the provided client ID](./spec/acceptance/rest/presence_spec.rb#L95)
* with :connection_id option
- * [returns a list members filtered by the provided connection ID](./spec/acceptance/rest/presence_spec.rb#L109)
- * [returns a list members filtered by the provided connection ID](./spec/acceptance/rest/presence_spec.rb#L113)
+ * [returns a list members filtered by the provided connection ID](./spec/acceptance/rest/presence_spec.rb#L106)
+ * [returns a list members filtered by the provided connection ID](./spec/acceptance/rest/presence_spec.rb#L110)
* #history
- * [returns recent presence activity](./spec/acceptance/rest/presence_spec.rb#L122)
+ * [returns recent presence activity](./spec/acceptance/rest/presence_spec.rb#L119)
* default behaviour
- * [uses backwards direction](./spec/acceptance/rest/presence_spec.rb#L137)
+ * [uses backwards direction](./spec/acceptance/rest/presence_spec.rb#L134)
* with options
* direction: :forwards
- * [returns recent presence activity forwards with most recent history last](./spec/acceptance/rest/presence_spec.rb#L149)
+ * [returns recent presence activity forwards with most recent history last](./spec/acceptance/rest/presence_spec.rb#L146)
* direction: :backwards
- * [returns recent presence activity backwards with most recent history first](./spec/acceptance/rest/presence_spec.rb#L164)
+ * [returns recent presence activity backwards with most recent history first](./spec/acceptance/rest/presence_spec.rb#L161)
* #history
* with options
* limit options
* default
- * [is set to 100](./spec/acceptance/rest/presence_spec.rb#L212)
+ * [is set to 100](./spec/acceptance/rest/presence_spec.rb#L206)
* set to 1000
- * [is passes the limit query param value 1000](./spec/acceptance/rest/presence_spec.rb#L225)
+ * [is passes the limit query param value 1000](./spec/acceptance/rest/presence_spec.rb#L219)
* with time range options
* :start
* with milliseconds since epoch value
- * [uses this value in the history request](./spec/acceptance/rest/presence_spec.rb#L255)
+ * [uses this value in the history request](./spec/acceptance/rest/presence_spec.rb#L249)
* with Time object value
- * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/presence_spec.rb#L265)
+ * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/presence_spec.rb#L259)
* :end
* with milliseconds since epoch value
- * [uses this value in the history request](./spec/acceptance/rest/presence_spec.rb#L255)
+ * [uses this value in the history request](./spec/acceptance/rest/presence_spec.rb#L249)
* with Time object value
- * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/presence_spec.rb#L265)
+ * [converts the value to milliseconds since epoch in the hisotry request](./spec/acceptance/rest/presence_spec.rb#L259)
* when argument start is after end
- * [should raise an exception](./spec/acceptance/rest/presence_spec.rb#L276)
+ * [should raise an exception](./spec/acceptance/rest/presence_spec.rb#L270)
* decoding
* with encoded fixture data
* #history
- * [decodes encoded and encryped presence fixture data automatically](./spec/acceptance/rest/presence_spec.rb#L295)
+ * [decodes encoded and encryped presence fixture data automatically](./spec/acceptance/rest/presence_spec.rb#L289)
* #get
- * [decodes encoded and encryped presence fixture data automatically](./spec/acceptance/rest/presence_spec.rb#L302)
+ * [decodes encoded and encryped presence fixture data automatically](./spec/acceptance/rest/presence_spec.rb#L296)
* decoding permutations using mocked #history
* valid decodeable content
* #get
- * [automaticaly decodes presence messages](./spec/acceptance/rest/presence_spec.rb#L358)
+ * [automaticaly decodes presence messages](./spec/acceptance/rest/presence_spec.rb#L349)
* #history
- * [automaticaly decodes presence messages](./spec/acceptance/rest/presence_spec.rb#L375)
+ * [automaticaly decodes presence messages](./spec/acceptance/rest/presence_spec.rb#L366)
* invalid data
* #get
- * [returns the messages still encoded](./spec/acceptance/rest/presence_spec.rb#L406)
- * [logs a cipher error](./spec/acceptance/rest/presence_spec.rb#L410)
+ * [returns the messages still encoded](./spec/acceptance/rest/presence_spec.rb#L397)
+ * [logs a cipher error](./spec/acceptance/rest/presence_spec.rb#L401)
* #history
- * [returns the messages still encoded](./spec/acceptance/rest/presence_spec.rb#L430)
- * [logs a cipher error](./spec/acceptance/rest/presence_spec.rb#L434)
+ * [returns the messages still encoded](./spec/acceptance/rest/presence_spec.rb#L421)
+ * [logs a cipher error](./spec/acceptance/rest/presence_spec.rb#L425)
### Ably::Rest::Client#stats
_(see [spec/acceptance/rest/stats_spec.rb](./spec/acceptance/rest/stats_spec.rb))_
* using JSON protocol
* fetching application stats
@@ -1848,27 +2260,55 @@
### Ably::Logger
_(see [spec/unit/logger_spec.rb](./spec/unit/logger_spec.rb))_
* [uses the language provided Logger by default](./spec/unit/logger_spec.rb#L15)
* with a custom Logger
* with an invalid interface
- * [raises an exception](./spec/unit/logger_spec.rb#L116)
+ * [raises an exception](./spec/unit/logger_spec.rb#L118)
* with a valid interface
- * [is used](./spec/unit/logger_spec.rb#L135)
+ * [is used](./spec/unit/logger_spec.rb#L137)
+ * with blocks
+ * [does not call the block unless the log level is met](./spec/unit/logger_spec.rb#L152)
+ * with an exception in the logger block
+ * [catches the error and continues](./spec/unit/logger_spec.rb#L167)
+### Ably::Models::AuthDetails
+_(see [spec/unit/models/auth_details_spec.rb](./spec/unit/models/auth_details_spec.rb))_
+ * behaves like a model
+ * attributes
+ * #access_token
+ * [retrieves attribute :access_token](./spec/shared/model_behaviour.rb#L15)
+ * #==
+ * [is true when attributes are the same](./spec/shared/model_behaviour.rb#L41)
+ * [is false when attributes are not the same](./spec/shared/model_behaviour.rb#L46)
+ * [is false when class type differs](./spec/shared/model_behaviour.rb#L50)
+ * is immutable
+ * [prevents changes](./spec/shared/model_behaviour.rb#L76)
+ * [dups options](./spec/shared/model_behaviour.rb#L80)
+ * ==
+ * [is true when attributes are the same](./spec/unit/models/auth_details_spec.rb#L17)
+ * [is false when attributes are not the same](./spec/unit/models/auth_details_spec.rb#L22)
+ * [is false when class type differs](./spec/unit/models/auth_details_spec.rb#L26)
+
### Ably::Models::ChannelStateChange
_(see [spec/unit/models/channel_state_change_spec.rb](./spec/unit/models/channel_state_change_spec.rb))_
- * #current
+ * #current (#TH1)
* [is required](./spec/unit/models/channel_state_change_spec.rb#L10)
* [is an attribute](./spec/unit/models/channel_state_change_spec.rb#L14)
- * #previous
+ * #previous (#TH2)
* [is required](./spec/unit/models/channel_state_change_spec.rb#L20)
* [is an attribute](./spec/unit/models/channel_state_change_spec.rb#L24)
- * #reason
+ * #event (#TH5)
* [is not required](./spec/unit/models/channel_state_change_spec.rb#L30)
* [is an attribute](./spec/unit/models/channel_state_change_spec.rb#L34)
+ * #reason (#TH3)
+ * [is not required](./spec/unit/models/channel_state_change_spec.rb#L40)
+ * [is an attribute](./spec/unit/models/channel_state_change_spec.rb#L44)
+ * #resumed (#TH4)
+ * [is false when ommitted](./spec/unit/models/channel_state_change_spec.rb#L50)
+ * [is true when provided](./spec/unit/models/channel_state_change_spec.rb#L54)
* invalid attributes
- * [raises an argument error](./spec/unit/models/channel_state_change_spec.rb#L40)
+ * [raises an argument error](./spec/unit/models/channel_state_change_spec.rb#L60)
### Ably::Models::CipherParams
_(see [spec/unit/models/cipher_params_spec.rb](./spec/unit/models/cipher_params_spec.rb))_
* :key missing from constructor
* [raises an exception](./spec/unit/models/cipher_params_spec.rb#L8)
@@ -1927,33 +2367,38 @@
* [is false when class type differs](./spec/shared/model_behaviour.rb#L50)
* is immutable
* [prevents changes](./spec/shared/model_behaviour.rb#L76)
* [dups options](./spec/shared/model_behaviour.rb#L80)
* attributes
- * #connection_state_ttl
- * [retrieves attribute :connection_state_ttl and converts it from ms to s](./spec/unit/models/connection_details_spec.rb#L19)
+ * #connection_state_ttl (#CD2f)
+ * [retrieves attribute :connection_state_ttl and converts it from ms to s](./spec/unit/models/connection_details_spec.rb#L20)
+ * #max_idle_interval (#CD2h)
+ * [retrieves attribute :max_idle_interval and converts it from ms to s](./spec/unit/models/connection_details_spec.rb#L30)
* ==
- * [is true when attributes are the same](./spec/unit/models/connection_details_spec.rb#L28)
- * [is false when attributes are not the same](./spec/unit/models/connection_details_spec.rb#L33)
- * [is false when class type differs](./spec/unit/models/connection_details_spec.rb#L37)
+ * [is true when attributes are the same](./spec/unit/models/connection_details_spec.rb#L39)
+ * [is false when attributes are not the same](./spec/unit/models/connection_details_spec.rb#L44)
+ * [is false when class type differs](./spec/unit/models/connection_details_spec.rb#L48)
### Ably::Models::ConnectionStateChange
_(see [spec/unit/models/connection_state_change_spec.rb](./spec/unit/models/connection_state_change_spec.rb))_
- * #current
+ * #current (#TA2)
* [is required](./spec/unit/models/connection_state_change_spec.rb#L10)
* [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L14)
- * #previous
+ * #previous(#TA2)
* [is required](./spec/unit/models/connection_state_change_spec.rb#L20)
* [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L24)
- * #retry_in
+ * #event(#TA5)
* [is not required](./spec/unit/models/connection_state_change_spec.rb#L30)
* [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L34)
- * #reason
- * [is not required](./spec/unit/models/connection_state_change_spec.rb#L40)
- * [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L44)
+ * #retry_in (#TA2)
+ * [is not required](./spec/unit/models/connection_state_change_spec.rb#L41)
+ * [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L45)
+ * #reason (#TA3)
+ * [is not required](./spec/unit/models/connection_state_change_spec.rb#L51)
+ * [is an attribute](./spec/unit/models/connection_state_change_spec.rb#L55)
* invalid attributes
- * [raises an argument error](./spec/unit/models/connection_state_change_spec.rb#L50)
+ * [raises an argument error](./spec/unit/models/connection_state_change_spec.rb#L61)
### Ably::Models::ErrorInfo
_(see [spec/unit/models/error_info_spec.rb](./spec/unit/models/error_info_spec.rb))_
* behaves like a model
* attributes
@@ -1971,10 +2416,64 @@
* [prevents changes](./spec/shared/model_behaviour.rb#L76)
* [dups options](./spec/shared/model_behaviour.rb#L80)
* #status
* [is an alias for #status_code](./spec/unit/models/error_info_spec.rb#L13)
+### Ably::Models::HttpPaginatedResponse: #HP1 -> #HP8
+_(see [spec/unit/models/http_paginated_result_spec.rb](./spec/unit/models/http_paginated_result_spec.rb))_
+ * #items
+ * [returns correct length from body](./spec/unit/models/http_paginated_result_spec.rb#L33)
+ * [is Enumerable](./spec/unit/models/http_paginated_result_spec.rb#L37)
+ * [is iterable](./spec/unit/models/http_paginated_result_spec.rb#L41)
+ * [provides [] accessor method](./spec/unit/models/http_paginated_result_spec.rb#L59)
+ * [#first gets the first item in page](./spec/unit/models/http_paginated_result_spec.rb#L65)
+ * [#last gets the last item in page](./spec/unit/models/http_paginated_result_spec.rb#L69)
+ * #each
+ * [returns an enumerator](./spec/unit/models/http_paginated_result_spec.rb#L46)
+ * [yields each item](./spec/unit/models/http_paginated_result_spec.rb#L50)
+ * with non paged http response
+ * [is the last page](./spec/unit/models/http_paginated_result_spec.rb#L174)
+ * [does not have next page](./spec/unit/models/http_paginated_result_spec.rb#L178)
+ * [does not support pagination](./spec/unit/models/http_paginated_result_spec.rb#L182)
+ * [returns nil when accessing next page](./spec/unit/models/http_paginated_result_spec.rb#L186)
+ * [returns nil when accessing first page](./spec/unit/models/http_paginated_result_spec.rb#L190)
+ * with paged http response
+ * [has next page](./spec/unit/models/http_paginated_result_spec.rb#L208)
+ * [is not the last page](./spec/unit/models/http_paginated_result_spec.rb#L212)
+ * [supports pagination](./spec/unit/models/http_paginated_result_spec.rb#L216)
+ * accessing next page
+ * [returns another HttpPaginatedResponse](./spec/unit/models/http_paginated_result_spec.rb#L244)
+ * [retrieves the next page of results](./spec/unit/models/http_paginated_result_spec.rb#L248)
+ * [does not have a next page](./spec/unit/models/http_paginated_result_spec.rb#L253)
+ * [is the last page](./spec/unit/models/http_paginated_result_spec.rb#L257)
+ * [returns nil when trying to access the last page when it is the last page](./spec/unit/models/http_paginated_result_spec.rb#L261)
+ * and then first page
+ * [returns a HttpPaginatedResponse](./spec/unit/models/http_paginated_result_spec.rb#L272)
+ * [retrieves the first page of results](./spec/unit/models/http_paginated_result_spec.rb#L276)
+ * response metadata
+ * successful response
+ * [#success? is true](./spec/unit/models/http_paginated_result_spec.rb#L288)
+ * [#status_code reflects status code](./spec/unit/models/http_paginated_result_spec.rb#L292)
+ * [#error_code to be empty](./spec/unit/models/http_paginated_result_spec.rb#L296)
+ * [#error_message to be empty](./spec/unit/models/http_paginated_result_spec.rb#L300)
+ * [#headers to be a hash](./spec/unit/models/http_paginated_result_spec.rb#L304)
+ * failed response
+ * [#success? is false](./spec/unit/models/http_paginated_result_spec.rb#L313)
+ * [#status_code reflects status code](./spec/unit/models/http_paginated_result_spec.rb#L317)
+ * [#error_code to be populated](./spec/unit/models/http_paginated_result_spec.rb#L321)
+ * [#error_message to be populated](./spec/unit/models/http_paginated_result_spec.rb#L325)
+ * [#headers to be present](./spec/unit/models/http_paginated_result_spec.rb#L329)
+ * #items Array conversion and nil handling #HP3
+ * with Json Array
+ * [is an array](./spec/unit/models/http_paginated_result_spec.rb#L344)
+ * with Json Object
+ * [is an array](./spec/unit/models/http_paginated_result_spec.rb#L354)
+ * with empty response
+ * [is an array](./spec/unit/models/http_paginated_result_spec.rb#L365)
+ * with nil response
+ * [is an array](./spec/unit/models/http_paginated_result_spec.rb#L375)
+
### Ably::Models::MessageEncoders::Base64
_(see [spec/unit/models/message_encoders/base64_spec.rb](./spec/unit/models/message_encoders/base64_spec.rb))_
* #decode
* message with base64 payload
* [decodes base64](./spec/unit/models/message_encoders/base64_spec.rb#L24)
@@ -1986,37 +2485,37 @@
* [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L48)
* [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L52)
* #encode
* over binary transport
* message with binary payload
- * [leaves the message data intact as Base64 encoding is not necessary](./spec/unit/models/message_encoders/base64_spec.rb#L68)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L72)
+ * [leaves the message data intact as Base64 encoding is not necessary](./spec/unit/models/message_encoders/base64_spec.rb#L69)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L73)
* already encoded message with binary payload
- * [leaves the message data intact as Base64 encoding is not necessary](./spec/unit/models/message_encoders/base64_spec.rb#L80)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L84)
+ * [leaves the message data intact as Base64 encoding is not necessary](./spec/unit/models/message_encoders/base64_spec.rb#L81)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L85)
* message with UTF-8 payload
- * [leaves the data intact](./spec/unit/models/message_encoders/base64_spec.rb#L92)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L96)
+ * [leaves the data intact](./spec/unit/models/message_encoders/base64_spec.rb#L93)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L97)
* message with nil payload
- * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L104)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L108)
+ * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L105)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L109)
* message with empty binary string payload
- * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L116)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L120)
+ * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L117)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L121)
* over text transport
* message with binary payload
- * [encodes binary data as base64](./spec/unit/models/message_encoders/base64_spec.rb#L135)
- * [adds the encoding](./spec/unit/models/message_encoders/base64_spec.rb#L139)
+ * [encodes binary data as base64](./spec/unit/models/message_encoders/base64_spec.rb#L136)
+ * [adds the encoding](./spec/unit/models/message_encoders/base64_spec.rb#L140)
* already encoded message with binary payload
- * [encodes binary data as base64](./spec/unit/models/message_encoders/base64_spec.rb#L147)
- * [adds the encoding](./spec/unit/models/message_encoders/base64_spec.rb#L151)
+ * [encodes binary data as base64](./spec/unit/models/message_encoders/base64_spec.rb#L148)
+ * [adds the encoding](./spec/unit/models/message_encoders/base64_spec.rb#L152)
* message with UTF-8 payload
- * [leaves the data intact](./spec/unit/models/message_encoders/base64_spec.rb#L159)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L163)
+ * [leaves the data intact](./spec/unit/models/message_encoders/base64_spec.rb#L160)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L164)
* message with nil payload
- * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L171)
- * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L175)
+ * [leaves the message data intact](./spec/unit/models/message_encoders/base64_spec.rb#L172)
+ * [leaves the encoding intact](./spec/unit/models/message_encoders/base64_spec.rb#L176)
### Ably::Models::MessageEncoders::Cipher
_(see [spec/unit/models/message_encoders/cipher_spec.rb](./spec/unit/models/message_encoders/cipher_spec.rb))_
* #decode
* with channel set up for AES-128-CBC
@@ -2148,64 +2647,92 @@
* is immutable
* [prevents changes](./spec/shared/model_behaviour.rb#L76)
* [dups options](./spec/shared/model_behaviour.rb#L80)
* #timestamp
* [retrieves attribute :timestamp as Time object from ProtocolMessage](./spec/unit/models/message_spec.rb#L22)
+ * #extras (#TM2i)
+ * when missing
+ * [is nil](./spec/unit/models/message_spec.rb#L33)
+ * when a string
+ * [raises an exception](./spec/unit/models/message_spec.rb#L40)
+ * when a Hash
+ * [contains a Hash Json object](./spec/unit/models/message_spec.rb#L47)
+ * when a Json Array
+ * [contains a Json Array object](./spec/unit/models/message_spec.rb#L54)
* #connection_id attribute
* when this model has a connectionId attribute
* but no protocol message
- * [uses the model value](./spec/unit/models/message_spec.rb#L37)
+ * [uses the model value](./spec/unit/models/message_spec.rb#L69)
* with a protocol message with a different connectionId
- * [uses the model value](./spec/unit/models/message_spec.rb#L45)
+ * [uses the model value](./spec/unit/models/message_spec.rb#L77)
* when this model has no connectionId attribute
* and no protocol message
- * [uses the model value](./spec/unit/models/message_spec.rb#L55)
+ * [uses the model value](./spec/unit/models/message_spec.rb#L87)
* with a protocol message with a connectionId
- * [uses the model value](./spec/unit/models/message_spec.rb#L63)
+ * [uses the model value](./spec/unit/models/message_spec.rb#L95)
* initialized with
* :name
* as UTF_8 string
- * [is permitted](./spec/unit/models/message_spec.rb#L90)
- * [remains as UTF-8](./spec/unit/models/message_spec.rb#L94)
+ * [is permitted](./spec/unit/models/message_spec.rb#L122)
+ * [remains as UTF-8](./spec/unit/models/message_spec.rb#L126)
* as SHIFT_JIS string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L102)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L106)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L134)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L138)
* as ASCII_8BIT string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L114)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L118)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L146)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L150)
* as Integer
- * [raises an argument error](./spec/unit/models/message_spec.rb#L126)
+ * [raises an argument error](./spec/unit/models/message_spec.rb#L158)
* as Nil
- * [is permitted](./spec/unit/models/message_spec.rb#L134)
+ * [is permitted](./spec/unit/models/message_spec.rb#L166)
* :client_id
* as UTF_8 string
- * [is permitted](./spec/unit/models/message_spec.rb#L90)
- * [remains as UTF-8](./spec/unit/models/message_spec.rb#L94)
+ * [is permitted](./spec/unit/models/message_spec.rb#L122)
+ * [remains as UTF-8](./spec/unit/models/message_spec.rb#L126)
* as SHIFT_JIS string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L102)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L106)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L134)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L138)
* as ASCII_8BIT string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L114)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L118)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L146)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L150)
* as Integer
- * [raises an argument error](./spec/unit/models/message_spec.rb#L126)
+ * [raises an argument error](./spec/unit/models/message_spec.rb#L158)
* as Nil
- * [is permitted](./spec/unit/models/message_spec.rb#L134)
+ * [is permitted](./spec/unit/models/message_spec.rb#L166)
* :encoding
* as UTF_8 string
- * [is permitted](./spec/unit/models/message_spec.rb#L90)
- * [remains as UTF-8](./spec/unit/models/message_spec.rb#L94)
+ * [is permitted](./spec/unit/models/message_spec.rb#L122)
+ * [remains as UTF-8](./spec/unit/models/message_spec.rb#L126)
* as SHIFT_JIS string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L102)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L106)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L134)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L138)
* as ASCII_8BIT string
- * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L114)
- * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L118)
+ * [gets converted to UTF-8](./spec/unit/models/message_spec.rb#L146)
+ * [is compatible with original encoding](./spec/unit/models/message_spec.rb#L150)
* as Integer
- * [raises an argument error](./spec/unit/models/message_spec.rb#L126)
+ * [raises an argument error](./spec/unit/models/message_spec.rb#L158)
* as Nil
- * [is permitted](./spec/unit/models/message_spec.rb#L134)
+ * [is permitted](./spec/unit/models/message_spec.rb#L166)
+ * #from_encoded (#TM3)
+ * with no encoding
+ * [returns a message object](./spec/unit/models/message_spec.rb#L422)
+ * with a block
+ * [does not call the block](./spec/unit/models/message_spec.rb#L430)
+ * with an encoding
+ * [returns a message object](./spec/unit/models/message_spec.rb#L447)
+ * with a custom encoding
+ * [returns a message object with the residual incompatible transforms left in the encoding property](./spec/unit/models/message_spec.rb#L462)
+ * with a Cipher encoding
+ * [returns a message object with the residual incompatible transforms left in the encoding property](./spec/unit/models/message_spec.rb#L481)
+ * with invalid Cipher encoding
+ * without a block
+ * [raises an exception](./spec/unit/models/message_spec.rb#L499)
+ * with a block
+ * [calls the block with the exception](./spec/unit/models/message_spec.rb#L505)
+ * #from_encoded_array (#TM3)
+ * with no encoding
+ * [returns an Array of message objects](./spec/unit/models/message_spec.rb#L524)
### Ably::Models::PaginatedResult
_(see [spec/unit/models/paginated_result_spec.rb](./spec/unit/models/paginated_result_spec.rb))_
* #items
* [returns correct length from body](./spec/unit/models/paginated_result_spec.rb#L31)
@@ -2316,10 +2843,40 @@
* [is compatible with original encoding](./spec/unit/models/presence_message_spec.rb#L166)
* as Integer
* [raises an argument error](./spec/unit/models/presence_message_spec.rb#L174)
* as Nil
* [is permitted](./spec/unit/models/presence_message_spec.rb#L182)
+ * #from_encoded (#TP4)
+ * with no encoding
+ * [returns a presence message object](./spec/unit/models/presence_message_spec.rb#L395)
+ * with a block
+ * [does not call the block](./spec/unit/models/presence_message_spec.rb#L403)
+ * with an encoding
+ * [returns a presence message object](./spec/unit/models/presence_message_spec.rb#L420)
+ * with a custom encoding
+ * [returns a presence message object with the residual incompatible transforms left in the encoding property](./spec/unit/models/presence_message_spec.rb#L435)
+ * with a Cipher encoding
+ * [returns a presence message object with the residual incompatible transforms left in the encoding property](./spec/unit/models/presence_message_spec.rb#L454)
+ * with invalid Cipher encoding
+ * without a block
+ * [raises an exception](./spec/unit/models/presence_message_spec.rb#L471)
+ * with a block
+ * [calls the block with the exception](./spec/unit/models/presence_message_spec.rb#L477)
+ * #from_encoded_array (#TP4)
+ * with no encoding
+ * [returns an Array of presence message objects](./spec/unit/models/presence_message_spec.rb#L496)
+ * #shallow_clone
+ * with inherited attributes from ProtocolMessage
+ * [creates a duplicate of the message without any ProtocolMessage dependency](./spec/unit/models/presence_message_spec.rb#L516)
+ * with embedded attributes for all fields
+ * [creates a duplicate of the message without any ProtocolMessage dependency](./spec/unit/models/presence_message_spec.rb#L530)
+ * with new attributes passed in to the method
+ * [creates a duplicate of the message without any ProtocolMessage dependency](./spec/unit/models/presence_message_spec.rb#L546)
+ * with an invalid ProtocolMessage (missing an ID)
+ * [allows an ID to be passed in to the shallow clone that takes precedence](./spec/unit/models/presence_message_spec.rb#L558)
+ * with mixing of cases
+ * [resolves case issues and can use camelCase or snake_case](./spec/unit/models/presence_message_spec.rb#L565)
### Ably::Models::ProtocolMessage
_(see [spec/unit/models/protocol_message_spec.rb](./spec/unit/models/protocol_message_spec.rb))_
* behaves like a model
* attributes
@@ -2340,77 +2897,91 @@
* is immutable
* [prevents changes](./spec/shared/model_behaviour.rb#L76)
* [dups options](./spec/shared/model_behaviour.rb#L80)
* attributes
* #timestamp
- * [retrieves attribute :timestamp as Time object](./spec/unit/models/protocol_message_spec.rb#L74)
+ * [retrieves attribute :timestamp as Time object](./spec/unit/models/protocol_message_spec.rb#L75)
* #count
* when missing
- * [is 1](./spec/unit/models/protocol_message_spec.rb#L83)
+ * [is 1](./spec/unit/models/protocol_message_spec.rb#L84)
* when non numeric
- * [is 1](./spec/unit/models/protocol_message_spec.rb#L90)
+ * [is 1](./spec/unit/models/protocol_message_spec.rb#L91)
* when greater than 1
- * [is the value of count](./spec/unit/models/protocol_message_spec.rb#L97)
+ * [is the value of count](./spec/unit/models/protocol_message_spec.rb#L98)
* #message_serial
- * [converts :msg_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L105)
+ * [converts :msg_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L106)
* #has_message_serial?
* without msg_serial
- * [returns false](./spec/unit/models/protocol_message_spec.rb#L115)
+ * [returns false](./spec/unit/models/protocol_message_spec.rb#L116)
* with msg_serial
- * [returns true](./spec/unit/models/protocol_message_spec.rb#L123)
+ * [returns true](./spec/unit/models/protocol_message_spec.rb#L124)
* #connection_serial
- * [converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L131)
- * #flags
+ * [converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L132)
+ * #flags (#TR4i)
* when nil
- * [is zero](./spec/unit/models/protocol_message_spec.rb#L141)
+ * [is zero](./spec/unit/models/protocol_message_spec.rb#L142)
* when numeric
- * [is an Integer](./spec/unit/models/protocol_message_spec.rb#L149)
- * when has_presence
- * [#has_presence_flag? is true](./spec/unit/models/protocol_message_spec.rb#L157)
+ * [is an Integer](./spec/unit/models/protocol_message_spec.rb#L150)
+ * when presence flag present
+ * [#has_presence_flag? is true](./spec/unit/models/protocol_message_spec.rb#L158)
+ * [#has_channel_resumed_flag? is false](./spec/unit/models/protocol_message_spec.rb#L162)
+ * when channel resumed flag present
+ * [#has_channel_resumed_flag? is true](./spec/unit/models/protocol_message_spec.rb#L170)
+ * [#has_presence_flag? is false](./spec/unit/models/protocol_message_spec.rb#L174)
+ * when channel resumed and presence flags present
+ * [#has_channel_resumed_flag? is true](./spec/unit/models/protocol_message_spec.rb#L182)
+ * [#has_presence_flag? is true](./spec/unit/models/protocol_message_spec.rb#L186)
* when has another future flag
- * [#has_presence_flag? is false](./spec/unit/models/protocol_message_spec.rb#L165)
+ * [#has_presence_flag? is false](./spec/unit/models/protocol_message_spec.rb#L194)
+ * [#has_backlog_flag? is true](./spec/unit/models/protocol_message_spec.rb#L198)
* #has_connection_serial?
* without connection_serial
- * [returns false](./spec/unit/models/protocol_message_spec.rb#L175)
+ * [returns false](./spec/unit/models/protocol_message_spec.rb#L208)
* with connection_serial
- * [returns true](./spec/unit/models/protocol_message_spec.rb#L183)
+ * [returns true](./spec/unit/models/protocol_message_spec.rb#L216)
* #serial
* with underlying msg_serial
- * [converts :msg_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L192)
+ * [converts :msg_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L225)
* with underlying connection_serial
- * [converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L200)
+ * [converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L233)
* with underlying connection_serial and msg_serial
- * [prefers connection_serial and converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L208)
+ * [prefers connection_serial and converts :connection_serial to an Integer](./spec/unit/models/protocol_message_spec.rb#L241)
* #has_serial?
* without msg_serial or connection_serial
- * [returns false](./spec/unit/models/protocol_message_spec.rb#L219)
+ * [returns false](./spec/unit/models/protocol_message_spec.rb#L252)
* with msg_serial
- * [returns true](./spec/unit/models/protocol_message_spec.rb#L227)
+ * [returns true](./spec/unit/models/protocol_message_spec.rb#L260)
* with connection_serial
- * [returns true](./spec/unit/models/protocol_message_spec.rb#L235)
+ * [returns true](./spec/unit/models/protocol_message_spec.rb#L268)
* #error
* with no error attribute
- * [returns nil](./spec/unit/models/protocol_message_spec.rb#L245)
+ * [returns nil](./spec/unit/models/protocol_message_spec.rb#L278)
* with nil error
- * [returns nil](./spec/unit/models/protocol_message_spec.rb#L253)
+ * [returns nil](./spec/unit/models/protocol_message_spec.rb#L286)
* with error
- * [returns a valid ErrorInfo object](./spec/unit/models/protocol_message_spec.rb#L261)
- * #messages
- * [contains Message objects](./spec/unit/models/protocol_message_spec.rb#L271)
- * #presence
- * [contains PresenceMessage objects](./spec/unit/models/protocol_message_spec.rb#L281)
- * #connection_details
+ * [returns a valid ErrorInfo object](./spec/unit/models/protocol_message_spec.rb#L294)
+ * #messages (#TR4k)
+ * [contains Message objects](./spec/unit/models/protocol_message_spec.rb#L304)
+ * #presence (#TR4l)
+ * [contains PresenceMessage objects](./spec/unit/models/protocol_message_spec.rb#L314)
+ * #connection_details (#TR4o)
* with a JSON value
- * [contains a ConnectionDetails object](./spec/unit/models/protocol_message_spec.rb#L294)
- * [contains the attributes from the JSON connectionDetails](./spec/unit/models/protocol_message_spec.rb#L298)
+ * [contains a ConnectionDetails object](./spec/unit/models/protocol_message_spec.rb#L327)
+ * [contains the attributes from the JSON connectionDetails](./spec/unit/models/protocol_message_spec.rb#L331)
* without a JSON value
- * [contains an empty ConnectionDetails object](./spec/unit/models/protocol_message_spec.rb#L307)
- * #connection_key
+ * [contains an empty ConnectionDetails object](./spec/unit/models/protocol_message_spec.rb#L340)
+ * #auth (#TR4p)
+ * with a JSON value
+ * [contains a AuthDetails object](./spec/unit/models/protocol_message_spec.rb#L354)
+ * [contains the attributes from the JSON auth details](./spec/unit/models/protocol_message_spec.rb#L358)
+ * without a JSON value
+ * [contains an empty AuthDetails object](./spec/unit/models/protocol_message_spec.rb#L366)
+ * #connection_key (#TR4e)
* existing only in #connection_details.connection_key
- * [is returned](./spec/unit/models/protocol_message_spec.rb#L319)
+ * [is returned](./spec/unit/models/protocol_message_spec.rb#L377)
* existing in both #connection_key and #connection_details.connection_key
- * [returns #connection_details.connection_key as #connection_key will be deprecated > 0.8](./spec/unit/models/protocol_message_spec.rb#L327)
+ * [returns #connection_details.connection_key as #connection_key will be deprecated > 0.8](./spec/unit/models/protocol_message_spec.rb#L385)
### Ably::Models::Stats
_(see [spec/unit/models/stats_spec.rb](./spec/unit/models/stats_spec.rb))_
* #all stats
* [returns a MessageTypes object](./spec/unit/models/stats_spec.rb#L17)
@@ -2582,10 +3153,22 @@
* [is always false](./spec/unit/models/token_details_spec.rb#L79)
* ==
* [is true when attributes are the same](./spec/unit/models/token_details_spec.rb#L89)
* [is false when attributes are not the same](./spec/unit/models/token_details_spec.rb#L94)
* [is false when class type differs](./spec/unit/models/token_details_spec.rb#L98)
+ * to_json
+ * with all attributes and values
+ * [returns all attributes](./spec/unit/models/token_details_spec.rb#L130)
+ * with only a token string
+ * [returns populated attributes](./spec/unit/models/token_details_spec.rb#L143)
+ * from_json (#TD7)
+ * with Ruby idiomatic Hash object
+ * [returns a valid TokenDetails object](./spec/unit/models/token_details_spec.rb#L169)
+ * with JSON-like object
+ * [returns a valid TokenDetails object](./spec/unit/models/token_details_spec.rb#L192)
+ * with JSON string
+ * [returns a valid TokenDetails object](./spec/unit/models/token_details_spec.rb#L214)
### Ably::Models::TokenRequest
_(see [spec/unit/models/token_request_spec.rb](./spec/unit/models/token_request_spec.rb))_
* behaves like a model
* attributes
@@ -2621,43 +3204,81 @@
* [is in milliseconds since epoch](./spec/unit/models/token_request_spec.rb#L68)
* ==
* [is true when attributes are the same](./spec/unit/models/token_request_spec.rb#L78)
* [is false when attributes are not the same](./spec/unit/models/token_request_spec.rb#L83)
* [is false when class type differs](./spec/unit/models/token_request_spec.rb#L87)
+ * from_json (#TE6)
+ * with Ruby idiomatic Hash object
+ * [returns a valid TokenRequest object](./spec/unit/models/token_request_spec.rb#L130)
+ * with JSON-like object
+ * [returns a valid TokenRequest object](./spec/unit/models/token_request_spec.rb#L152)
+ * with JSON string
+ * [returns a valid TokenRequest object](./spec/unit/models/token_request_spec.rb#L174)
### Ably::Modules::EventEmitter
_(see [spec/unit/modules/event_emitter_spec.rb](./spec/unit/modules/event_emitter_spec.rb))_
* #emit event fan out
* [should emit an event for any number of subscribers](./spec/unit/modules/event_emitter_spec.rb#L21)
* [sends only messages to matching event names](./spec/unit/modules/event_emitter_spec.rb#L30)
* #on subscribe to multiple events
* [with the same block](./spec/unit/modules/event_emitter_spec.rb#L62)
* event callback changes within the callback block
* when new event callbacks are added
- * [is unaffected and processes the prior event callbacks once](./spec/unit/modules/event_emitter_spec.rb#L86)
- * [adds them for the next emitted event](./spec/unit/modules/event_emitter_spec.rb#L92)
+ * [is unaffected and processes the prior event callbacks once (#RTE6b)](./spec/unit/modules/event_emitter_spec.rb#L86)
+ * [adds them for the next emitted event (#RTE6b)](./spec/unit/modules/event_emitter_spec.rb#L92)
* when callbacks are removed
- * [is unaffected and processes the prior event callbacks once](./spec/unit/modules/event_emitter_spec.rb#L113)
- * [removes them for the next emitted event](./spec/unit/modules/event_emitter_spec.rb#L118)
- * #on
- * [calls the block every time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L131)
- * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L138)
- * #once
- * [calls the block the first time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L160)
- * [does not remove other blocks after it is called](./spec/unit/modules/event_emitter_spec.rb#L167)
- * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L175)
+ * [is unaffected and processes the prior event callbacks once (#RTE6b)](./spec/unit/modules/event_emitter_spec.rb#L113)
+ * [removes them for the next emitted event (#RTE6b)](./spec/unit/modules/event_emitter_spec.rb#L118)
+ * #on (#RTE3)
+ * with event specified
+ * [calls the block every time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L132)
+ * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L139)
+ * with no event specified
+ * [calls the block every time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L149)
+ * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L156)
+ * #once (#RTE4)
+ * with event specified
+ * [calls the block the first time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L182)
+ * [does not remove other blocks after it is called](./spec/unit/modules/event_emitter_spec.rb#L189)
+ * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L197)
+ * with no event specified
+ * [calls the block the first time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L207)
+ * [does not remove other blocks after it is called](./spec/unit/modules/event_emitter_spec.rb#L214)
+ * [catches exceptions in the provided block, logs the error and continues](./spec/unit/modules/event_emitter_spec.rb#L222)
* #unsafe_once
- * [calls the block the first time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L183)
- * [does not catch exceptions in provided blocks](./spec/unit/modules/event_emitter_spec.rb#L190)
+ * [calls the block the first time an event is emitted only](./spec/unit/modules/event_emitter_spec.rb#L233)
+ * [does not catch exceptions in provided blocks](./spec/unit/modules/event_emitter_spec.rb#L240)
* #off
- * with event names as arguments
- * [deletes matching callbacks](./spec/unit/modules/event_emitter_spec.rb#L208)
- * [deletes all callbacks if not block given](./spec/unit/modules/event_emitter_spec.rb#L213)
- * [continues if the block does not exist](./spec/unit/modules/event_emitter_spec.rb#L218)
- * without any event names
- * [deletes all matching callbacks](./spec/unit/modules/event_emitter_spec.rb#L225)
- * [deletes all callbacks if not block given](./spec/unit/modules/event_emitter_spec.rb#L230)
+ * with event specified in on handler
+ * with event names as arguments
+ * [deletes matching callbacks when a block is provided](./spec/unit/modules/event_emitter_spec.rb#L259)
+ * [deletes all matching callbacks when a block is not provided](./spec/unit/modules/event_emitter_spec.rb#L264)
+ * [continues if the block does not exist](./spec/unit/modules/event_emitter_spec.rb#L269)
+ * without any event names
+ * [deletes all matching callbacks](./spec/unit/modules/event_emitter_spec.rb#L276)
+ * [deletes all callbacks if not block given](./spec/unit/modules/event_emitter_spec.rb#L281)
+ * when on callback is configured for all events
+ * with event names as arguments
+ * [does not remove the all events callback when a block is provided](./spec/unit/modules/event_emitter_spec.rb#L298)
+ * [does not remove the all events callback when a block is not provided](./spec/unit/modules/event_emitter_spec.rb#L303)
+ * [does not remove the all events callback when the block does not match](./spec/unit/modules/event_emitter_spec.rb#L308)
+ * without any event names
+ * [deletes all matching callbacks](./spec/unit/modules/event_emitter_spec.rb#L315)
+ * [deletes all callbacks if not block given](./spec/unit/modules/event_emitter_spec.rb#L320)
+ * with unsafe_on subscribers
+ * [does not deregister them](./spec/unit/modules/event_emitter_spec.rb#L336)
+ * with unsafe_once subscribers
+ * [does not deregister them](./spec/unit/modules/event_emitter_spec.rb#L351)
+ * #unsafe_off
+ * with unsafe_on subscribers
+ * [deregisters them](./spec/unit/modules/event_emitter_spec.rb#L370)
+ * with unsafe_once subscribers
+ * [deregister them](./spec/unit/modules/event_emitter_spec.rb#L385)
+ * with on subscribers
+ * [does not deregister them](./spec/unit/modules/event_emitter_spec.rb#L400)
+ * with once subscribers
+ * [does not deregister them](./spec/unit/modules/event_emitter_spec.rb#L415)
### Ably::Modules::StateEmitter
_(see [spec/unit/modules/state_emitter_spec.rb](./spec/unit/modules/state_emitter_spec.rb))_
* [#state returns current state](./spec/unit/modules/state_emitter_spec.rb#L28)
* [#state= sets current state](./spec/unit/modules/state_emitter_spec.rb#L32)
@@ -2769,11 +3390,11 @@
* with token
* [sets the token](./spec/shared/client_initializer_behaviour.rb#L143)
* with token_details
* [sets the token](./spec/shared/client_initializer_behaviour.rb#L151)
* with token_params
- * [configures the default token_params](./spec/shared/client_initializer_behaviour.rb#L159)
+ * [configures default_token_params](./spec/shared/client_initializer_behaviour.rb#L159)
* endpoint
* [defaults to production](./spec/shared/client_initializer_behaviour.rb#L170)
* with environment option
* [uses an alternate endpoint](./spec/shared/client_initializer_behaviour.rb#L177)
* with rest_host option
@@ -2810,31 +3431,31 @@
* [#custom_host](./spec/unit/realtime/client_spec.rb#L23)
### Ably::Realtime::Connection
_(see [spec/unit/realtime/connection_spec.rb](./spec/unit/realtime/connection_spec.rb))_
* callbacks
- * [are supported for valid STATE events](./spec/unit/realtime/connection_spec.rb#L18)
- * [fail with unacceptable STATE event names](./spec/unit/realtime/connection_spec.rb#L24)
+ * [are supported for valid STATE events](./spec/unit/realtime/connection_spec.rb#L21)
+ * [fail with unacceptable STATE event names](./spec/unit/realtime/connection_spec.rb#L27)
### Ably::Realtime::Presence
_(see [spec/unit/realtime/presence_spec.rb](./spec/unit/realtime/presence_spec.rb))_
* callbacks
* [are supported for valid STATE events](./spec/unit/realtime/presence_spec.rb#L13)
* [fail with unacceptable STATE event names](./spec/unit/realtime/presence_spec.rb#L19)
* subscriptions
* #subscribe
- * [without a block raises an invalid ArgumentError](./spec/unit/realtime/presence_spec.rb#L62)
- * [with no action specified subscribes the provided block to all action](./spec/unit/realtime/presence_spec.rb#L66)
- * [with a single action argument subscribes that block to matching actions](./spec/unit/realtime/presence_spec.rb#L72)
- * [with a multiple action arguments subscribes that block to all of those actions](./spec/unit/realtime/presence_spec.rb#L79)
- * [with a multiple duplicate action arguments subscribes that block to all of those unique actions once](./spec/unit/realtime/presence_spec.rb#L91)
+ * [without a block raises an invalid ArgumentError](./spec/unit/realtime/presence_spec.rb#L63)
+ * [with no action specified subscribes the provided block to all action](./spec/unit/realtime/presence_spec.rb#L67)
+ * [with a single action argument subscribes that block to matching actions](./spec/unit/realtime/presence_spec.rb#L73)
+ * [with a multiple action arguments subscribes that block to all of those actions](./spec/unit/realtime/presence_spec.rb#L80)
+ * [with a multiple duplicate action arguments subscribes that block to all of those unique actions once](./spec/unit/realtime/presence_spec.rb#L92)
* #unsubscribe
- * [with no action specified unsubscribes that block from all events](./spec/unit/realtime/presence_spec.rb#L106)
- * [with a single action argument unsubscribes the provided block with the matching action](./spec/unit/realtime/presence_spec.rb#L112)
- * [with multiple action arguments unsubscribes each of those matching actions with the provided block](./spec/unit/realtime/presence_spec.rb#L118)
- * [with a non-matching action argument has no effect](./spec/unit/realtime/presence_spec.rb#L124)
- * [with no block argument unsubscribes all blocks for the action argument](./spec/unit/realtime/presence_spec.rb#L130)
+ * [with no action specified unsubscribes that block from all events](./spec/unit/realtime/presence_spec.rb#L107)
+ * [with a single action argument unsubscribes the provided block with the matching action](./spec/unit/realtime/presence_spec.rb#L113)
+ * [with multiple action arguments unsubscribes each of those matching actions with the provided block](./spec/unit/realtime/presence_spec.rb#L119)
+ * [with a non-matching action argument has no effect](./spec/unit/realtime/presence_spec.rb#L125)
+ * [with no block argument unsubscribes all blocks for the action argument](./spec/unit/realtime/presence_spec.rb#L131)
### Ably::Realtime
_(see [spec/unit/realtime/realtime_spec.rb](./spec/unit/realtime/realtime_spec.rb))_
* [constructor returns an Ably::Realtime::Client](./spec/unit/realtime/realtime_spec.rb#L6)
@@ -2843,44 +3464,44 @@
* behaves like a safe Deferrable
* #errback
* [adds a callback that is called when #fail is called](./spec/shared/safe_deferrable_behaviour.rb#L15)
* [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L22)
* #fail
- * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L32)
+ * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L34)
* #callback
- * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L44)
- * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L51)
+ * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L46)
+ * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L53)
* #succeed
- * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L61)
+ * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L65)
### Ably::Models::Message
_(see [spec/unit/realtime/safe_deferrable_spec.rb](./spec/unit/realtime/safe_deferrable_spec.rb))_
* behaves like a safe Deferrable
* #errback
* [adds a callback that is called when #fail is called](./spec/shared/safe_deferrable_behaviour.rb#L15)
* [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L22)
* #fail
- * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L32)
+ * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L34)
* #callback
- * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L44)
- * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L51)
+ * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L46)
+ * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L53)
* #succeed
- * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L61)
+ * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L65)
### Ably::Models::PresenceMessage
_(see [spec/unit/realtime/safe_deferrable_spec.rb](./spec/unit/realtime/safe_deferrable_spec.rb))_
* behaves like a safe Deferrable
* #errback
* [adds a callback that is called when #fail is called](./spec/shared/safe_deferrable_behaviour.rb#L15)
* [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L22)
* #fail
- * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L32)
+ * [calls the callbacks defined with #errback, but not the ones added for success #callback](./spec/shared/safe_deferrable_behaviour.rb#L34)
* #callback
- * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L44)
- * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L51)
+ * [adds a callback that is called when #succed is called](./spec/shared/safe_deferrable_behaviour.rb#L46)
+ * [catches exceptions in the callback and logs the error to the logger](./spec/shared/safe_deferrable_behaviour.rb#L53)
* #succeed
- * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L61)
+ * [calls the callbacks defined with #callback, but not the ones added for #errback](./spec/shared/safe_deferrable_behaviour.rb#L65)
### Ably::Rest::Channel
_(see [spec/unit/rest/channel_spec.rb](./spec/unit/rest/channel_spec.rb))_
* #initializer
* as UTF_8 string
@@ -2956,11 +3577,11 @@
* with token
* [sets the token](./spec/shared/client_initializer_behaviour.rb#L143)
* with token_details
* [sets the token](./spec/shared/client_initializer_behaviour.rb#L151)
* with token_params
- * [configures the default token_params](./spec/shared/client_initializer_behaviour.rb#L159)
+ * [configures default_token_params](./spec/shared/client_initializer_behaviour.rb#L159)
* endpoint
* [defaults to production](./spec/shared/client_initializer_behaviour.rb#L170)
* with environment option
* [uses an alternate endpoint](./spec/shared/client_initializer_behaviour.rb#L177)
* with rest_host option
@@ -2989,11 +3610,11 @@
* [delegates :client_id to .auth](./spec/shared/client_initializer_behaviour.rb#L293)
* [delegates :auth_options to .auth](./spec/shared/client_initializer_behaviour.rb#L298)
* initializer options
* TLS
* disabled
- * [fails for any operation with basic auth and attempting to send an API key over a non-secure connection](./spec/unit/rest/client_spec.rb#L17)
+ * [fails for any operation with basic auth and attempting to send an API key over a non-secure connection (#RSA1)](./spec/unit/rest/client_spec.rb#L17)
* :use_token_auth
* set to false
* with a key and :tls => false
* [fails for any operation with basic auth and attempting to send an API key over a non-secure connection](./spec/unit/rest/client_spec.rb#L28)
* without a key
@@ -3026,16 +3647,16 @@
* [#decrypt decrypts a string](./spec/unit/util/crypto_spec.rb#L84)
* encrypting an empty string
* [raises an ArgumentError](./spec/unit/util/crypto_spec.rb#L93)
* using shared client lib fixture data
* with AES-128-CBC
- * behaves like an Ably encrypter and decrypter
+ * behaves like an Ably encrypter and decrypter (#RTL7d)
* text payload
* [encrypts exactly the same binary data as other client libraries](./spec/unit/util/crypto_spec.rb#L116)
* [decrypts exactly the same binary data as other client libraries](./spec/unit/util/crypto_spec.rb#L120)
* with AES-256-CBC
- * behaves like an Ably encrypter and decrypter
+ * behaves like an Ably encrypter and decrypter (#RTL7d)
* text payload
* [encrypts exactly the same binary data as other client libraries](./spec/unit/util/crypto_spec.rb#L116)
* [decrypts exactly the same binary data as other client libraries](./spec/unit/util/crypto_spec.rb#L120)
### Ably::Util::PubSub
@@ -3050,8 +3671,8 @@
-------
## Test summary
- * Passing tests: 1492
- * Pending tests: 6
+ * Passing tests: 1806
+ * Pending tests: 12
* Failing tests: 0