cmogstored.git  about / heads / tags
alternative mogstored implementation for MogileFS
blob 7f843c2f0bad810918aed6fc0d43fc8b40bec1dd 7868 bytes (raw)
$ git show HEAD:test/graceful_quit.rb	# shows this blob on the CLI

  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
279
 
#!/usr/bin/env ruby
# -*- encoding: binary -*-
# Copyright (C) 2012-2020 all contributors <cmogstored-public@yhbt.net>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
require 'test/test_helper'
require 'net/http'

class TestGracefulQuit < Test::Unit::TestCase
  def setup
    @tmpdir = Dir.mktmpdir('cmogstored-graceful-quit-test')
    Dir.mkdir("#@tmpdir/dev666")
    @to_close = []
    @host = TEST_HOST

    srv = TCPServer.new(@host, 0)
    @http = srv.addr[1]
    srv.close

    srv = TCPServer.new(@host, 0)
    @mgmt= srv.addr[1]
    srv.close

    @err = Tempfile.new("stderr")
    cmd = [ "cmogstored", "--docroot=#@tmpdir",
            "--httplisten=#@host:#@http", "--mgmtlisten=#@host:#@mgmt",
            "--maxconns=500" ]
    vg = ENV["VALGRIND"] and cmd = vg.split(/\s+/).concat(cmd)
    @pid = fork {
      #$stderr.reopen(@err)
      @err.close
      exec(*cmd)
    }
  end

  def wait_for_eof(client)
    assert_raises(EOFError) do
      begin
        client.read_nonblock(666)
      rescue Errno::EAGAIN
      end while true
    end
  end

  def teardown
    @to_close.each { |io| io.close unless io.closed? }
    FileUtils.rm_rf(@tmpdir)
  end

  def test_iostat_watcher_shutdown
    client = get_client(666, @mgmt)
    client.write "watch\n"
    2.times { assert_kind_of String, client.gets }
    Process.kill(:QUIT, @pid)

    line = ""
    10.times { line = client.gets or break }
    assert_nil line
    wait_for_eof(client)
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end if `which iostat 2>/dev/null`.chomp.size != 0 &&
         RUBY_PLATFORM !~ /kfreebsd-gnu/

  def test_http_get_huge_file
    big = 100 * 1024 * 1024
    File.open("#@tmpdir/dev666/sparse-file.fid", "w") do |fp|
      fp.seek(big - 1)
      fp.write('.')
    end
    client = get_client(666, @http)
    client.write("GET /dev666/sparse-file.fid HTTP/1.1\r\n" \
                 "Host: example.com\r\n\r\n")
    buf = client.readpartial(666)
    _, body = buf.split(/\r\n\r\n/, 2)
    Process.kill(:QUIT, @pid)

    unless ENV["VALGRIND"] || RUBY_PLATFORM =~ /kfreebsd-gnu/
      # changing process title doesn't work when we're using valgrind :<
      expect = /shutting down/
      tries = 10
      begin
        t_yield
        ps_output = `ps #@pid 2>/dev/null`
      end while (tries -= 1) >= 0
      assert_match(expect, ps_output)
    end

    errs = [ Errno::ECONNREFUSED ]
    errs << Errno::EINVAL if RUBY_PLATFORM =~ /freebsd/
    t_yield
    assert_raises(*(errs + [ "http acceptor should shut down" ])) do
      100.times do
        TCPSocket.new(@host, @http).close
        t_yield
      end
    end
    assert_raises(*(errs + [ "mgmt acceptor should shut down" ])) do
      100.times do
        TCPSocket.new(@host, @mgmt).close
        t_yield
      end
    end

    bytes = 0
    buf = ""
    begin
      client.readpartial(666666, buf)
      bytes += buf.size
    rescue EOFError
      break
    end while true
    assert_equal bytes + body.bytesize, big
    assert_raises(EOFError) { client.read_nonblock(666) }
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_http_trickle_get
    client = get_client(666, @http)
    client.write("GET /")
    t_yield
    Process.kill(:QUIT, @pid)
    t_yield
    client.write("dev666/sparse-file.fid HTTP/1.1\r\n")
    t_yield
    client.write("Host: example.com\r\n\r\n")
    buf = client.readpartial(666)
    head, body = buf.split(/\r\n\r\n/, 2)
    assert_equal "", body
    assert_equal "HTTP/1.1 404 Not Found", head.split(/\r\n/)[0]
    wait_for_eof(client)
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_http_trickle_get_pipelined
    client = get_client(666, @http)
    client.write("GET /")
    t_yield
    Process.kill(:QUIT, @pid)
    t_yield
    client.write("dev666/trickle-get-pipelined.fid HTTP/1.1\r\n")
    t_yield
    client.write("Host: example.com\r\n\r\nGET /")
    t_yield

    buf = client.readpartial(666)
    head, body = buf.split(/\r\n\r\n/, 2)
    assert_equal "", body
    assert_equal "HTTP/1.1 404 Not Found", head.split(/\r\n/)[0]

    client.write("dev666/trickle-get-pipelined.fid HTTP/1.1\r\n")
    client.write("Host: example.com\r\n\r\n")

    buf = client.readpartial(666)
    head, body = buf.split(/\r\n\r\n/, 2)
    assert_equal "", body
    assert_equal "HTTP/1.1 404 Not Found", head.split(/\r\n/)[0]

    wait_for_eof(client)
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_http_trickle_put
    client = get_client(666, @http)
    client.write("PUT /dev666/blarg.fid HTTP/1.1\r\n" \
                 "Host: example.com\r\n" \
                 "Content-Length: 5\r\n\r\n")
    t_yield
    Process.kill(:QUIT, @pid)
    "hihi".each_byte do |x|
      t_yield
      client.write(x.chr)
    end

    t_yield
    client.write("\nGET")

    buf = client.readpartial(666)
    head, body = buf.split(/\r\n\r\n/, 2)
    assert_equal "", body
    assert_equal "HTTP/1.1 201 Created", head.split(/\r\n/)[0]
    assert_equal "hihi\n", File.read("#@tmpdir/dev666/blarg.fid")

    client.write(" /dev666/blarg.fid HTTP/1.0\r\n\r\n")
    buf = client.read
    head, body = buf.split(/\r\n\r\n/, 2)
    assert_equal "hihi\n", body
    assert_equal "HTTP/1.1 200 OK", head.split(/\r\n/)[0]

    wait_for_eof(client)
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_mgmt_md5_huge_file
    big = 100 * 1024 * 1024
    File.open("#@tmpdir/dev666/sparse-file.fid", "w") do |fp|
      fp.seek(big - 1)
      fp.write('.')
    end
    client = get_client(666, @mgmt)
    client.write("size /dev666/sparse-file.fid\r\n")
    assert_equal "/dev666/sparse-file.fid 104857600\r\n", client.gets

    "MD5 /dev666/sparse-file.fid\r\n".each_byte do |x|
      t_yield
      client.write(x.chr)
    end
    Process.kill(:QUIT, @pid)
    t_yield

    buf = client.gets
    assert_nil client.gets
    expect = "/dev666/sparse-file.fid MD5=56bb745c25f52e8378a9ca49b7cfd27f\r\n"
    assert_equal expect, buf
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_mgmt_md5_huge_file_fsck_queued
    big = 100 * 1024 * 1024
    File.open("#@tmpdir/dev666/sparse-file.fid", "w") do |fp|
      fp.seek(big - 1)
      fp.write('.')
    end

    client = get_client(666, @mgmt)
    n = 5
    client.write("MD5 /dev666/sparse-file.fid fsck")
    t_yield
    client.write("\r\n" << ("MD5 /dev666/sparse-file.fid fsck\r\n" * (n - 1)))
    thr = Thread.new { n.times.map { client.gets } }
    t_yield
    Process.kill(:QUIT, @pid)
    resp = thr.value
    assert_equal n, resp.size
    expect = "/dev666/sparse-file.fid MD5=56bb745c25f52e8378a9ca49b7cfd27f\r\n"
    resp.each do |line|
      assert_equal expect, line
    end
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_mgmt_size_trickle
    client = get_client(666, @mgmt)
    client.write("size ")
    t_yield
    Process.kill(:QUIT, @pid)
    t_yield
    client.write("/dev666/missing.fid\r\n")

    buf = client.gets
    assert_nil client.gets
    assert_equal "/dev666/missing.fid -1\r\n", buf

    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  def test_mgmt_shutdown
    client = get_client(666, @mgmt)
    client.write("shutdown\r\n")
    assert_nil client.gets
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end

  # for compatibility with mogstored, cmogstored shutdown is always graceful
  def test_mgmt_shutdown_graceful
    client = get_client(666, @mgmt)
    client.write("shutdown graceful\r\n")
    assert_nil client.gets
    _, status = Process.waitpid2(@pid)
    assert status.success?, status.inspect
  end
end

git clone https://yhbt.net/cmogstored.git