-
Notifications
You must be signed in to change notification settings - Fork 19
/
token_details_spec.rb
240 lines (193 loc) · 7.83 KB
/
token_details_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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
require 'spec_helper'
require 'shared/model_behaviour'
describe Ably::Models::TokenDetails do
include Ably::Modules::Conversions
subject { Ably::Models::TokenDetails }
it_behaves_like 'a model', with_simple_attributes: %w(token key_name client_id) do
let(:model_args) { [] }
end
context 'attributes' do
let(:capability) { { "value" => random_str } }
let(:capability_str) { JSON.dump(capability) }
context '#capability' do
subject { Ably::Models::TokenDetails.new({ capability: capability_str }) }
it 'retrieves attribute :capability as parsed JSON' do
expect(subject.capability).to eql(capability)
end
end
context do
let(:time) { Time.now }
{ :issued => :issued, :expires => :expires }.each do |method_name, attribute|
context "##{method_name} with :#{method_name} option as milliseconds in constructor" do
subject { Ably::Models::TokenDetails.new({ attribute.to_sym => time.to_i * 1000 }) }
it "retrieves attribute :#{attribute} as Time" do
expect(subject.public_send(method_name)).to be_a(Time)
expect(subject.public_send(method_name).to_i).to eql(time.to_i)
end
end
context "##{method_name} with :#{method_name} option as a Time in constructor" do
subject { Ably::Models::TokenDetails.new({ attribute.to_sym => time }) }
it "retrieves attribute :#{attribute} as Time" do
expect(subject.public_send(method_name)).to be_a(Time)
expect(subject.public_send(method_name).to_i).to eql(time.to_i)
end
end
context "##{method_name} when converted to JSON" do
subject { Ably::Models::TokenDetails.new({ attribute.to_sym => time }) }
it 'is in milliseconds' do
expect(JSON.parse(JSON.dump(subject))[convert_to_mixed_case(attribute)]).to eql((time.to_f * 1000).round)
end
end
end
end
context '#expired?' do
let(:expire_time) { Time.now + Ably::Models::TokenDetails::TOKEN_EXPIRY_BUFFER }
let(:clock_skew) { 1 } # clock skew of 1 second
context 'once grace period buffer has passed' do
subject { Ably::Models::TokenDetails.new(expires: expire_time - 1) }
it 'is true' do
expect(subject.expired?).to eql(true)
end
end
context 'within grace period buffer' do
subject { Ably::Models::TokenDetails.new(expires: expire_time + 1) }
it 'is false' do
expect(subject.expired?).to eql(false)
end
end
context 'when expires is not available (i.e. string tokens)' do
subject { Ably::Models::TokenDetails.new }
it 'is always false' do
expect(subject.expired?).to eql(false)
end
end
context 'with :from attribute' do
subject { Ably::Models::TokenDetails.new(expires: expire_time) }
let(:server_offset_time) { 2 * 60 * 60 } # 2 hours
it 'is false' do
expect(subject.expired?(from: (Time.now - server_offset_time))).to eql(false)
end
# Test is flaky and fails on CI, so adding a bit of extra tolerance (clock_skew) to make it work
it 'is true' do
expect(subject.expired?(from: Time.now + clock_skew)).to eql(true)
end
end
end
end
context '==' do
let(:token_attributes) { { token: 'unique' } }
it 'is true when attributes are the same' do
new_token = -> { Ably::Models::TokenDetails.new(token_attributes) }
expect(new_token[]).to eq(new_token[])
end
it 'is false when attributes are not the same' do
expect(Ably::Models::TokenDetails.new(token: 1)).to_not eq(Ably::Models::TokenDetails.new(token: 2))
end
it 'is false when class type differs' do
expect(Ably::Models::TokenDetails.new(token: 1)).to_not eq(nil)
end
end
context 'TokenDetails conversion methods', :api_private do
context 'with a TokenDetails object' do
let(:token_details) { Ably::Models::TokenDetails.new(client_id: random_str) }
it 'returns the TokenDetails object' do
expect(Ably::Models::TokenDetails(token_details)).to eql(token_details)
end
end
context 'with a JSON object' do
let(:client_id) { random_str }
let(:token_details_json) { { client_id: client_id } }
it 'returns a new TokenDetails object from the JSON' do
expect(Ably::Models::TokenDetails(token_details_json).client_id).to eql(client_id)
end
end
end
context 'to_json' do
let(:token_json_parsed) { JSON.parse(Ably::Models::TokenDetails(token_attributes).to_json) }
context 'with all attributes and values' do
let(:token_attributes) do
{ token: random_str, capability: random_str, keyName: random_str, issued: Time.now.to_i, expires: Time.now.to_i + 10, clientId: random_str }
end
it 'returns all attributes' do
token_attributes.each do |key, val|
expect(token_json_parsed[key.to_s]).to eql(val)
end
expect(token_attributes.keys.length).to eql(token_json_parsed.keys.length)
end
end
context 'with only a token string' do
let(:token_attributes) do
{ token: random_str }
end
it 'returns populated attributes' do
expect(token_json_parsed['token']).to eql(token_attributes[:token])
expect(token_json_parsed.keys.length).to eql(1)
end
end
end
context 'from_json (#TD7)' do
let(:issued_time) { Time.now }
let(:expires_time) { Time.now + 24*60*60 }
let(:capabilities) { { '*' => ['publish'] } }
context 'with Ruby idiomatic Hash object' do
subject { Ably::Models::TokenDetails.from_json(token_details_object) }
let(:token_details_object) do
{
token: 'val1',
key_name: 'val2',
issued: issued_time.to_i * 1000,
expires: expires_time.to_i * 1000,
capability: capabilities,
client_id: 'val3'
}
end
it 'returns a valid TokenDetails object' do
expect(subject.token).to eql('val1')
expect(subject.key_name).to eql('val2')
expect(subject.issued.to_f).to be_within(1).of(issued_time.to_f)
expect(subject.expires.to_f).to be_within(1).of(expires_time.to_f)
expect(subject.capability).to eql(capabilities)
expect(subject.client_id).to eql('val3')
end
end
context 'with JSON-like object' do
subject { Ably::Models::TokenDetails.from_json(token_details_object) }
let(:token_details_object) do
{
'keyName' => 'val2',
'issued' => issued_time.to_i * 1000,
'expires' => expires_time.to_i * 1000,
'capability' => JSON.dump(capabilities),
'clientId' => 'val3'
}
end
it 'returns a valid TokenDetails object' do
expect(subject.token).to be_nil
expect(subject.key_name).to eql('val2')
expect(subject.issued.to_f).to be_within(1).of(issued_time.to_f)
expect(subject.expires.to_f).to be_within(1).of(expires_time.to_f)
expect(subject.capability).to eql(capabilities)
expect(subject.client_id).to eql('val3')
end
end
context 'with JSON string' do
subject { Ably::Models::TokenDetails.from_json(JSON.dump(token_details_object)) }
let(:token_details_object) do
{
'keyName' => 'val2',
'issued' => issued_time.to_i * 1000,
'expires' => expires_time.to_i * 1000,
'clientId' => 'val3'
}
end
it 'returns a valid TokenDetails object' do
expect(subject.token).to be_nil
expect(subject.key_name).to eql('val2')
expect(subject.issued.to_f).to be_within(1).of(issued_time.to_f)
expect(subject.expires.to_f).to be_within(1).of(expires_time.to_f)
expect(subject.capability).to be_nil
expect(subject.client_id).to eql('val3')
end
end
end
end