ably-rest 0.7.1 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/.gitmodules +1 -1
- data/.rspec +1 -0
- data/.travis.yml +7 -3
- data/SPEC.md +495 -419
- data/ably-rest.gemspec +19 -5
- data/lib/ably-rest.rb +9 -1
- data/lib/submodules/ably-ruby/.gitignore +6 -0
- data/lib/submodules/ably-ruby/.rspec +1 -0
- data/lib/submodules/ably-ruby/.ruby-version.old +1 -0
- data/lib/submodules/ably-ruby/.travis.yml +10 -0
- data/lib/submodules/ably-ruby/Gemfile +4 -0
- data/lib/submodules/ably-ruby/LICENSE.txt +22 -0
- data/lib/submodules/ably-ruby/README.md +122 -0
- data/lib/submodules/ably-ruby/Rakefile +34 -0
- data/lib/submodules/ably-ruby/SPEC.md +1794 -0
- data/lib/submodules/ably-ruby/ably.gemspec +36 -0
- data/lib/submodules/ably-ruby/lib/ably.rb +12 -0
- data/lib/submodules/ably-ruby/lib/ably/auth.rb +438 -0
- data/lib/submodules/ably-ruby/lib/ably/exceptions.rb +69 -0
- data/lib/submodules/ably-ruby/lib/ably/logger.rb +102 -0
- data/lib/submodules/ably-ruby/lib/ably/models/error_info.rb +37 -0
- data/lib/submodules/ably-ruby/lib/ably/models/idiomatic_ruby_wrapper.rb +223 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message.rb +132 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message_encoders/base.rb +108 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message_encoders/base64.rb +40 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message_encoders/cipher.rb +83 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message_encoders/json.rb +34 -0
- data/lib/submodules/ably-ruby/lib/ably/models/message_encoders/utf8.rb +26 -0
- data/lib/submodules/ably-ruby/lib/ably/models/nil_logger.rb +20 -0
- data/lib/submodules/ably-ruby/lib/ably/models/paginated_resource.rb +173 -0
- data/lib/submodules/ably-ruby/lib/ably/models/presence_message.rb +147 -0
- data/lib/submodules/ably-ruby/lib/ably/models/protocol_message.rb +210 -0
- data/lib/submodules/ably-ruby/lib/ably/models/stat.rb +161 -0
- data/lib/submodules/ably-ruby/lib/ably/models/token.rb +74 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/ably.rb +15 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/async_wrapper.rb +62 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/channels_collection.rb +69 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/conversions.rb +100 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/encodeable.rb +69 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/enum.rb +202 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/event_emitter.rb +128 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/event_machine_helpers.rb +26 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/http_helpers.rb +41 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/message_pack.rb +14 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/model_common.rb +41 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/state_emitter.rb +153 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/state_machine.rb +57 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/statesman_monkey_patch.rb +33 -0
- data/lib/submodules/ably-ruby/lib/ably/modules/uses_state_machine.rb +74 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime.rb +64 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/channel.rb +298 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/channel/channel_manager.rb +92 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/channel/channel_state_machine.rb +69 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/channels.rb +50 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/client.rb +184 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/client/incoming_message_dispatcher.rb +184 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/client/outgoing_message_dispatcher.rb +70 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/connection.rb +445 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/connection/connection_manager.rb +368 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/connection/connection_state_machine.rb +91 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/connection/websocket_transport.rb +188 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/models/nil_channel.rb +30 -0
- data/lib/submodules/ably-ruby/lib/ably/realtime/presence.rb +564 -0
- data/lib/submodules/ably-ruby/lib/ably/rest.rb +43 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/channel.rb +104 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/channels.rb +44 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/client.rb +396 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/encoder.rb +49 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/exceptions.rb +41 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/external_exceptions.rb +24 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/fail_if_unsupported_mime_type.rb +17 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/logger.rb +58 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/parse_json.rb +27 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/middleware/parse_message_pack.rb +27 -0
- data/lib/submodules/ably-ruby/lib/ably/rest/presence.rb +92 -0
- data/lib/submodules/ably-ruby/lib/ably/util/crypto.rb +105 -0
- data/lib/submodules/ably-ruby/lib/ably/util/pub_sub.rb +43 -0
- data/lib/submodules/ably-ruby/lib/ably/version.rb +3 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/channel_history_spec.rb +154 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/channel_spec.rb +558 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/client_spec.rb +119 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/connection_failures_spec.rb +575 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/connection_spec.rb +785 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/message_spec.rb +457 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/presence_history_spec.rb +55 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/presence_spec.rb +1001 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/stats_spec.rb +23 -0
- data/lib/submodules/ably-ruby/spec/acceptance/realtime/time_spec.rb +27 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/auth_spec.rb +564 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/base_spec.rb +165 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/channel_spec.rb +134 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/channels_spec.rb +41 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/client_spec.rb +273 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/encoders_spec.rb +185 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/message_spec.rb +247 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/presence_spec.rb +292 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/stats_spec.rb +172 -0
- data/lib/submodules/ably-ruby/spec/acceptance/rest/time_spec.rb +15 -0
- data/lib/submodules/ably-ruby/spec/resources/crypto-data-128.json +56 -0
- data/lib/submodules/ably-ruby/spec/resources/crypto-data-256.json +56 -0
- data/lib/submodules/ably-ruby/spec/rspec_config.rb +57 -0
- data/lib/submodules/ably-ruby/spec/shared/client_initializer_behaviour.rb +212 -0
- data/lib/submodules/ably-ruby/spec/shared/model_behaviour.rb +86 -0
- data/lib/submodules/ably-ruby/spec/shared/protocol_msgbus_behaviour.rb +36 -0
- data/lib/submodules/ably-ruby/spec/spec_helper.rb +20 -0
- data/lib/submodules/ably-ruby/spec/support/api_helper.rb +60 -0
- data/lib/submodules/ably-ruby/spec/support/event_machine_helper.rb +104 -0
- data/lib/submodules/ably-ruby/spec/support/markdown_spec_formatter.rb +118 -0
- data/lib/submodules/ably-ruby/spec/support/private_api_formatter.rb +36 -0
- data/lib/submodules/ably-ruby/spec/support/protocol_helper.rb +32 -0
- data/lib/submodules/ably-ruby/spec/support/random_helper.rb +15 -0
- data/lib/submodules/ably-ruby/spec/support/rest_testapp_before_retry.rb +15 -0
- data/lib/submodules/ably-ruby/spec/support/test_app.rb +113 -0
- data/lib/submodules/ably-ruby/spec/unit/auth_spec.rb +68 -0
- data/lib/submodules/ably-ruby/spec/unit/logger_spec.rb +146 -0
- data/lib/submodules/ably-ruby/spec/unit/models/error_info_spec.rb +18 -0
- data/lib/submodules/ably-ruby/spec/unit/models/idiomatic_ruby_wrapper_spec.rb +349 -0
- data/lib/submodules/ably-ruby/spec/unit/models/message_encoders/base64_spec.rb +181 -0
- data/lib/submodules/ably-ruby/spec/unit/models/message_encoders/cipher_spec.rb +260 -0
- data/lib/submodules/ably-ruby/spec/unit/models/message_encoders/json_spec.rb +135 -0
- data/lib/submodules/ably-ruby/spec/unit/models/message_encoders/utf8_spec.rb +56 -0
- data/lib/submodules/ably-ruby/spec/unit/models/message_spec.rb +389 -0
- data/lib/submodules/ably-ruby/spec/unit/models/paginated_resource_spec.rb +288 -0
- data/lib/submodules/ably-ruby/spec/unit/models/presence_message_spec.rb +386 -0
- data/lib/submodules/ably-ruby/spec/unit/models/protocol_message_spec.rb +315 -0
- data/lib/submodules/ably-ruby/spec/unit/models/stat_spec.rb +113 -0
- data/lib/submodules/ably-ruby/spec/unit/models/token_spec.rb +86 -0
- data/lib/submodules/ably-ruby/spec/unit/modules/async_wrapper_spec.rb +124 -0
- data/lib/submodules/ably-ruby/spec/unit/modules/conversions_spec.rb +72 -0
- data/lib/submodules/ably-ruby/spec/unit/modules/enum_spec.rb +272 -0
- data/lib/submodules/ably-ruby/spec/unit/modules/event_emitter_spec.rb +184 -0
- data/lib/submodules/ably-ruby/spec/unit/modules/state_emitter_spec.rb +283 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/channel_spec.rb +206 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/channels_spec.rb +81 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/client_spec.rb +30 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/connection_spec.rb +33 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/incoming_message_dispatcher_spec.rb +36 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/presence_spec.rb +111 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/realtime_spec.rb +9 -0
- data/lib/submodules/ably-ruby/spec/unit/realtime/websocket_transport_spec.rb +25 -0
- data/lib/submodules/ably-ruby/spec/unit/rest/channel_spec.rb +109 -0
- data/lib/submodules/ably-ruby/spec/unit/rest/channels_spec.rb +79 -0
- data/lib/submodules/ably-ruby/spec/unit/rest/client_spec.rb +53 -0
- data/lib/submodules/ably-ruby/spec/unit/rest/rest_spec.rb +10 -0
- data/lib/submodules/ably-ruby/spec/unit/util/crypto_spec.rb +87 -0
- data/lib/submodules/ably-ruby/spec/unit/util/pub_sub_spec.rb +86 -0
- metadata +182 -27
@@ -0,0 +1,181 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'base64'
|
3
|
+
require 'msgpack'
|
4
|
+
|
5
|
+
require 'ably/models/message_encoders/base64'
|
6
|
+
|
7
|
+
describe Ably::Models::MessageEncoders::Base64 do
|
8
|
+
let(:decoded_data) { random_str(32) }
|
9
|
+
let(:base64_data) { Base64.encode64(decoded_data) }
|
10
|
+
let(:binary_data) { MessagePack.pack(decoded_data) }
|
11
|
+
let(:base64_binary_data) { Base64.encode64(binary_data) }
|
12
|
+
let(:client) { instance_double('Ably::Realtime::Client') }
|
13
|
+
|
14
|
+
subject { Ably::Models::MessageEncoders::Base64.new(client) }
|
15
|
+
|
16
|
+
context '#decode' do
|
17
|
+
before do
|
18
|
+
subject.decode message, {}
|
19
|
+
end
|
20
|
+
|
21
|
+
context 'message with base64 payload' do
|
22
|
+
let(:message) { { data: base64_data, encoding: 'base64' } }
|
23
|
+
|
24
|
+
it 'decodes base64' do
|
25
|
+
expect(message[:data]).to eql(decoded_data)
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'strips the encoding' do
|
29
|
+
expect(message[:encoding]).to be_nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'message with base64 payload before other payloads' do
|
34
|
+
let(:message) { { data: base64_data, encoding: 'utf-8/base64' } }
|
35
|
+
|
36
|
+
it 'decodes base64' do
|
37
|
+
expect(message[:data]).to eql(decoded_data)
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'strips the encoding' do
|
41
|
+
expect(message[:encoding]).to eql('utf-8')
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context 'message with another payload' do
|
46
|
+
let(:message) { { data: decoded_data, encoding: 'utf-8' } }
|
47
|
+
|
48
|
+
it 'leaves the message data intact' do
|
49
|
+
expect(message[:data]).to eql(decoded_data)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'leaves the encoding intact' do
|
53
|
+
expect(message[:encoding]).to eql('utf-8')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
context '#encode' do
|
59
|
+
context 'over binary transport' do
|
60
|
+
before do
|
61
|
+
allow(client).to receive(:protocol_binary?).and_return(true)
|
62
|
+
subject.encode message, {}
|
63
|
+
end
|
64
|
+
|
65
|
+
context 'message with binary payload' do
|
66
|
+
let(:message) { { data: binary_data, encoding: nil } }
|
67
|
+
|
68
|
+
it 'leaves the message data intact as Base64 encoding is not necessary' do
|
69
|
+
expect(message[:data]).to eql(binary_data)
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'leaves the encoding intact' do
|
73
|
+
expect(message[:encoding]).to eql(nil)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context 'already encoded message with binary payload' do
|
78
|
+
let(:message) { { data: binary_data, encoding: 'cipher' } }
|
79
|
+
|
80
|
+
it 'leaves the message data intact as Base64 encoding is not necessary' do
|
81
|
+
expect(message[:data]).to eql(binary_data)
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'leaves the encoding intact' do
|
85
|
+
expect(message[:encoding]).to eql('cipher')
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
context 'message with UTF-8 payload' do
|
90
|
+
let(:message) { { data: decoded_data, encoding: nil } }
|
91
|
+
|
92
|
+
it 'leaves the data intact' do
|
93
|
+
expect(message[:data]).to eql(decoded_data)
|
94
|
+
end
|
95
|
+
|
96
|
+
it 'leaves the encoding intact' do
|
97
|
+
expect(message[:encoding]).to be_nil
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
context 'message with nil payload' do
|
102
|
+
let(:message) { { data: nil, encoding: nil } }
|
103
|
+
|
104
|
+
it 'leaves the message data intact' do
|
105
|
+
expect(message[:data]).to be_nil
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'leaves the encoding intact' do
|
109
|
+
expect(message[:encoding]).to be_nil
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
context 'message with empty binary string payload' do
|
114
|
+
let(:message) { { data: ''.encode(Encoding::ASCII_8BIT), encoding: nil } }
|
115
|
+
|
116
|
+
it 'leaves the message data intact' do
|
117
|
+
expect(message[:data]).to eql('')
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'leaves the encoding intact' do
|
121
|
+
expect(message[:encoding]).to be_nil
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
context 'over text transport' do
|
127
|
+
before do
|
128
|
+
allow(client).to receive(:protocol_binary?).and_return(false)
|
129
|
+
subject.encode message, {}
|
130
|
+
end
|
131
|
+
|
132
|
+
context 'message with binary payload' do
|
133
|
+
let(:message) { { data: binary_data, encoding: nil } }
|
134
|
+
|
135
|
+
it 'encodes binary data as base64' do
|
136
|
+
expect(message[:data]).to eql(base64_binary_data)
|
137
|
+
end
|
138
|
+
|
139
|
+
it 'adds the encoding' do
|
140
|
+
expect(message[:encoding]).to eql('base64')
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
context 'already encoded message with binary payload' do
|
145
|
+
let(:message) { { data: binary_data, encoding: 'cipher' } }
|
146
|
+
|
147
|
+
it 'encodes binary data as base64' do
|
148
|
+
expect(message[:data]).to eql(base64_binary_data)
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'adds the encoding' do
|
152
|
+
expect(message[:encoding]).to eql('cipher/base64')
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
context 'message with UTF-8 payload' do
|
157
|
+
let(:message) { { data: decoded_data, encoding: nil } }
|
158
|
+
|
159
|
+
it 'leaves the data intact' do
|
160
|
+
expect(message[:data]).to eql(decoded_data)
|
161
|
+
end
|
162
|
+
|
163
|
+
it 'leaves the encoding intact' do
|
164
|
+
expect(message[:encoding]).to be_nil
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
context 'message with nil payload' do
|
169
|
+
let(:message) { { data: nil, encoding: nil } }
|
170
|
+
|
171
|
+
it 'leaves the message data intact' do
|
172
|
+
expect(message[:data]).to be_nil
|
173
|
+
end
|
174
|
+
|
175
|
+
it 'leaves the encoding intact' do
|
176
|
+
expect(message[:encoding]).to be_nil
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
@@ -0,0 +1,260 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'ably/models/message_encoders/cipher'
|
3
|
+
require 'msgpack'
|
4
|
+
|
5
|
+
describe Ably::Models::MessageEncoders::Cipher do
|
6
|
+
let(:secret_key) { random_str(64) }
|
7
|
+
let(:crypto_options) { { key: secret_key, algorithm: 'AES', mode: 'CBC', key_length: 128 } }
|
8
|
+
let(:crypto) { Ably::Util::Crypto.new(cipher_params) }
|
9
|
+
|
10
|
+
let(:decoded_data) { random_str(32) }
|
11
|
+
let(:cipher_data) { crypto.encrypt(decoded_data) }
|
12
|
+
|
13
|
+
let(:binary_data) { MessagePack.pack(decoded_data) }
|
14
|
+
let(:binary_cipher_data) { crypto.encrypt(binary_data) }
|
15
|
+
|
16
|
+
let(:client) { instance_double('Ably::Realtime::Client') }
|
17
|
+
|
18
|
+
subject { Ably::Models::MessageEncoders::Cipher.new(client) }
|
19
|
+
|
20
|
+
context '#decode' do
|
21
|
+
context 'with channel set up for AES-128-CBC' do
|
22
|
+
let(:cipher_params) { crypto_options }
|
23
|
+
|
24
|
+
context 'valid cipher data' do
|
25
|
+
before do
|
26
|
+
subject.decode message, { encrypted: true, cipher_params: cipher_params }
|
27
|
+
end
|
28
|
+
|
29
|
+
context 'message with cipher payload' do
|
30
|
+
let(:message) { { data: cipher_data, encoding: 'cipher+aes-128-cbc' } }
|
31
|
+
|
32
|
+
it 'decodes cipher' do
|
33
|
+
expect(message[:data]).to eql(decoded_data)
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'strips the encoding' do
|
37
|
+
expect(message[:encoding]).to be_nil
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context 'message with cipher payload before other payloads' do
|
42
|
+
let(:message) { { data: cipher_data, encoding: 'utf-8/cipher+aes-128-cbc' } }
|
43
|
+
|
44
|
+
it 'decodes cipher' do
|
45
|
+
expect(message[:data]).to eql(decoded_data)
|
46
|
+
end
|
47
|
+
|
48
|
+
it 'strips the encoding' do
|
49
|
+
expect(message[:encoding]).to eql('utf-8')
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
context 'message with binary payload' do
|
54
|
+
let(:message) { { data: binary_cipher_data, encoding: 'base64/cipher+aes-128-cbc' } }
|
55
|
+
|
56
|
+
it 'decodes cipher' do
|
57
|
+
expect(message[:data]).to eql(binary_data)
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'strips the encoding' do
|
61
|
+
expect(message[:encoding]).to eql('base64')
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'returns ASCII_8BIT encoded binary data' do
|
65
|
+
expect(message[:data].encoding).to eql(Encoding::ASCII_8BIT)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
context 'message with another payload' do
|
70
|
+
let(:message) { { data: decoded_data, encoding: 'utf-8' } }
|
71
|
+
|
72
|
+
it 'leaves the message data intact' do
|
73
|
+
expect(message[:data]).to eql(decoded_data)
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'leaves the encoding intact' do
|
77
|
+
expect(message[:encoding]).to eql('utf-8')
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
context 'with invalid channel_option cipher params' do
|
83
|
+
let(:message) { { data: decoded_data, encoding: 'cipher+aes-128-cbc' } }
|
84
|
+
let(:cipher_params) { crypto_options.merge(key_length: 256) }
|
85
|
+
let(:decode_method) { subject.decode message, { encrypted: true, cipher_params: cipher_params } }
|
86
|
+
|
87
|
+
it 'raise an exception' do
|
88
|
+
expect { decode_method }.to raise_error Ably::Exceptions::CipherError, /Cipher algorithm [\w\d-]+ does not match message cipher algorithm of AES-128-CBC/
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
context 'without any configured encryption' do
|
93
|
+
let(:message) { { data: decoded_data, encoding: 'cipher+aes-128-cbc' } }
|
94
|
+
let(:cipher_params) { crypto_options.merge(key_length: 256) }
|
95
|
+
let(:decode_method) { subject.decode message, {} }
|
96
|
+
|
97
|
+
it 'raise an exception' do
|
98
|
+
expect { decode_method }.to raise_error Ably::Exceptions::CipherError, /Message cannot be decrypted as the channel is not set up for encryption & decryption/
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
context 'with invalid cipher data' do
|
103
|
+
let(:message) { { data: decoded_data, encoding: 'cipher+aes-128-cbc' } }
|
104
|
+
let(:decode_method) { subject.decode(message, { encrypted: true, cipher_params: cipher_params }) }
|
105
|
+
|
106
|
+
it 'raise an exception' do
|
107
|
+
expect { decode_method }.to raise_error Ably::Exceptions::CipherError, /CipherError decrypting data/
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
context 'with AES-256-CBC' do
|
113
|
+
let(:cipher_params) { crypto_options.merge(key_length: 256) }
|
114
|
+
|
115
|
+
before do
|
116
|
+
subject.decode message, { encrypted: true, cipher_params: cipher_params }
|
117
|
+
end
|
118
|
+
|
119
|
+
context 'message with cipher payload' do
|
120
|
+
let(:message) { { data: cipher_data, encoding: 'cipher+aes-256-cbc' } }
|
121
|
+
|
122
|
+
it 'decodes cipher' do
|
123
|
+
expect(message[:data]).to eql(decoded_data)
|
124
|
+
end
|
125
|
+
|
126
|
+
it 'strips the encoding' do
|
127
|
+
expect(message[:encoding]).to be_nil
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
context '#encode' do
|
134
|
+
context 'with channel set up for AES-128-CBC' do
|
135
|
+
let(:cipher_params) { crypto_options }
|
136
|
+
let(:channel_options) { { encrypted: true, cipher_params: cipher_params } }
|
137
|
+
|
138
|
+
context 'with encrypted set to true' do
|
139
|
+
before do
|
140
|
+
subject.encode message, channel_options
|
141
|
+
end
|
142
|
+
|
143
|
+
context 'message with string payload' do
|
144
|
+
let(:message) { { data: decoded_data, encoding: nil } }
|
145
|
+
|
146
|
+
it 'encodes cipher' do
|
147
|
+
expect(message[:data]).to_not eql(decoded_data)
|
148
|
+
expect(crypto.decrypt(message[:data])).to eql(decoded_data)
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'adds the encoding with utf-8' do
|
152
|
+
expect(message[:encoding]).to eql('utf-8/cipher+aes-128-cbc')
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
context 'message with binary payload' do
|
157
|
+
let(:message) { { data: binary_data, encoding: nil } }
|
158
|
+
|
159
|
+
it 'encodes cipher' do
|
160
|
+
expect(message[:data]).to_not eql(binary_data)
|
161
|
+
expect(crypto.decrypt(message[:data])).to eql(binary_data)
|
162
|
+
end
|
163
|
+
|
164
|
+
it 'adds the encoding without utf-8 prefixed' do
|
165
|
+
expect(message[:encoding]).to eql('cipher+aes-128-cbc')
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'returns ASCII_8BIT encoded binary data' do
|
169
|
+
expect(message[:data].encoding).to eql(Encoding::ASCII_8BIT)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
context 'message with json payload' do
|
174
|
+
let(:message) { { data: decoded_data, encoding: 'json' } }
|
175
|
+
|
176
|
+
it 'encodes cipher' do
|
177
|
+
expect(message[:data]).to_not eql(decoded_data)
|
178
|
+
expect(crypto.decrypt(message[:data])).to eql(decoded_data)
|
179
|
+
end
|
180
|
+
|
181
|
+
it 'adds the encoding with utf-8' do
|
182
|
+
expect(message[:encoding]).to eql('json/utf-8/cipher+aes-128-cbc')
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
context 'message with existing cipher encoding before' do
|
187
|
+
let(:message) { { data: decoded_data, encoding: 'utf-8/cipher+aes-128-cbc' } }
|
188
|
+
|
189
|
+
it 'leaves message intact as it is already encrypted' do
|
190
|
+
expect(message[:data]).to eql(decoded_data)
|
191
|
+
end
|
192
|
+
|
193
|
+
it 'leaves encoding intact' do
|
194
|
+
expect(message[:encoding]).to eql('utf-8/cipher+aes-128-cbc')
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
context 'with encryption set to to false' do
|
199
|
+
let(:message) { { data: decoded_data, encoding: 'utf-8' } }
|
200
|
+
let(:channel_options) { { encrypted: false, cipher_params: cipher_params } }
|
201
|
+
|
202
|
+
it 'leaves message intact as encryption is not enable' do
|
203
|
+
expect(message[:data]).to eql(decoded_data)
|
204
|
+
end
|
205
|
+
|
206
|
+
it 'leaves encoding intact' do
|
207
|
+
expect(message[:encoding]).to eql('utf-8')
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
context 'channel_option cipher params' do
|
213
|
+
let(:message) { { data: decoded_data, encoding: nil } }
|
214
|
+
let(:encode_method) { subject.encode message, { encrypted: true, cipher_params: cipher_params } }
|
215
|
+
|
216
|
+
context 'have invalid key length' do
|
217
|
+
let(:cipher_params) { crypto_options.merge(key_length: 1) }
|
218
|
+
it 'raise an exception' do
|
219
|
+
expect { encode_method }.to raise_error Ably::Exceptions::CipherError, /unsupported cipher algorithm/
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
context 'have invalid algorithm' do
|
224
|
+
let(:cipher_params) { crypto_options.merge(algorithm: 'does not exist') }
|
225
|
+
it 'raise an exception' do
|
226
|
+
expect { encode_method }.to raise_error Ably::Exceptions::CipherError, /unsupported cipher algorithm/
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
230
|
+
context 'have missing key' do
|
231
|
+
let(:cipher_params) { {} }
|
232
|
+
it 'raise an exception' do
|
233
|
+
expect { encode_method }.to raise_error Ably::Exceptions::CipherError, /:key is required/
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
context 'with AES-256-CBC' do
|
240
|
+
let(:cipher_params) { crypto_options.merge(key_length: 256) }
|
241
|
+
|
242
|
+
before do
|
243
|
+
subject.encode message, { encrypted: true, cipher_params: cipher_params }
|
244
|
+
end
|
245
|
+
|
246
|
+
context 'message with cipher payload' do
|
247
|
+
let(:message) { { data: decoded_data, encoding: 'utf-8' } }
|
248
|
+
|
249
|
+
it 'decodes cipher' do
|
250
|
+
expect(message[:data]).to_not eql(decoded_data)
|
251
|
+
expect(crypto.decrypt(message[:data])).to eql(decoded_data)
|
252
|
+
end
|
253
|
+
|
254
|
+
it 'strips the encoding' do
|
255
|
+
expect(message[:encoding]).to eql('utf-8/cipher+aes-256-cbc')
|
256
|
+
end
|
257
|
+
end
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
require 'ably/models/message_encoders/json'
|
5
|
+
|
6
|
+
describe Ably::Models::MessageEncoders::Json do
|
7
|
+
let(:hash_data) { { 'key' => 'value', 'key2' => 123 } }
|
8
|
+
let(:hash_string_data) { JSON.dump(hash_data) }
|
9
|
+
let(:array_data) { ['value', 123] }
|
10
|
+
let(:array_string_data) { JSON.dump(array_data) }
|
11
|
+
|
12
|
+
let(:client) { instance_double('Ably::Realtime::Client') }
|
13
|
+
|
14
|
+
subject { Ably::Models::MessageEncoders::Json.new(client) }
|
15
|
+
|
16
|
+
context '#decode' do
|
17
|
+
before do
|
18
|
+
subject.decode message, {}
|
19
|
+
end
|
20
|
+
|
21
|
+
context 'message with json payload' do
|
22
|
+
let(:message) { { data: hash_string_data, encoding: 'json' } }
|
23
|
+
|
24
|
+
it 'decodes json' do
|
25
|
+
expect(message[:data]).to eq(hash_data)
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'strips the encoding' do
|
29
|
+
expect(message[:encoding]).to be_nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'message with json payload before other payloads' do
|
34
|
+
let(:message) { { data: hash_string_data, encoding: 'utf-8/json' } }
|
35
|
+
|
36
|
+
it 'decodes json' do
|
37
|
+
expect(message[:data]).to eql(hash_data)
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'strips the encoding' do
|
41
|
+
expect(message[:encoding]).to eql('utf-8')
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context 'message with another payload' do
|
46
|
+
let(:message) { { data: hash_string_data, encoding: 'utf-8' } }
|
47
|
+
|
48
|
+
it 'leaves the message data intact' do
|
49
|
+
expect(message[:data]).to eql(hash_string_data)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'leaves the encoding intact' do
|
53
|
+
expect(message[:encoding]).to eql('utf-8')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
context '#encode' do
|
59
|
+
before do
|
60
|
+
subject.encode message, {}
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'message with hash payload' do
|
64
|
+
let(:message) { { data: hash_data, encoding: nil } }
|
65
|
+
|
66
|
+
it 'encodes hash payload data as json' do
|
67
|
+
expect(message[:data]).to eql(hash_string_data)
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'adds the encoding' do
|
71
|
+
expect(message[:encoding]).to eql('json')
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
context 'already encoded message with hash payload' do
|
76
|
+
let(:message) { { data: hash_data, encoding: 'utf-8' } }
|
77
|
+
|
78
|
+
it 'encodes hash payload data as json' do
|
79
|
+
expect(message[:data]).to eql(hash_string_data)
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'adds the encoding' do
|
83
|
+
expect(message[:encoding]).to eql('utf-8/json')
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context 'message with Array payload' do
|
88
|
+
let(:message) { { data: array_data, encoding: nil } }
|
89
|
+
|
90
|
+
it 'encodes Array payload data as json' do
|
91
|
+
expect(message[:data]).to eql(array_string_data)
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'adds the encoding' do
|
95
|
+
expect(message[:encoding]).to eql('json')
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
context 'message with UTF-8 payload' do
|
100
|
+
let(:message) { { data: hash_string_data, encoding: nil } }
|
101
|
+
|
102
|
+
it 'leaves the message data intact' do
|
103
|
+
expect(message[:data]).to eql(hash_string_data)
|
104
|
+
end
|
105
|
+
|
106
|
+
it 'leaves the encoding intact' do
|
107
|
+
expect(message[:encoding]).to be_nil
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
context 'message with nil payload' do
|
112
|
+
let(:message) { { data: nil, encoding: nil } }
|
113
|
+
|
114
|
+
it 'leaves the message data intact' do
|
115
|
+
expect(message[:data]).to be_nil
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'leaves the encoding intact' do
|
119
|
+
expect(message[:encoding]).to be_nil
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
context 'message with no data payload' do
|
124
|
+
let(:message) { { encoding: nil } }
|
125
|
+
|
126
|
+
it 'leaves the message data intact' do
|
127
|
+
expect(message[:data]).to be_nil
|
128
|
+
end
|
129
|
+
|
130
|
+
it 'leaves the encoding intact' do
|
131
|
+
expect(message[:encoding]).to be_nil
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|