forked from ably/ably-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_spec.rb
90 lines (72 loc) · 2.91 KB
/
client_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# encoding: utf-8
require 'spec_helper'
require 'shared/client_initializer_behaviour'
describe Ably::Rest::Client do
subject do
Ably::Rest::Client.new(client_options)
end
it_behaves_like 'a client initializer'
context 'initializer options' do
context 'TLS' do
context 'disabled' do
let(:client_options) { { key: 'appid.keyuid:keysecret', tls: false } }
it 'fails for any operation with basic auth and attempting to send an API key over a non-secure connection (#RSA1)' do
expect { subject.channel('a').publish('event', 'message') }.to raise_error(Ably::Exceptions::InsecureRequest)
end
end
end
context 'fallback_retry_timeout (#RSC15f)' do
context 'default' do
let(:client_options) { { key: 'appid.keyuid:keysecret' } }
it 'is set to 10 minutes' do
expect(subject.options.fetch(:fallback_retry_timeout)).to eql(10 * 60)
end
end
context 'when provided' do
let(:client_options) { { key: 'appid.keyuid:keysecret', fallback_retry_timeout: 30 } }
it 'configures a new timeout' do
expect(subject.options.fetch(:fallback_retry_timeout)).to eql(30)
end
end
end
context ':use_token_auth' do
context 'set to false' do
context 'with a key and :tls => false' do
let(:client_options) { { use_token_auth: false, key: 'appid.keyuid:keysecret', tls: false } }
it 'fails for any operation with basic auth and attempting to send an API key over a non-secure connection' do
expect { subject.channel('a').publish('event', 'message') }.to raise_error(Ably::Exceptions::InsecureRequest)
end
end
context 'without a key' do
let(:client_options) { { use_token_auth: false } }
it 'fails as a key is required if not using token auth' do
expect { subject.channel('a').publish('event', 'message') }.to raise_error(ArgumentError)
end
end
end
context 'set to true' do
context 'without a key or token' do
let(:client_options) { { use_token_auth: true, key: true } }
it 'fails as a key is required to issue tokens' do
expect { subject.channel('a').publish('event', 'message') }.to raise_error(ArgumentError)
end
end
end
end
end
context 'request_id generation' do
let(:client_options) { { key: 'appid.keyuid:keysecret', add_request_ids: true } }
it 'includes request_id in URL' do
expect(subject.add_request_ids).to eql(true)
end
end
context 'push' do
let(:client_options) { { key: 'appid.keyuid:keysecret' } }
specify '#device is not supported and raises an exception' do
expect { subject.device }.to raise_error Ably::Exceptions::PushNotificationsNotSupported
end
specify '#push returns a Push object' do
expect(subject.push).to be_a(Ably::Rest::Push)
end
end
end