forked from ably/ably-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
token_request_spec.rb
184 lines (149 loc) · 5.86 KB
/
token_request_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
require 'spec_helper'
require 'shared/model_behaviour'
describe Ably::Models::TokenRequest do
subject { Ably::Models::TokenRequest }
it_behaves_like 'a model', with_simple_attributes: %w(key_name client_id nonce mac) do
let(:model_args) { [] }
end
context 'attributes' do
context '#capability' do
let(:capability) { { "value" => random_str } }
let(:capability_str) { JSON.dump(capability) }
subject { Ably::Models::TokenRequest.new({ capability: capability_str }) }
it 'retrieves attribute :capability as parsed JSON' do
expect(subject.capability).to eql(capability)
end
end
context "#timestamp" do
let(:time) { Time.now }
context 'with :timestamp option as milliseconds in constructor' do
subject { Ably::Models::TokenRequest.new(timestamp: time.to_i * 1000) }
it "retrieves attribute :timestamp as Time" do
expect(subject.timestamp).to be_a(Time)
expect(subject.timestamp.to_i).to eql(time.to_i)
end
end
context 'with :timestamp option as Time in constructor' do
subject { Ably::Models::TokenRequest.new(timestamp: time) }
it "retrieves attribute :timestamp as Time" do
expect(subject.timestamp).to be_a(Time)
expect(subject.timestamp.to_i).to eql(time.to_i)
end
end
context 'when converted to JSON' do
subject { Ably::Models::TokenRequest.new(timestamp: time) }
it "is in milliseconds since epoch" do
expect(JSON.parse(JSON.dump(subject))['timestamp']).to eql((time.to_f * 1000).round)
end
end
end
context "#ttl" do
let(:ttl) { 500 }
context 'with :ttl option as milliseconds in constructor' do
subject { Ably::Models::TokenRequest.new(ttl: ttl * 1000) }
it "retrieves attribute :ttl as seconds" do
expect(subject.ttl).to be_a(Integer)
expect(subject.ttl).to eql(ttl)
end
end
context 'when converted to JSON' do
subject { Ably::Models::TokenRequest.new(ttl: ttl * 1000) }
it "is in milliseconds since epoch" do
expect(JSON.parse(JSON.dump(subject))['ttl']).to eql(ttl * 1000)
end
end
end
end
context '==' do
let(:token_attributes) { { client_id: random_str } }
it 'is true when attributes are the same' do
new_token = -> { Ably::Models::TokenRequest.new(token_attributes) }
expect(new_token[]).to eq(new_token[])
end
it 'is false when attributes are not the same' do
expect(Ably::Models::TokenRequest.new(client_id: 1)).to_not eq(Ably::Models::TokenRequest.new(client_id: 2))
end
it 'is false when class type differs' do
expect(Ably::Models::TokenRequest.new(client_id: 1)).to_not eq(nil)
end
end
context 'TokenRequest conversion methods', :api_private do
context 'with a TokenRequest object' do
let(:token_request) { Ably::Models::TokenRequest.new(client_id: random_str) }
it 'returns the TokenRequest object' do
expect(Ably::Models::TokenRequest(token_request)).to eql(token_request)
end
end
context 'with a JSON object' do
let(:client_id) { random_str }
let(:token_request_json) { { client_id: client_id } }
it 'returns a new TokenRequest object from the JSON' do
expect(Ably::Models::TokenRequest(token_request_json).client_id).to eql(client_id)
end
end
end
context 'from_json (#TE6)' do
let(:timestamp) { Time.now }
let(:capabilities) { { '*' => ['publish'] } }
let(:ttl_seconds) { 60 * 1000 }
context 'with Ruby idiomatic Hash object' do
subject { Ably::Models::TokenRequest.from_json(token_request_object) }
let(:token_request_object) do
{
nonce: 'val1',
key_name: 'val2',
ttl: ttl_seconds * 1000,
timestamp: timestamp.to_i * 1000,
capability: capabilities,
client_id: 'val3'
}
end
it 'returns a valid TokenRequest object' do
expect(subject.nonce).to eql('val1')
expect(subject.key_name).to eql('val2')
expect(subject.timestamp.to_f).to be_within(1).of(timestamp.to_f)
expect(subject.ttl).to eql(ttl_seconds)
expect(subject.capability).to eql(capabilities)
expect(subject.client_id).to eql('val3')
end
end
context 'with JSON-like object' do
subject { Ably::Models::TokenRequest.from_json(token_request_object) }
let(:token_request_object) do
{
'keyName' => 'val2',
'ttl' => ttl_seconds * 1000,
'timestamp' => timestamp.to_i * 1000,
'clientId' => 'val3'
}
end
it 'returns a valid TokenRequest object' do
expect { subject.nonce }.to raise_error(Ably::Exceptions::InvalidTokenRequest)
expect(subject.key_name).to eql('val2')
expect(subject.timestamp.to_f).to be_within(1).of(timestamp.to_f)
expect(subject.ttl).to eql(ttl_seconds)
expect { subject.capability }.to raise_error(Ably::Exceptions::InvalidTokenRequest)
expect(subject.client_id).to eql('val3')
end
end
context 'with JSON string' do
subject { Ably::Models::TokenRequest.from_json(JSON.dump(token_request_object)) }
let(:token_request_object) do
{
'nonce' => 'val1',
'ttl' => ttl_seconds * 1000,
'capability' => JSON.dump(capabilities),
'clientId' => 'val3'
}
end
it 'returns a valid TokenRequest object' do
expect(subject.nonce).to eql('val1')
expect { subject.key_name }.to raise_error(Ably::Exceptions::InvalidTokenRequest)
expect { subject.timestamp }.to raise_error(Ably::Exceptions::InvalidTokenRequest)
expect(subject.ttl).to eql(ttl_seconds)
expect(subject.capability).to eql(capabilities)
expect(subject.client_id).to eql('val3')
end
end
end
end