-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathhelper.rb
278 lines (215 loc) · 5.58 KB
/
helper.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# frozen_string_literal: true
$LOAD_PATH.unshift(File.expand_path('../lib', __dir__))
require "minitest/autorun"
require "mocha/minitest"
$VERBOSE = true
ENV["DRIVER"] ||= "ruby"
require "redis"
Redis.silence_deprecations = true
require "redis/distributed"
require_relative "support/redis_mock"
if ENV["DRIVER"] == "hiredis"
require "hiredis-client"
end
PORT = 6381
DB = 15
TIMEOUT = Float(ENV['TIMEOUT'] || 1.0)
LOW_TIMEOUT = Float(ENV['LOW_TIMEOUT'] || 0.01) # for blocking-command tests
OPTIONS = { port: PORT, db: DB, timeout: TIMEOUT }.freeze
if ENV['REDIS_SOCKET_PATH'].nil?
sock_file = File.expand_path('../tmp/redis.sock', __dir__)
unless File.exist?(sock_file)
abort "Couldn't locate the redis unix socket, did you run `make start`?"
end
ENV['REDIS_SOCKET_PATH'] = sock_file
end
Dir[File.expand_path('lint/**/*.rb', __dir__)].sort.each do |f|
require f
end
module Helper
def run
if respond_to?(:around)
around { super }
else
super
end
end
def silent
verbose, $VERBOSE = $VERBOSE, false
begin
yield
ensure
$VERBOSE = verbose
end
end
class Version
include Comparable
attr :parts
def initialize(version)
@parts = case version
when Version
version.parts
else
version.to_s.split(".")
end
end
def <=>(other)
other = Version.new(other)
length = [parts.length, other.parts.length].max
length.times do |i|
a, b = parts[i], other.parts[i]
return -1 if a.nil?
return +1 if b.nil?
return a.to_i <=> b.to_i if a != b
end
0
end
end
module Generic
include Helper
attr_reader :log, :redis
alias r redis
def setup
@redis = init _new_client
# Run GC to make sure orphaned connections are closed.
GC.start
super
end
def teardown
redis&.close
super
end
def init(redis)
redis.select 14
redis.flushdb
redis.select 15
redis.flushdb
redis
rescue Redis::CannotConnectError
puts <<-MSG
Cannot connect to Redis.
Make sure Redis is running on localhost, port #{PORT}.
This testing suite connects to the database 15.
Try this once:
$ make clean
Then run the build again:
$ make
MSG
exit 1
end
def redis_mock(commands, options = {})
RedisMock.start(commands, options) do |port|
yield _new_client(options.merge(port: port))
end
end
def redis_mock_with_handler(handler, options = {})
RedisMock.start_with_handler(handler, options) do |port|
yield _new_client(options.merge(port: port))
end
end
def assert_in_range(range, value)
assert range.include?(value), "expected #{value} to be in #{range.inspect}"
end
def target_version(target)
if version < target
skip("Requires Redis > #{target}") if respond_to?(:skip)
else
yield
end
end
def with_db(index)
r.select(index)
yield
end
def omit_version(min_ver)
skip("Requires Redis > #{min_ver}") if version < min_ver
end
def version
Version.new(redis.info['redis_version'])
end
def with_acl
admin = _new_client
admin.acl('SETUSER', 'johndoe', 'on',
'+ping', '+select', '+command', '+cluster|slots', '+cluster|nodes', '+readonly',
'>mysecret')
yield('johndoe', 'mysecret')
ensure
admin.acl('DELUSER', 'johndoe')
admin.close
end
def with_default_user_password
admin = _new_client
admin.acl('SETUSER', 'default', '>mysecret')
yield('default', 'mysecret')
ensure
admin.acl('SETUSER', 'default', 'nopass')
admin.close
end
end
module Client
include Generic
private
def _format_options(options)
OPTIONS.merge(options)
end
def _new_client(options = {})
Redis.new(_format_options(options).merge(driver: ENV["DRIVER"]))
end
end
module Sentinel
include Generic
MASTER_PORT = PORT.to_s
SLAVE_PORT = '6382'
SENTINEL_PORT = '6400'
SENTINEL_PORTS = %w[6400 6401 6402].freeze
MASTER_NAME = 'master1'
LOCALHOST = '127.0.0.1'
def build_sentinel_client(options = {})
opts = { host: LOCALHOST, port: SENTINEL_PORT, timeout: TIMEOUT }
Redis.new(opts.merge(options))
end
def build_slave_role_client(options = {})
_new_client(options.merge(role: :slave))
end
private
def wait_for_quorum
redis = build_sentinel_client
50.times do
if redis.sentinel('ckquorum', MASTER_NAME).start_with?('OK 3 usable Sentinels')
return
else
sleep 0.1
end
rescue
sleep 0.1
end
raise "ckquorum timeout"
end
def _format_options(options = {})
{
url: "redis://#{MASTER_NAME}",
sentinels: [{ host: LOCALHOST, port: SENTINEL_PORT }],
role: :master, timeout: TIMEOUT,
}.merge(options)
end
def _new_client(options = {})
Redis.new(_format_options(options).merge(driver: ENV['DRIVER']))
end
end
module Distributed
include Generic
NODES = ["redis://127.0.0.1:#{PORT}/#{DB}"].freeze
def version
Version.new(redis.info.first["redis_version"])
end
private
def _format_options(options)
{
timeout: OPTIONS[:timeout],
}.merge(options)
end
def _new_client(options = {})
Redis::Distributed.new(NODES, _format_options(options).merge(driver: ENV["conn"]))
end
end
end