Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RTL6e #196

Merged
merged 2 commits into from
Feb 8, 2016
Merged

RTL6e #196

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions ablySpec/RealtimeClientChannel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,36 @@ class RealtimeClientChannel: QuickSpec {

}

// RTL6e
context("Unidentified clients using Basic Auth") {

// RTL6e1
pending("should have the provided clientId on received message when it was published with clientId") {
let client = ARTRealtime(options: AblyTests.commonAppSetup())
defer { client.close() }

expect(client.auth().clientId).to(beNil())

let channel = client.channels.get("test")

var resultClientId: String?
channel.subscribe { message, errorInfo in
expect(errorInfo).to(beNil())
resultClientId = message.clientId
}

let message = ARTMessage(data: "message", name: nil)
message.clientId = "client_string"

channel.publish(message, cb: { status in
expect(status.state).to(equal(ARTState.Ok))
})

expect(resultClientId).toEventually(equal(message.clientId), timeout: testTimeout)
}

}

}

}
Expand Down